diff --git a/.env.example b/.env.example
index b781063..5690d66 100644
--- a/.env.example
+++ b/.env.example
@@ -18,11 +18,6 @@ MICROSOFT_CLIENT_SECRET=
MICROSOFT_TENANT=common
MICROSOFT_REDIRECT_URI=http://localhost:3005/api/auth/callback
-# Microsoft Graph API Token (for server-side file caching)
-# This token is used by the backend to pre-cache SharePoint files
-# Note: Graph tokens expire after ~60 minutes and need manual refresh
-GRAPH_TOKEN=
-
# Logging
LOG_LEVEL=info
LOG_FILE=logs/app.log
diff --git a/Mode6Test/WORKING_VERSION_NOTE.md b/Mode6Test/WORKING_VERSION_NOTE.md
new file mode 100644
index 0000000..2cb4f9e
--- /dev/null
+++ b/Mode6Test/WORKING_VERSION_NOTE.md
@@ -0,0 +1,41 @@
+# Mode5Test - Working Version
+
+**Status:** ✅ WORKING AND STABLE
+
+**Created:** January 19, 2026
+
+## Details
+
+This is an exact copy of Mode3Test, which has been confirmed as the last working version of the application. This copy was created to establish a stable baseline for the orchestrator.
+
+## What's Working
+
+- Backend service (Hono/Bun) running on port 3005
+- Frontend serving static files with PocketBase authentication
+- Job file integration with Microsoft Graph API
+- Token management and caching
+- SharePoint document access and resolution
+
+## Authentication
+
+- Uses PocketBase at `https://pocketbase.ccllc.pro`
+- OAuth flow via Microsoft Graph
+- Token-based auth with fallback to signin page
+
+## Environment
+
+- Uses `.env` configuration from Mode3Test
+- Redis connection attempted but not required for core functionality
+- All dependencies locked in `bun.lock`
+
+## Instructions for Future Development
+
+To make changes:
+1. Update files directly in Mode5Test
+2. Test thoroughly before committing
+3. If breaking changes occur, restore from git history
+4. Document any significant changes in this file
+
+## Lock Status
+
+This directory is locked as read-only to prevent accidental modifications. Use `chmod -R u+w Mode5Test` to unlock if needed.
diff --git a/Mode6Test/auth/README.md b/Mode6Test/auth/README.md
new file mode 100644
index 0000000..fc28b12
--- /dev/null
+++ b/Mode6Test/auth/README.md
@@ -0,0 +1,75 @@
+# Universal Auth Module
+
+## Overview
+This module provides a standardized, immutable authentication and token management system for any web project using PocketBase and Microsoft Graph. It supports user and agent tokens, delegated and app-only flows, and a consistent popup UI for login prompts.
+
+## Features
+- Pattern-based: Choose 'pb-user', 'pb-agent', 'graph-user', 'graph-agent', or any combination (e.g., 'pb-user+graph-agent') for your project needs
+- Supports both user and agent tokens for PocketBase and Microsoft Graph
+- Special handling for Valkey/Redis agent login and token storage (for backend/automation flows)
+- Single source of truth for token storage, retrieval, and refresh
+- Consistent, hidden popup for all user login prompts
+- Extracts user info (display name, email) from PocketBase
+- Works in any frontend project with PocketBase
+
+## Usage
+
+### 1. Include in your project
+```html
+
+
+```
+
+### 2. Initialize the pattern
+```js
+// Choose your pattern:
+// 'pb-user' - PocketBase user login
+// 'pb-agent' - PocketBase agent/service login
+// 'graph-user' - Microsoft Graph delegated (user) login
+// 'graph-agent' - Microsoft Graph agent/app-only (client credentials)
+// Combine as needed: 'pb-user+graph-agent', 'pb-agent+graph-user', etc.
+Auth.use('pb-user+graph-agent');
+```
+
+### 3. Get and use tokens
+```js
+const pbToken = await Auth.ensureToken('pb');
+const graphToken = await Auth.ensureToken('graph');
+const userInfo = Auth.getUserInfo();
+```
+
+### 4. Handle reauthentication
+- If a token is missing or expired, Auth will automatically show a popup for login.
+- The popup is hidden at all other times.
+
+### 5. Clear tokens (for testing or logout)
+```js
+Auth.clearToken('pb');
+Auth.clearToken('graph');
+```
+
+## Secrets and Environment
+- For frontend, all secrets are handled by PocketBase OAuth (no client secrets exposed).
+- For backend/agent flows, use environment variables and server-side code to store secrets securely.
+- The module does not expose or require secrets in the frontend.
+
+## Example Test Page
+See `auth-test.html` for a safe way to test all flows without affecting your main app.
+
+## Rules for Copilot Instructions
+- Always use Auth.use() to set the pattern before requesting tokens. Supported types: 'pb-user', 'pb-agent', 'graph-user', 'graph-agent', or any combination.
+- Always use Auth.ensureToken(type) to get a valid token; it will handle refresh and prompt if needed.
+- Never store secrets in frontend code; use PocketBase OAuth for user login.
+- All login prompts must use the provided popup, never custom dialogs.
+- Token keys are immutable: 'pbUserToken', 'pbAgentToken', 'graphUserToken', 'graphAgentToken'.
+- User info extraction must use Auth.getUserInfo().
+- For agent/app-only tokens, use backend code, environment variables, and optionally Valkey/Redis for secure storage and retrieval.
+
+## FAQ
+- **Can I use this in any project?** Yes, as long as you include PocketBase and this module.
+- **Does it work for both user and agent tokens?** Yes, with the correct pattern and backend support for agent tokens (including Valkey/Redis for automation).
+- **Is the popup customizable?** The style can be changed, but the flow must remain consistent for all projects.
+- **How are secrets handled?** Only via backend environment variables for agent tokens; never exposed in frontend.
+
+---
+For further integration, see the comments in `auth-universal.js` and the example test page.
\ No newline at end of file
diff --git a/Mode6Test/auth/auth-test.html b/Mode6Test/auth/auth-test.html
new file mode 100644
index 0000000..f2c195c
--- /dev/null
+++ b/Mode6Test/auth/auth-test.html
@@ -0,0 +1,85 @@
+
+
+
+
+ Universal Auth Test
+
+
+
+
+
+
+
Choose Auth Pattern
+
+
+ Clear All Tokens
+
+
+
+
Test Actions
+
Test PB User
+
Test PB Agent
+
Test Graph User
+
Test Graph Agent
+
Show User Info
+
+
+
+
+
diff --git a/Mode6Test/auth/auth-universal.js b/Mode6Test/auth/auth-universal.js
new file mode 100644
index 0000000..47e3c02
--- /dev/null
+++ b/Mode6Test/auth/auth-universal.js
@@ -0,0 +1,220 @@
+// Universal Auth Module: Immutable, Pattern-Based, Project-Agnostic
+// Usage: import and call Auth.use('pb-graph') or Auth.use('pb') or Auth.use('graph')
+// Provides: getToken(type), ensureToken(type), refreshToken(type), getUserInfo(), promptReauth()
+// Token types: 'pb' (PocketBase user/agent), 'graph' (Graph delegated), 'graphAgent' (Graph app-only)
+// All storage, retrieval, refresh, and UI are standardized and immutable
+
+const TOKEN_KEYS = {
+ 'pb-user': 'pbUserToken',
+ 'pb-agent': 'pbAgentToken',
+ 'graph-user': 'graphUserToken',
+ 'graph-agent': 'graphAgentToken'
+};
+
+function parsePattern(pattern) {
+ return pattern.split('+').map(s => s.trim()).filter(Boolean);
+}
+
+window.Auth = (() => {
+ let pattern = 'pb-user'; // default
+ let enabledTypes = ['pb-user'];
+ let pb = null;
+ let popup = null;
+ let agentCreds = { email: '', password: '' };
+ let superuserCreds = { email: '', password: '' };
+
+ // --- Setup ---
+ function use(type) {
+ pattern = type;
+ enabledTypes = parsePattern(type);
+ if (enabledTypes.some(t => t.startsWith('pb'))) {
+ pb = window.PocketBase ? new PocketBase('https://pocketbase.ccllc.pro') : null;
+ }
+ // Only one-time setup
+ if (!document.getElementById('authPopup')) {
+ createPopup();
+ }
+ }
+
+ // --- Token Storage ---
+ function getToken(type) {
+ return localStorage.getItem(TOKEN_KEYS[type]) || '';
+ }
+ function setToken(type, value) {
+ if (value) localStorage.setItem(TOKEN_KEYS[type], value);
+ }
+ function clearToken(type) {
+ localStorage.removeItem(TOKEN_KEYS[type]);
+ }
+
+ // --- Info Extraction ---
+ function getUserInfo() {
+ if (pb && pb.authStore.model) {
+ return {
+ displayName: pb.authStore.model.display_name || pb.authStore.model.name || pb.authStore.model.email || pb.authStore.model.username || 'Unknown',
+ email: pb.authStore.model.email || pb.authStore.model.username || null
+ };
+ }
+ return { displayName: '', email: '' };
+ }
+
+ // --- Token Ensure/Refresh ---
+ async function ensureToken(type) {
+ let token = getToken(type);
+ if (token) return token;
+ if (type === 'pb-user' && pb) {
+ if (pb.authStore.isValid) {
+ setToken('pb-user', pb.authStore.token);
+ return pb.authStore.token;
+ }
+ // Choose login method: email/password or OAuth
+ if (pattern.includes('pb-user-oauth')) {
+ return await promptReauth('pb-user-oauth');
+ } else {
+ return await promptReauth('pb-user');
+ }
+ }
+ if (type === 'pb-superuser' && pb) {
+ // Prompt for superuser credentials
+ await promptReauth('pb-superuser');
+ // Use superuser credentials to login
+ const authData = await pb.collection('_superuser').authWithPassword(superuserCreds.email, superuserCreds.password);
+ setToken('pb-superuser', pb.authStore.token);
+ return pb.authStore.token;
+ }
+ if (type === 'pb-agent' && pb) {
+ // Prompt for agent credentials if not set
+ if (!agentCreds.email || !agentCreds.password) {
+ await promptReauth('pb-agent');
+ }
+ // Use agent credentials to login
+ const authData = await pb.collection('users').authWithPassword(agentCreds.email, agentCreds.password);
+ setToken('pb-agent', pb.authStore.token);
+ return pb.authStore.token;
+ }
+ if (type === 'graph-user' && pb) {
+ // OAuth only
+ return await promptReauth('graph-user');
+ }
+ if (type === 'graph-agent') {
+ // Prompt for agent credentials if not set
+ if (!agentCreds.email || !agentCreds.password) {
+ await promptReauth('graph-agent');
+ }
+ // Use agent credentials to get token (simulate, real flow is backend)
+ setToken('graph-agent', 'AGENT_TOKEN_' + agentCreds.email);
+ return getToken('graph-agent');
+ }
+ throw new Error('Unknown token type');
+ }
+
+ async function refreshToken(type) {
+ if (type === 'graph-user' && pb) {
+ try {
+ const authData = await pb.collection('users').authRefresh();
+ const meta = authData?.meta || pb?.authStore?.model?.meta || {};
+ const token = meta.graphAccessToken || meta.graph_token || meta.graphToken || meta.accessToken || meta.access_token || meta.token || meta.rawToken || meta?.authData?.access_token || '';
+ setToken('graph-user', token);
+ return token || '';
+ } catch (err) {
+ return '';
+ }
+ }
+ // Add refresh logic for other types as needed
+ return '';
+ }
+
+ // --- Reauth Popup ---
+ function createPopup() {
+ popup = document.createElement('div');
+ popup.id = 'authPopup';
+ popup.style = 'display:none;position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,0.4);z-index:9999;align-items:center;justify-content:center;';
+ popup.innerHTML = `
+
+
Sign In Required
+
+
+
+ `;
+ document.body.appendChild(popup);
+ }
+
+ function showForm(type) {
+ const forms = {
+ 'pb-user': ` `,
+ 'pb-user-oauth': ``,
+ 'pb-superuser': ` `,
+ 'pb-agent': ` `,
+ 'graph-user': ``,
+ 'graph-agent': ` `
+ };
+ document.getElementById('authPopupForms').innerHTML = forms[type] || '';
+ }
+
+ async function promptReauth(type) {
+ showForm(type);
+ popup.style.display = 'flex';
+ return new Promise((resolve, reject) => {
+ document.getElementById('authPopupBtn').onclick = async () => {
+ try {
+ if (type === 'pb-user') {
+ const email = document.getElementById('pbUserEmail').value;
+ const password = document.getElementById('pbUserPassword').value;
+ const authData = await pb.collection('users').authWithPassword(email, password);
+ setToken('pb-user', pb.authStore.token);
+ popup.style.display = 'none';
+ resolve(pb.authStore.token);
+ } else if (type === 'pb-user-oauth') {
+ const authData = await pb.collection('users').authWithOAuth2({ provider: 'microsoft' });
+ setToken('pb-user', authData?.meta?.graphAccessToken || '');
+ popup.style.display = 'none';
+ resolve(authData?.meta?.graphAccessToken || '');
+ } else if (type === 'pb-superuser') {
+ superuserCreds.email = document.getElementById('pbSuperuserEmail').value;
+ superuserCreds.password = document.getElementById('pbSuperuserPassword').value;
+ popup.style.display = 'none';
+ resolve();
+ } else if (type === 'pb-agent') {
+ agentCreds.email = document.getElementById('pbAgentEmail').value;
+ agentCreds.password = document.getElementById('pbAgentPassword').value;
+ popup.style.display = 'none';
+ resolve();
+ } else if (type === 'graph-user') {
+ const authData = await pb.collection('users').authWithOAuth2({ provider: 'microsoft' });
+ setToken('graph-user', authData?.meta?.graphAccessToken || '');
+ popup.style.display = 'none';
+ resolve(authData?.meta?.graphAccessToken || '');
+ } else if (type === 'graph-agent') {
+ agentCreds.email = document.getElementById('graphAgentEmail').value;
+ agentCreds.password = document.getElementById('graphAgentPassword').value;
+ popup.style.display = 'none';
+ resolve();
+ }
+ } catch (err) {
+ document.getElementById('authPopupError').textContent = err.message || 'Authentication failed.';
+ document.getElementById('authPopupError').style.display = '';
+ }
+ };
+ });
+ }
+
+ // --- API ---
+ return {
+ use,
+ getToken,
+ setToken,
+ clearToken,
+ getUserInfo,
+ ensureToken,
+ refreshToken,
+ promptReauth
+ };
+})();
+
+window.Auth = Auth;
+
+// Example usage:
+// Auth.use('pb-graph');
+// const token = await Auth.ensureToken('graph');
+// const user = Auth.getUserInfo();
+// All login prompts are handled via the popup, which is hidden unless needed.
diff --git a/Mode6Test/backend/auth-routes.ts b/Mode6Test/backend/auth-routes.ts
new file mode 100755
index 0000000..7073ed1
--- /dev/null
+++ b/Mode6Test/backend/auth-routes.ts
@@ -0,0 +1,296 @@
+/**
+ * ROUTES: OAuth Authentication
+ *
+ * PURPOSE: Handle OAuth2 authorization and token exchange
+ * ENDPOINTS:
+ * - POST /api/auth/authorize - Exchange authorization code for token
+ * - POST /api/auth/refresh - Refresh access token using refresh token
+ * - POST /api/auth/logout - Logout and invalidate tokens
+ *
+ * SECURITY:
+ * - Client secret kept server-side only
+ * - Refresh tokens stored in HttpOnly cookies
+ * - PKCE verification with code verifier
+ * - CORS protection
+ */
+
+import { Context } from 'hono';
+
+// ============================================================================
+// TYPES
+// ============================================================================
+
+interface AuthorizeRequest {
+ code: string;
+ state: string;
+ codeVerifier: string;
+}
+
+interface TokenResponse {
+ accessToken: string;
+ refreshToken: string;
+ expiresIn: number;
+ user: {
+ id: string;
+ displayName: string;
+ mail: string;
+ };
+}
+
+interface RefreshTokenRequest {
+ refreshToken: string;
+}
+
+// ============================================================================
+// CONFIGURATION
+// ============================================================================
+
+const MICROSOFT_TENANT_ID = process.env.MICROSOFT_TENANT_ID || 'common';
+const MICROSOFT_CLIENT_ID = process.env.MICROSOFT_CLIENT_ID || '';
+const MICROSOFT_CLIENT_SECRET = process.env.MICROSOFT_CLIENT_SECRET || '';
+const REDIRECT_URI = process.env.MICROSOFT_REDIRECT_URI || '';
+
+// Token endpoints
+const TOKEN_ENDPOINT = `https://login.microsoftonline.com/${MICROSOFT_TENANT_ID}/oauth2/v2.0/token`;
+const GRAPH_ENDPOINT = 'https://graph.microsoft.com/v1.0/me';
+
+// In-memory token store (in production, use Redis or database)
+const tokenStore = new Map();
+
+// ============================================================================
+// AUTHORIZATION ENDPOINT
+// ============================================================================
+
+/**
+ * POST /api/auth/authorize
+ *
+ * Exchange authorization code for access token
+ *
+ * REQUEST:
+ * {
+ * code: string (from Microsoft OAuth redirect)
+ * state: string (CSRF token)
+ * codeVerifier: string (PKCE code verifier)
+ * }
+ *
+ * RESPONSE:
+ * {
+ * accessToken: string
+ * refreshToken: string
+ * expiresIn: number (seconds)
+ * user: { id, displayName, mail }
+ * }
+ */
+export async function handleAuthorize(c: Context): Promise {
+ try {
+ const body = await c.req.json() as AuthorizeRequest;
+ const { code, state, codeVerifier } = body;
+
+ // Validate inputs
+ if (!code || !state || !codeVerifier) {
+ return c.json(
+ { error: 'Missing required parameters', details: 'code, state, codeVerifier required' },
+ { status: 400 }
+ );
+ }
+
+ // Validate configuration
+ if (!MICROSOFT_CLIENT_ID || !MICROSOFT_CLIENT_SECRET || !REDIRECT_URI) {
+ console.error('[Auth] Missing OAuth configuration');
+ return c.json(
+ { error: 'OAuth configuration incomplete' },
+ { status: 500 }
+ );
+ }
+
+ console.log('[Auth] Exchanging authorization code for token');
+
+ // Step 1: Exchange code for token with Microsoft
+ const tokenParams = new URLSearchParams({
+ client_id: MICROSOFT_CLIENT_ID,
+ client_secret: MICROSOFT_CLIENT_SECRET,
+ code: code,
+ code_verifier: codeVerifier,
+ redirect_uri: REDIRECT_URI,
+ grant_type: 'authorization_code',
+ scope: 'offline_access',
+ });
+
+ const tokenResponse = await fetch(TOKEN_ENDPOINT, {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
+ body: tokenParams.toString(),
+ });
+
+ if (!tokenResponse.ok) {
+ const error = await tokenResponse.text();
+ console.error('[Auth] Token exchange failed:', error);
+ return c.json(
+ { error: 'Failed to exchange code for token', details: error },
+ { status: 400 }
+ );
+ }
+
+ const tokenData = await tokenResponse.json() as any;
+ const accessToken = tokenData.access_token;
+ const refreshToken = tokenData.refresh_token;
+ const expiresIn = tokenData.expires_in || 3600;
+
+ if (!accessToken) {
+ console.error('[Auth] No access token in response');
+ return c.json(
+ { error: 'No access token in response' },
+ { status: 400 }
+ );
+ }
+
+ console.log('[Auth] Successfully exchanged code for token');
+
+ // Step 2: Get user profile from Microsoft Graph
+ const userResponse = await fetch(GRAPH_ENDPOINT, {
+ method: 'GET',
+ headers: { Authorization: `Bearer ${accessToken}` },
+ });
+
+ if (!userResponse.ok) {
+ console.error('[Auth] Failed to fetch user profile');
+ return c.json(
+ { error: 'Failed to fetch user profile' },
+ { status: 400 }
+ );
+ }
+
+ const user = await userResponse.json() as any;
+
+ console.log('[Auth] Retrieved user profile:', user.displayName);
+
+ // Step 3: Store refresh token server-side
+ if (refreshToken) {
+ const expiresAt = Date.now() + (tokenData.refresh_token_expires_in || 90 * 24 * 60 * 60) * 1000;
+ tokenStore.set(user.id, { refreshToken, expiresAt });
+ console.log('[Auth] Stored refresh token for user:', user.id);
+ }
+
+ // Step 4: Return response
+ const response: TokenResponse = {
+ accessToken,
+ refreshToken: refreshToken || '',
+ expiresIn,
+ user: {
+ id: user.id,
+ displayName: user.displayName,
+ mail: user.mail,
+ },
+ };
+
+ return c.json(response);
+ } catch (error) {
+ console.error('[Auth] Authorization handler error:', error);
+ return c.json(
+ { error: 'Internal server error', details: (error as Error).message },
+ { status: 500 }
+ );
+ }
+}
+
+// ============================================================================
+// TOKEN REFRESH ENDPOINT
+// ============================================================================
+
+/**
+ * POST /api/auth/refresh
+ *
+ * Refresh access token using refresh token
+ *
+ * REQUEST:
+ * {
+ * refreshToken: string
+ * }
+ *
+ * RESPONSE:
+ * {
+ * accessToken: string
+ * expiresIn: number (seconds)
+ * }
+ */
+export async function handleRefresh(c: Context): Promise {
+ try {
+ const body = await c.req.json() as RefreshTokenRequest;
+ const { refreshToken } = body;
+
+ if (!refreshToken) {
+ return c.json(
+ { error: 'Refresh token required' },
+ { status: 400 }
+ );
+ }
+
+ console.log('[Auth] Refreshing access token');
+
+ // Exchange refresh token for new access token
+ const tokenParams = new URLSearchParams({
+ client_id: MICROSOFT_CLIENT_ID,
+ client_secret: MICROSOFT_CLIENT_SECRET,
+ refresh_token: refreshToken,
+ grant_type: 'refresh_token',
+ scope: 'offline_access',
+ });
+
+ const tokenResponse = await fetch(TOKEN_ENDPOINT, {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
+ body: tokenParams.toString(),
+ });
+
+ if (!tokenResponse.ok) {
+ const error = await tokenResponse.text();
+ console.error('[Auth] Token refresh failed:', error);
+ return c.json(
+ { error: 'Failed to refresh token' },
+ { status: 401 }
+ );
+ }
+
+ const tokenData = await tokenResponse.json() as any;
+ const newAccessToken = tokenData.access_token;
+ const expiresIn = tokenData.expires_in || 3600;
+
+ console.log('[Auth] Successfully refreshed access token');
+
+ return c.json({
+ accessToken: newAccessToken,
+ expiresIn,
+ });
+ } catch (error) {
+ console.error('[Auth] Refresh handler error:', error);
+ return c.json(
+ { error: 'Internal server error', details: (error as Error).message },
+ { status: 500 }
+ );
+ }
+}
+
+// ============================================================================
+// LOGOUT ENDPOINT
+// ============================================================================
+
+/**
+ * POST /api/auth/logout
+ *
+ * Logout and invalidate tokens
+ */
+export async function handleLogout(c: Context): Promise {
+ try {
+ console.log('[Auth] Logout requested');
+
+ // In production, would invalidate refresh token in database
+ // For now, just return success
+ return c.json({ success: true });
+ } catch (error) {
+ console.error('[Auth] Logout handler error:', error);
+ return c.json(
+ { error: 'Internal server error' },
+ { status: 500 }
+ );
+ }
+}
diff --git a/Mode6Test/backend/cache-api-keys.cjs b/Mode6Test/backend/cache-api-keys.cjs
new file mode 100644
index 0000000..640f3b5
--- /dev/null
+++ b/Mode6Test/backend/cache-api-keys.cjs
@@ -0,0 +1,37 @@
+// Express API for Redis/Valkey: keys list and single key fetch (for fast UI)
+const express = require('express');
+const Redis = require('ioredis');
+const app = express();
+const redis = new Redis({
+ host: process.env.REDIS_HOST || '127.0.0.1',
+ port: Number(process.env.REDIS_PORT || 6379),
+ password: process.env.REDIS_PASSWORD,
+});
+
+// List all keys (no values)
+app.get('/api/cache/keys', async (req, res) => {
+ try {
+ const keys = await redis.keys('*');
+ // Optionally, add summary/metadata here
+ res.json(keys.map(key => ({ key })));
+ } catch (err) {
+ res.status(500).json({ error: err.message });
+ }
+});
+
+// Fetch value for a single key
+app.get('/api/cache/:key', async (req, res) => {
+ try {
+ const key = req.params.key;
+ let value = await redis.get(key);
+ try { value = JSON.parse(value); } catch {}
+ res.json({ key, value });
+ } catch (err) {
+ res.status(500).json({ error: err.message });
+ }
+});
+
+const port = process.env.CACHE_API_PORT || 3006;
+app.listen(port, () => {
+ console.log(`Cache API (keys+single) running on http://localhost:${port}/api/cache/keys`);
+});
diff --git a/Mode6Test/backend/cache-api.cjs b/Mode6Test/backend/cache-api.cjs
new file mode 100644
index 0000000..f1e55eb
--- /dev/null
+++ b/Mode6Test/backend/cache-api.cjs
@@ -0,0 +1,29 @@
+// Simple Express API to serve all Redis/Valkey cache keys and values as JSON (CommonJS)
+const express = require('express');
+const Redis = require('ioredis');
+const app = express();
+const redis = new Redis({
+ host: process.env.REDIS_HOST || '127.0.0.1',
+ port: Number(process.env.REDIS_PORT || 6379),
+ password: process.env.REDIS_PASSWORD,
+});
+
+app.get('/api/cache', async (req, res) => {
+ try {
+ const keys = await redis.keys('*');
+ const result = [];
+ for (const key of keys) {
+ let value = await redis.get(key);
+ try { value = JSON.parse(value); } catch {}
+ result.push({ key, value });
+ }
+ res.json(result);
+ } catch (err) {
+ res.status(500).json({ error: err.message });
+ }
+});
+
+const port = process.env.CACHE_API_PORT || 3006;
+app.listen(port, () => {
+ console.log(`Cache API running on http://localhost:${port}/api/cache`);
+});
diff --git a/Mode6Test/backend/cache-api.js b/Mode6Test/backend/cache-api.js
new file mode 100644
index 0000000..4a33eec
--- /dev/null
+++ b/Mode6Test/backend/cache-api.js
@@ -0,0 +1,29 @@
+// Simple Express API to serve all Redis/Valkey cache keys and values as JSON
+const express = require('express');
+const Redis = require('ioredis');
+const app = express();
+const redis = new Redis({
+ host: process.env.REDIS_HOST || '127.0.0.1',
+ port: Number(process.env.REDIS_PORT || 6379),
+ password: process.env.REDIS_PASSWORD,
+});
+
+app.get('/api/cache', async (req, res) => {
+ try {
+ const keys = await redis.keys('*');
+ const result = [];
+ for (const key of keys) {
+ let value = await redis.get(key);
+ try { value = JSON.parse(value); } catch {}
+ result.push({ key, value });
+ }
+ res.json(result);
+ } catch (err) {
+ res.status(500).json({ error: err.message });
+ }
+});
+
+const port = process.env.CACHE_API_PORT || 3030;
+app.listen(port, () => {
+ console.log(`Cache API running on http://localhost:${port}/api/cache`);
+});
diff --git a/Mode6Test/backend/list-redis-keys.cjs b/Mode6Test/backend/list-redis-keys.cjs
new file mode 100644
index 0000000..d8d3f89
--- /dev/null
+++ b/Mode6Test/backend/list-redis-keys.cjs
@@ -0,0 +1,25 @@
+// Script to list all Redis/Valkey keys and their values for visualization (CommonJS)
+const Redis = require('ioredis');
+
+const redis = new Redis({
+ host: process.env.REDIS_HOST || '127.0.0.1',
+ port: Number(process.env.REDIS_PORT || 6379),
+ password: process.env.REDIS_PASSWORD,
+});
+
+(async () => {
+ try {
+ const keys = await redis.keys('*');
+ const result = [];
+ for (const key of keys) {
+ let value = await redis.get(key);
+ try { value = JSON.parse(value); } catch {}
+ result.push({ key, value });
+ }
+ console.log(JSON.stringify(result, null, 2));
+ process.exit(0);
+ } catch (err) {
+ console.error('Error listing Redis keys:', err);
+ process.exit(1);
+ }
+})();
diff --git a/Mode6Test/backend/list-redis-keys.js b/Mode6Test/backend/list-redis-keys.js
new file mode 100644
index 0000000..d309b49
--- /dev/null
+++ b/Mode6Test/backend/list-redis-keys.js
@@ -0,0 +1,25 @@
+// Script to list all Redis/Valkey keys and their values for visualization
+const Redis = require('ioredis');
+
+const redis = new Redis({
+ host: process.env.REDIS_HOST || '127.0.0.1',
+ port: Number(process.env.REDIS_PORT || 6379),
+ password: process.env.REDIS_PASSWORD,
+});
+
+(async () => {
+ try {
+ const keys = await redis.keys('*');
+ const result = [];
+ for (const key of keys) {
+ let value = await redis.get(key);
+ try { value = JSON.parse(value); } catch {}
+ result.push({ key, value });
+ }
+ console.log(JSON.stringify(result, null, 2));
+ process.exit(0);
+ } catch (err) {
+ console.error('Error listing Redis keys:', err);
+ process.exit(1);
+ }
+})();
diff --git a/Mode6Test/backend/redis-cache.ts b/Mode6Test/backend/redis-cache.ts
new file mode 100644
index 0000000..251178d
--- /dev/null
+++ b/Mode6Test/backend/redis-cache.ts
@@ -0,0 +1,101 @@
+import Redis from 'ioredis';
+
+// Create Redis client
+const redis = new Redis({
+ host: process.env.REDIS_HOST || 'localhost',
+ port: Number(process.env.REDIS_PORT || 6379),
+ password: process.env.REDIS_PASSWORD,
+ retryStrategy(times) {
+ const delay = Math.min(times * 50, 2000);
+ return delay;
+ },
+ maxRetriesPerRequest: 3,
+ lazyConnect: true,
+});
+
+// Handle connection events
+redis.on('connect', () => {
+ console.log('✓ Redis connected');
+});
+
+redis.on('error', (err) => {
+ console.error('Redis error:', err.message);
+});
+
+redis.on('close', () => {
+ console.log('Redis connection closed');
+});
+
+// Connect to Redis - DISABLED for Mode6Test
+// (async () => {
+// try {
+// await redis.connect();
+// } catch (err) {
+// console.error('Failed to connect to Redis:', err);
+// }
+// })();
+
+/**
+ * Get a value from cache
+ */
+export async function getCache(key: string): Promise {
+ try {
+ const value = await redis.get(key);
+ if (!value) return null;
+ return JSON.parse(value);
+ } catch (err) {
+ console.error(`Cache get error for key "${key}":`, err);
+ return null;
+ }
+}
+
+/**
+ * Set a value in cache with TTL in seconds
+ */
+export async function setCache(key: string, value: any, ttl: number = 300): Promise {
+ try {
+ const serialized = JSON.stringify(value);
+ await redis.setex(key, ttl, serialized);
+ return true;
+ } catch (err) {
+ console.error(`Cache set error for key "${key}":`, err);
+ return false;
+ }
+}
+
+/**
+ * Delete a key from cache
+ */
+export async function deleteCache(key: string): Promise {
+ try {
+ await redis.del(key);
+ return true;
+ } catch (err) {
+ console.error(`Cache delete error for key "${key}":`, err);
+ return false;
+ }
+}
+
+/**
+ * Clear all cache keys matching a pattern
+ */
+export async function clearCachePattern(pattern: string): Promise {
+ try {
+ const keys = await redis.keys(pattern);
+ if (keys.length === 0) return 0;
+ await redis.del(...keys);
+ return keys.length;
+ } catch (err) {
+ console.error(`Cache clear error for pattern "${pattern}":`, err);
+ return 0;
+ }
+}
+
+/**
+ * Check if Redis is connected
+ */
+export function isRedisConnected(): boolean {
+ return redis.status === 'ready';
+}
+
+export default redis;
diff --git a/Mode6Test/backend/server.ts b/Mode6Test/backend/server.ts
new file mode 100644
index 0000000..e197d00
--- /dev/null
+++ b/Mode6Test/backend/server.ts
@@ -0,0 +1,695 @@
+import { Hono } from 'hono';
+import { serveStatic } from 'hono/bun';
+import fs from 'fs';
+import path from 'path';
+// @ts-ignore Bun project may not have dotenv types configured
+import { config } from 'dotenv';
+// import { getCache, setCache, isRedisConnected } from './redis-cache';
+
+config();
+
+const app = new Hono();
+const JOBS_CACHE_FILE = path.join(import.meta.dir, '../jobs-cache.json');
+
+// In-memory cache for fast access
+let cachedJobs: any = null;
+let lastCacheTime = 0;
+let isFetching = false;
+let partialJobs: any[] = [];
+
+// Minimal log helpers
+const logLine = (path: string, line: string) => {
+ try {
+ fs.appendFileSync(path, `${new Date().toISOString()} ${line}\n`);
+ } catch (err) {
+ console.error('Failed to write log:', err);
+ }
+};
+
+// Cache helper functions
+const saveCacheFile = async (data: any): Promise => {
+ try {
+ await Bun.write(JOBS_CACHE_FILE, JSON.stringify(data, null, 2));
+ cachedJobs = data;
+ lastCacheTime = Date.now();
+ } catch (err) {
+ logLine('logs/error.log', `Failed to save cache file: ${err}`);
+ }
+};
+
+// Fast load: returns first 30 items immediately, full cache lazily
+const loadCacheFileFast = async (): Promise => {
+ try {
+ const file = Bun.file(JOBS_CACHE_FILE);
+ if (!(await file.exists())) return null;
+
+ // Read as text and parse (we're already async, so it's fine)
+ const text = await file.text();
+ const data = JSON.parse(text);
+ cachedJobs = data;
+ lastCacheTime = Date.now();
+ return data;
+ } catch (err) {
+ logLine('logs/error.log', `Failed to load cache file: ${err}`);
+ return null;
+ }
+};
+
+const loadCacheFile = async (): Promise => {
+ try {
+ const file = Bun.file(JOBS_CACHE_FILE);
+ if (await file.exists()) {
+ const data = JSON.parse(await file.text());
+ cachedJobs = data;
+ lastCacheTime = Date.now();
+ return data;
+ }
+ } catch (err) {
+ logLine('logs/error.log', `Failed to load cache file: ${err}`);
+ }
+ return null;
+};
+
+// Version endpoint sourced from package.json
+app.get('/version', (c) => {
+ try {
+ const pkgRaw = fs.readFileSync('./package.json', 'utf-8');
+ const pkg = JSON.parse(pkgRaw);
+ return c.json({ version: pkg.version || '0.0.0', badge: pkg.badge || 'Unknown' });
+ } catch (err) {
+ logLine('logs/error.log', `version endpoint error: ${(err as Error)?.message || String(err)}`);
+ return c.json({ version: '0.0.0' }, 200);
+ }
+});
+
+// Jobs endpoint with Redis caching
+app.get('/api/jobs', async (c) => {
+ const page = parseInt(c.req.query('page') || '1');
+ const perPage = parseInt(c.req.query('perPage') || '50');
+ const sort = c.req.query('sort') || '-Job_Number';
+
+ const cacheKey = `jobs:page:${page}:perPage:${perPage}:sort:${sort}`;
+ const ttl = 300; // 5 minutes cache
+
+ try {
+ // Redis disabled - skip cache check
+ // if (isRedisConnected()) {
+ // const cached = await getCache(cacheKey);
+ // if (cached) {
+ // logLine('logs/server.log', `Cache HIT for ${cacheKey}`);
+ // return c.json(cached);
+ // }
+ // logLine('logs/server.log', `Cache MISS for ${cacheKey}`);
+ // }
+
+ // Fetch from PocketBase
+ const pbUrl = `https://pocketbase.ccllc.pro/api/collections/pbc_1407612689/records?page=${page}&perPage=${perPage}&sort=${sort}`;
+ const authHeader = c.req.header('Authorization') || '';
+
+ const response = await fetch(pbUrl, {
+ headers: authHeader ? { Authorization: authHeader } : {}
+ });
+
+ if (!response.ok) {
+ throw new Error(`PocketBase returned ${response.status}`);
+ }
+
+ const data = await response.json();
+
+ // Redis disabled - skip cache storage
+ // if (isRedisConnected()) {
+ // await setCache(cacheKey, data, ttl);
+ // logLine('logs/server.log', `Cached ${cacheKey} for ${ttl}s`);
+ // }
+
+ return c.json(data);
+
+ } catch (err) {
+ logLine('logs/error.log', `jobs endpoint error: ${(err as Error)?.message || String(err)}`);
+ return c.json({ error: 'Failed to fetch jobs' }, 500);
+ }
+});
+
+// Fast endpoint: returns jobs with pagination
+app.get('/api/jobs-all', async (c) => {
+ try {
+ // Get page and perPage from query params, default to first page with 100 items
+ const page = parseInt(c.req.query('page') || '1');
+ const perPage = parseInt(c.req.query('perPage') || '100');
+
+ // Return in-memory cache if available
+ if (cachedJobs && cachedJobs.items && Array.isArray(cachedJobs.items)) {
+ const allJobs = cachedJobs.items;
+ const totalItems = allJobs.length;
+ const totalPages = Math.ceil(totalItems / perPage);
+ const startIdx = (page - 1) * perPage;
+ const endIdx = startIdx + perPage;
+ const pageJobs = allJobs.slice(startIdx, endIdx);
+
+ // Refresh in background if older than 5 minutes
+ if (Date.now() - lastCacheTime > 5 * 60 * 1000) {
+ fetchAllJobsProgressively(c.req.header('Authorization') || '').catch(err => {
+ logLine('logs/error.log', `Background refresh error: ${err}`);
+ });
+ }
+
+ return c.json({
+ page,
+ perPage: pageJobs.length,
+ totalItems,
+ totalPages,
+ items: pageJobs
+ });
+ }
+
+ // Try to load from disk if not in memory
+ const diskCache = await loadCacheFile();
+ if (diskCache && diskCache.items && Array.isArray(diskCache.items)) {
+ const allJobs = diskCache.items;
+ const totalItems = allJobs.length;
+ const totalPages = Math.ceil(totalItems / perPage);
+ const startIdx = (page - 1) * perPage;
+ const endIdx = startIdx + perPage;
+ const pageJobs = allJobs.slice(startIdx, endIdx);
+
+ // Refresh in background
+ fetchAllJobsProgressively(c.req.header('Authorization') || '').catch(err => {
+ logLine('logs/error.log', `Background refresh error: ${err}`);
+ });
+
+ return c.json({
+ page,
+ perPage: pageJobs.length,
+ totalItems,
+ totalPages,
+ items: pageJobs
+ });
+ }
+
+ // No cache: fetch first page from PocketBase
+ if (!isFetching) {
+ isFetching = true;
+ fetchAllJobsProgressively(c.req.header('Authorization') || '').catch(err => {
+ logLine('logs/error.log', `Progressive fetch error: ${err}`);
+ isFetching = false;
+ });
+ }
+
+ // Return first batch immediately
+ try {
+ const pbUrl = `https://pocketbase.ccllc.pro/api/collections/pbc_1407612689/records?page=1&perPage=100&sort=-Job_Number`;
+ const response = await fetch(pbUrl, {
+ headers: c.req.header('Authorization') ? { Authorization: c.req.header('Authorization')! } : {}
+ });
+
+ if (response.ok) {
+ const data = await response.json();
+ const items = data.items || [];
+ return c.json({
+ page: 1,
+ perPage: items.length,
+ totalItems: items.length,
+ totalPages: 1,
+ items: items
+ });
+ }
+ } catch (err) {
+ logLine('logs/error.log', `Failed to get first page: ${err}`);
+ }
+
+ return c.json({ error: 'No cache available and initial fetch failed' }, 503);
+ } catch(err) {
+ logLine('logs/error.log', `jobs-all endpoint error: ${err}`);
+ return c.json({ error: 'Failed to fetch jobs' }, 500);
+ }
+});
+
+// Progressive fetch helper: fetches all jobs in background, updating cache as it goes
+async function fetchAllJobsProgressively(authHeader: string): Promise {
+ try {
+ const perPage = 500;
+
+ // Get first page to determine total
+ const firstUrl = `https://pocketbase.ccllc.pro/api/collections/pbc_1407612689/records?page=1&perPage=${perPage}&sort=-Job_Number`;
+ const firstResponse = await fetch(firstUrl, {
+ headers: authHeader ? { Authorization: authHeader } : {}
+ });
+
+ if (!firstResponse.ok) {
+ throw new Error(`PocketBase returned ${firstResponse.status}`);
+ }
+
+ const firstData = await firstResponse.json();
+ const totalItems = firstData.totalItems || 0;
+ const totalPages = Math.ceil(totalItems / perPage);
+
+ const allItems = [...(firstData.items || [])];
+ partialJobs = allItems;
+
+ // Fetch remaining pages in parallel
+ if (totalPages > 1) {
+ const pagePromises = [];
+ for (let page = 2; page <= totalPages; page++) {
+ const pbUrl = `https://pocketbase.ccllc.pro/api/collections/pbc_1407612689/records?page=${page}&perPage=${perPage}&sort=-Job_Number`;
+ pagePromises.push(
+ fetch(pbUrl, {
+ headers: authHeader ? { Authorization: authHeader } : {}
+ }).then(r => r.json())
+ );
+ }
+
+ const results = await Promise.all(pagePromises);
+ for (const result of results) {
+ allItems.push(...(result.items || []));
+ }
+ }
+
+ // Save final result to cache file
+ const cacheData = {
+ page: 1,
+ perPage: allItems.length,
+ totalItems: allItems.length,
+ totalPages: 1,
+ items: allItems
+ };
+
+ await saveCacheFile(cacheData);
+ isFetching = false;
+ logLine('logs/server.log', `✓ Progressive fetch complete: ${allItems.length} jobs cached`);
+ } catch (err) {
+ logLine('logs/error.log', `Progressive fetch failed: ${err}`);
+ isFetching = false;
+ }
+}
+
+// Helper function to fetch all jobs from PocketBase
+async function fetchAllJobsFromPocketBase(authHeader: string): Promise {
+ const perPage = 500;
+
+ // First, get total count
+ const firstUrl = `https://pocketbase.ccllc.pro/api/collections/pbc_1407612689/records?page=1&perPage=${perPage}&sort=-Job_Number`;
+ const firstResponse = await fetch(firstUrl, {
+ headers: authHeader ? { Authorization: authHeader } : {}
+ });
+
+ if (!firstResponse.ok) {
+ throw new Error(`PocketBase returned ${firstResponse.status}`);
+ }
+
+ const firstData = await firstResponse.json();
+ const totalItems = firstData.totalItems || 0;
+ const totalPages = Math.ceil(totalItems / perPage);
+
+ // Fetch all pages in parallel
+ const allItems = [...(firstData.items || [])];
+
+ if (totalPages > 1) {
+ const pagePromises = [];
+ for (let page = 2; page <= totalPages; page++) {
+ const pbUrl = `https://pocketbase.ccllc.pro/api/collections/pbc_1407612689/records?page=${page}&perPage=${perPage}&sort=-Job_Number`;
+ pagePromises.push(
+ fetch(pbUrl, {
+ headers: authHeader ? { Authorization: authHeader } : {}
+ }).then(r => r.json())
+ );
+ }
+
+ const results = await Promise.all(pagePromises);
+ for (const result of results) {
+ allItems.push(...(result.items || []));
+ }
+ }
+
+ return {
+ page: 1,
+ perPage: allItems.length,
+ totalItems: allItems.length,
+ totalPages: 1,
+ items: allItems
+ };
+}
+
+// Helper function to refresh jobs cache in background (disabled)
+async function refreshJobsCache(cacheKey: string, ttl: number, authHeader: string): Promise {
+ try {
+ const result = await fetchAllJobsFromPocketBase(authHeader);
+ // await setCache(cacheKey, result, ttl);
+ logLine('logs/server.log', `Background refresh: fetched ${result.items.length} jobs (cache disabled)`);
+ } catch (err) {
+ logLine('logs/error.log', `Background refresh error: ${(err as Error)?.message || String(err)}`);
+ }
+}
+
+
+// --- Microsoft Graph helpers ---
+const getGraphToken = (c?: any) => {
+ const headerToken = c?.req?.header ? c.req.header('x-graph-token') : '';
+ const envToken = process.env.GRAPH_TOKEN || process.env.MS_GRAPH_TOKEN || '';
+ const token = headerToken || envToken;
+ console.log('[getGraphToken] Header token:', headerToken ? headerToken.substring(0, 20) + '...' : 'NONE');
+ console.log('[getGraphToken] Env token:', envToken ? 'SET' : 'NOT SET');
+ console.log('[getGraphToken] Using:', token ? token.substring(0, 20) + '...' : 'NONE');
+ return token;
+};
+
+const b64Url = (input: string) =>
+ Buffer.from(input).toString('base64').replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/g, '');
+
+type DriveItem = {
+ id: string;
+ name: string;
+ webUrl?: string;
+ size?: number;
+ lastModifiedDateTime?: string;
+ file?: { mimeType?: string };
+ folder?: { childCount?: number };
+ parentReference?: { path?: string; driveId?: string };
+};
+
+const fetchJson = async (url: string, token: string) => {
+ const res = await fetch(url, {
+ headers: {
+ Authorization: `Bearer ${token}`,
+ Accept: 'application/json',
+ },
+ });
+ if (!res.ok) {
+ const text = await res.text();
+ const err: any = new Error(`Graph ${res.status}: ${text}`);
+ err.status = res.status;
+ throw err;
+ }
+ return res.json();
+};
+
+const resolveShareLink = async (link: string, token: string) => {
+ // Decode the link in case it comes pre-encoded from the database
+ const decodedLink = decodeURIComponent(link);
+ console.log('[resolveShareLink] Decoded link:', decodedLink);
+
+ // Check if this is a short sharing link (/:f:/ or /:b:/) or a direct document library URL
+ if (decodedLink.includes('/:f:/') || decodedLink.includes('/:b:/')) {
+ // Short sharing link - use shares API
+ const encoded = `u!${b64Url(decodedLink)}`;
+ console.log('[resolveShareLink] Using shares API, encoded:', encoded);
+ const data = await fetchJson(`https://graph.microsoft.com/v1.0/shares/${encoded}/driveItem`, token);
+ return { driveId: data.parentReference?.driveId as string, itemId: data.id as string };
+ } else {
+ // Direct document library URL - parse it and use drive API
+ // Example: https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites/Team/Shared Documents/General/...
+ const url = new URL(decodedLink);
+ const pathMatch = url.hostname.match(/^([^.]+)\.sharepoint\.com$/);
+ if (!pathMatch) throw new Error('Invalid SharePoint URL');
+
+ const hostname = pathMatch[1]; // e.g., 'czflex'
+ const sitePath = url.pathname.split('/Shared')[0]; // e.g., /sites/Team
+ const rootFolderParam = url.searchParams.get('RootFolder');
+ if (!rootFolderParam) throw new Error('RootFolder parameter missing');
+
+ // Extract the folder path relative to the document library
+ // RootFolder format: /sites/Team/Shared Documents/General/Operations [Server]/...
+ // We need: General/Operations [Server]/...
+ const folderPath = rootFolderParam.split('/Shared Documents/')[1];
+ if (!folderPath) throw new Error('Could not parse folder path');
+
+ console.log('[resolveShareLink] Hostname:', hostname);
+ console.log('[resolveShareLink] Site path:', sitePath);
+ console.log('[resolveShareLink] Folder path:', folderPath);
+
+ // Get the site ID first using hostname:sitePath format
+ const siteData = await fetchJson(`https://graph.microsoft.com/v1.0/sites/${hostname}.sharepoint.com:${sitePath}`, token);
+ const siteId = siteData.id;
+
+ // Get the default document library drive
+ const driveData = await fetchJson(`https://graph.microsoft.com/v1.0/sites/${siteId}/drive`, token);
+ const driveId = driveData.id;
+
+ // Get the folder item by path
+ const itemData = await fetchJson(
+ `https://graph.microsoft.com/v1.0/drives/${driveId}/root:/${folderPath}`,
+ token
+ );
+
+ console.log('[resolveShareLink] Resolved to driveId:', driveId, 'itemId:', itemData.id);
+ return { driveId, itemId: itemData.id };
+ }
+};
+
+const listChildrenRecursive = async (
+ driveId: string,
+ itemId: string,
+ depth = 0,
+ maxDepth = 5,
+ token: string,
+): Promise => {
+ const out: DriveItem[] = [];
+ const data = await fetchJson(`https://graph.microsoft.com/v1.0/drives/${driveId}/items/${itemId}/children`, token);
+ for (const child of data.value || []) {
+ out.push(child as DriveItem);
+ if (child.folder && depth < maxDepth) {
+ const nested = await listChildrenRecursive(driveId, child.id, depth + 1, maxDepth, token);
+ out.push(...nested);
+ }
+ }
+ return out;
+};
+
+const searchWithinFolder = async (driveId: string, itemId: string, query: string, token: string): Promise => {
+ const data = await fetchJson(
+ `https://graph.microsoft.com/v1.0/drives/${driveId}/items/${itemId}/search(q='${encodeURIComponent(query)}')`,
+ token,
+ );
+ return (data.value || []) as DriveItem[];
+};
+
+const filterByCategory = (items: DriveItem[], category?: string, pdfOnly: boolean = true) => {
+ // First filter: show PDF files and Word documents (which will be converted to PDF)
+ let filtered = items;
+ if (pdfOnly) {
+ filtered = items.filter((i) => {
+ if (i.folder) return false;
+ const name = i.name.toLowerCase();
+ const mimeType = i.file?.mimeType?.toLowerCase() || '';
+ // Include PDFs, Word documents, and images
+ return name.endsWith('.pdf') || mimeType.includes('pdf') ||
+ name.endsWith('.doc') || name.endsWith('.docx') || mimeType.includes('word') ||
+ name.endsWith('.jpg') || name.endsWith('.jpeg') || name.endsWith('.png') ||
+ name.endsWith('.gif') || name.endsWith('.bmp') || name.endsWith('.tiff') ||
+ name.endsWith('.webp') || mimeType.includes('image');
+ });
+ }
+
+ // Second filter: category filtering (if specified)
+ if (!category) return filtered;
+ const nameHas = (name: string, words: string[]) => words.some((w) => name.includes(w));
+ const lc = (s: string) => (s || '').toLowerCase();
+ const contractWords = ['contract', 'estimate', 'proposal', 'bid', 'award', 'agreement', 'sow'];
+ const planWords = ['plan', 'drawing', 'dwg', 'pdf', 'sheet', 'layout'];
+ return filtered.filter((i) => {
+ const n = lc(i.name);
+ if (category === 'contracts') return nameHas(n, contractWords);
+ if (category === 'plans') return nameHas(n, planWords);
+ return true;
+ });
+};
+
+// List/search job files via Graph using a shared folder link
+app.get('/api/job-files', async (c) => {
+ try {
+ console.log('[job-files] Request received');
+ const token = getGraphToken(c);
+ if (!token) {
+ console.log('[job-files] No token found');
+ return c.json({ error: 'GRAPH_TOKEN missing' }, 500);
+ }
+ console.log('[job-files] Token found:', token.substring(0, 20) + '...');
+ const link = c.req.query('link');
+ const q = c.req.query('q') || '';
+ const category = c.req.query('category') || '';
+ if (!link) return c.json({ error: 'link required' }, 400);
+ console.log('[job-files] Link:', link);
+
+ const { driveId, itemId } = await resolveShareLink(link, token);
+
+ let items: DriveItem[] = [];
+ if (q) {
+ items = await searchWithinFolder(driveId, itemId, q, token);
+ } else {
+ // Walk subfolders up to depth 5
+ items = await listChildrenRecursive(driveId, itemId, 0, 5, token);
+ }
+
+ // Filter to show only PDFs by default (can be disabled with pdfOnly=false query param)
+ const pdfOnly = c.req.query('pdfOnly') !== 'false';
+ const filtered = filterByCategory(items, category, pdfOnly);
+ console.log(`[job-files] Found ${items.length} total items, ${filtered.length} after filtering`);
+
+ const mapped = filtered.map((i) => ({
+ id: i.id,
+ name: i.name,
+ url: i.webUrl,
+ driveId: i.parentReference?.driveId || driveId,
+ size: i.size,
+ modified: i.lastModifiedDateTime,
+ contentType: i.file?.mimeType,
+ isFolder: Boolean(i.folder),
+ path: i.parentReference?.path || '',
+ }));
+
+ return c.json({ items: mapped, total: mapped.length, source: q ? 'search' : 'walk', driveId });
+ } catch (err) {
+ const message = (err as Error)?.message || String(err);
+ const status = (err as any)?.status || 500;
+ console.error('[job-files] ERROR:', message);
+ logLine('logs/error.log', `/api/job-files error: ${message}`);
+ return c.json({ error: message }, status);
+ }
+});
+
+// Stream file content via Graph to avoid CSP issues for inline preview
+app.get('/api/job-file-content', async (c) => {
+ try {
+ const token = getGraphToken(c);
+ if (!token) return c.json({ error: 'GRAPH_TOKEN missing' }, 500);
+ const driveId = c.req.query('driveId');
+ const itemId = c.req.query('itemId');
+ if (!driveId || !itemId) return c.json({ error: 'driveId and itemId required' }, 400);
+
+ const res = await fetch(`https://graph.microsoft.com/v1.0/drives/${driveId}/items/${itemId}/content`, {
+ headers: { Authorization: `Bearer ${token}` },
+ });
+ if (!res.ok) {
+ const text = await res.text();
+ logLine('logs/error.log', `/api/job-file-content failed: ${res.status} - ${text}`);
+ return c.json({ error: `Graph ${res.status}: ${text}` }, 502);
+ }
+ const headers: Record = {};
+ const ct = res.headers.get('content-type');
+ const cd = res.headers.get('content-disposition');
+ if (ct) headers['Content-Type'] = ct;
+ if (cd) headers['Content-Disposition'] = cd;
+ return new Response(res.body, { status: 200, headers });
+ } catch (err) {
+ const message = (err as Error)?.message || String(err);
+ const status = (err as any)?.status || 500;
+ logLine('logs/error.log', `/api/job-file-content error: ${message}`);
+ return c.json({ error: message }, status);
+ }
+});
+
+// Convert Word documents to PDF for display
+app.get('/api/job-file-pdf', async (c) => {
+ try {
+ const token = getGraphToken(c);
+ if (!token) return c.json({ error: 'GRAPH_TOKEN missing' }, 500);
+ const driveId = c.req.query('driveId');
+ const itemId = c.req.query('itemId');
+ if (!driveId || !itemId) return c.json({ error: 'driveId and itemId required' }, 400);
+
+ // Use Graph API to convert to PDF format
+ const res = await fetch(`https://graph.microsoft.com/v1.0/drives/${driveId}/items/${itemId}/content?format=pdf`, {
+ headers: { Authorization: `Bearer ${token}` },
+ });
+ if (!res.ok) {
+ const text = await res.text();
+ logLine('logs/error.log', `/api/job-file-pdf conversion failed: ${res.status} - ${text}`);
+ return c.json({ error: `PDF conversion failed: ${res.status}` }, 502);
+ }
+ const headers: Record = {
+ 'Content-Type': 'application/pdf',
+ };
+ const cd = res.headers.get('content-disposition');
+ if (cd) {
+ // Replace .docx/.doc extension with .pdf in filename
+ headers['Content-Disposition'] = cd.replace(/\.(docx?)/gi, '.pdf');
+ }
+ logLine('logs/server.log', `Successfully converted document to PDF: driveId=${driveId}, itemId=${itemId}`);
+ return new Response(res.body, { status: 200, headers });
+ } catch (err) {
+ const message = (err as Error)?.message || String(err);
+ const status = (err as any)?.status || 500;
+ logLine('logs/error.log', `/api/job-file-pdf error: ${message}`);
+ return c.json({ error: message }, status);
+ }
+});
+
+// Mutation logging endpoint
+app.post('/log-change', async (c) => {
+ try {
+ const body = await c.req.json();
+ const { action = 'unknown', user = 'unknown', target = '', detail = '' } = body || {};
+ const payload = JSON.stringify({ action, user, target, detail });
+ logLine('logs/changes.log', payload);
+ return c.json({ status: 'ok' });
+ } catch (err) {
+ logLine('logs/error.log', `log-change error: ${(err as Error)?.message || String(err)}`);
+ return c.text('Bad Request', 400);
+ }
+});
+
+// Serve static files from the frontend directory (must come after API routes)
+// Add cache headers for static assets
+app.use('/assets/*', async (c, next) => {
+ await next();
+ // Cache assets for 1 year
+ c.header('Cache-Control', 'public, max-age=31536000, immutable');
+});
+app.use('/*', serveStatic({ root: './frontend' }));
+
+// Error handler
+app.onError((err, c) => {
+ logLine('logs/error.log', `Unhandled error: ${err?.message || err}`);
+ return c.text('Internal Server Error', 500);
+});
+
+// Default to 3000 for mode6test instance; can be overridden by Environment=PORT
+const PORT = Number(process.env.PORT || 3000);
+
+logLine('logs/server.log', `Starting frontend server on port ${PORT}`);
+
+// Load cache on startup
+(async () => {
+ try {
+ const cached = await loadCacheFile();
+ if (cached) {
+ logLine('logs/server.log', `✓ Loaded cache from disk: ${cached.items?.length || 0} jobs`);
+ } else {
+ logLine('logs/server.log', 'No cache file found, will fetch from PocketBase on first request');
+ }
+ } catch (err) {
+ logLine('logs/error.log', `Startup cache load error: ${(err as Error)?.message || String(err)}`);
+ }
+})();
+
+// Immediately load cache synchronously if it exists (for fastest first request)
+(async () => {
+ try {
+ await loadCacheFile();
+ } catch (err) {
+ // Silent fail
+ }
+})();
+
+// Background refresh disabled - no longer polling
+// setInterval(async () => {
+// try {
+// const result = await fetchAllJobsFromPocketBase('');
+// await saveCacheFile(result);
+// logLine('logs/server.log', `✓ Background refresh: updated cache with ${result.items?.length || 0} jobs`);
+// } catch (err) {
+// logLine('logs/error.log', `Periodic refresh error: ${(err as Error)?.message || String(err)}`);
+// }
+// }, 5 * 60 * 1000); // Every 5 minutes
+
+// Graceful shutdown logging
+const shutdown = (signal: string) => {
+ logLine('logs/server.log', `Shutting down due to ${signal}`);
+ process.exit(0);
+};
+process.on('SIGINT', () => shutdown('SIGINT'));
+process.on('SIGTERM', () => shutdown('SIGTERM'));
+
+export default {
+ port: PORT,
+ fetch: app.fetch,
+};
diff --git a/Mode6Test/bun.lock b/Mode6Test/bun.lock
new file mode 100644
index 0000000..6b92901
--- /dev/null
+++ b/Mode6Test/bun.lock
@@ -0,0 +1,600 @@
+{
+ "lockfileVersion": 1,
+ "configVersion": 0,
+ "workspaces": {
+ "": {
+ "name": "job-info",
+ "dependencies": {
+ "dotenv": "^17.2.3",
+ "hono": "^4.10.8",
+ "ioredis": "^5.9.2",
+ "pocketbase": "^0.26.5",
+ "tailwind": "^4.0.0",
+ },
+ "devDependencies": {
+ "@types/bun": "latest",
+ "autoprefixer": "^10.4.23",
+ "postcss": "^8.5.6",
+ "tailwindcss": "^4.1.18",
+ },
+ "peerDependencies": {
+ "typescript": "^5",
+ },
+ },
+ },
+ "packages": {
+ "@babel/runtime": ["@babel/runtime@7.3.4", "", { "dependencies": { "regenerator-runtime": "^0.12.0" } }, "sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g=="],
+
+ "@ioredis/commands": ["@ioredis/commands@1.5.0", "", {}, "sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow=="],
+
+ "@types/bun": ["@types/bun@1.3.2", "", { "dependencies": { "bun-types": "1.3.2" } }, "sha512-t15P7k5UIgHKkxwnMNkJbWlh/617rkDGEdSsDbu+qNHTaz9SKf7aC8fiIlUdD5RPpH6GEkP0cK7WlvmrEBRtWg=="],
+
+ "@types/node": ["@types/node@24.10.1", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ=="],
+
+ "@types/react": ["@types/react@19.2.4", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-tBFxBp9Nfyy5rsmefN+WXc1JeW/j2BpBHFdLZbEVfs9wn3E3NRFxwV0pJg8M1qQAexFpvz73hJXFofV0ZAu92A=="],
+
+ "accepts": ["accepts@1.3.8", "", { "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="],
+
+ "ajv": ["ajv@6.10.0", "", { "dependencies": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="],
+
+ "amqplib": ["amqplib@0.5.2", "", { "dependencies": { "bitsyntax": "~0.0.4", "bluebird": "^3.4.6", "buffer-more-ints": "0.0.2", "readable-stream": "1.x >=1.1.9", "safe-buffer": "^5.0.1" } }, "sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA=="],
+
+ "ansi-styles": ["ansi-styles@3.2.1", "", { "dependencies": { "color-convert": "^1.9.0" } }, "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="],
+
+ "app-root-path": ["app-root-path@2.1.0", "", {}, "sha512-z5BqVjscbjmJBybKlICogJR2jCr2q/Ixu7Pvui5D4y97i7FLsJlvEG9XOR/KJRlkxxZz7UaaS2TMwQh1dRJ2dA=="],
+
+ "array-buffer-byte-length": ["array-buffer-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" } }, "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="],
+
+ "array-flatten": ["array-flatten@1.1.1", "", {}, "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="],
+
+ "array.prototype.reduce": ["array.prototype.reduce@1.0.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-array-method-boxes-properly": "^1.0.0", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "is-string": "^1.1.1" } }, "sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw=="],
+
+ "arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.4", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" } }, "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="],
+
+ "asn1": ["asn1@0.2.3", "", {}, "sha512-6i37w/+EhlWlGUJff3T/Q8u1RGmP5wgbiwYnOnbOqvtrPxT63/sYFyP9RcpxtxGymtfA075IvmOnL7ycNOWl3w=="],
+
+ "async-function": ["async-function@1.0.0", "", {}, "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA=="],
+
+ "async-limiter": ["async-limiter@1.0.1", "", {}, "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="],
+
+ "async-retry": ["async-retry@1.2.3", "", { "dependencies": { "retry": "0.12.0" } }, "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q=="],
+
+ "autoprefixer": ["autoprefixer@10.4.23", "", { "dependencies": { "browserslist": "^4.28.1", "caniuse-lite": "^1.0.30001760", "fraction.js": "^5.3.4", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": { "autoprefixer": "bin/autoprefixer" } }, "sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA=="],
+
+ "available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="],
+
+ "babel-runtime": ["babel-runtime@6.26.0", "", { "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" } }, "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g=="],
+
+ "baseline-browser-mapping": ["baseline-browser-mapping@2.9.8", "", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-Y1fOuNDowLfgKOypdc9SPABfoWXuZHBOyCS4cD52IeZBhr4Md6CLLs6atcxVrzRmQ06E7hSlm5bHHApPKR/byA=="],
+
+ "basic-auth": ["basic-auth@2.0.1", "", { "dependencies": { "safe-buffer": "5.1.2" } }, "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg=="],
+
+ "bitsyntax": ["bitsyntax@0.0.4", "", { "dependencies": { "buffer-more-ints": "0.0.2" } }, "sha512-Pav3HSZXD2NLQOWfJldY3bpJLt8+HS2nUo5Z1bLLmHg2vCE/cM1qfEvNjlYo7GgYQPneNr715Bh42i01ZHZPvw=="],
+
+ "bluebird": ["bluebird@3.7.2", "", {}, "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="],
+
+ "body-parser": ["body-parser@1.18.3", "", { "dependencies": { "bytes": "3.0.0", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "~1.1.2", "http-errors": "~1.6.3", "iconv-lite": "0.4.23", "on-finished": "~2.3.0", "qs": "6.5.2", "raw-body": "2.3.3", "type-is": "~1.6.16" } }, "sha512-YQyoqQG3sO8iCmf8+hyVpgHHOv0/hCEFiS4zTGUwTA1HjAFX66wRcNQrVCeJq9pgESMRvUAOvSil5MJlmccuKQ=="],
+
+ "browserslist": ["browserslist@4.28.1", "", { "dependencies": { "baseline-browser-mapping": "^2.9.0", "caniuse-lite": "^1.0.30001759", "electron-to-chromium": "^1.5.263", "node-releases": "^2.0.27", "update-browserslist-db": "^1.2.0" }, "bin": { "browserslist": "cli.js" } }, "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA=="],
+
+ "buffer-equal-constant-time": ["buffer-equal-constant-time@1.0.1", "", {}, "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="],
+
+ "buffer-more-ints": ["buffer-more-ints@0.0.2", "", {}, "sha512-PDgX2QJgUc5+Jb2xAoBFP5MxhtVUmZHR33ak+m/SDxRdCrbnX1BggRIaxiW7ImwfmO4iJeCQKN18ToSXWGjYkA=="],
+
+ "bun-types": ["bun-types@1.3.2", "", { "dependencies": { "@types/node": "*" }, "peerDependencies": { "@types/react": "^19" } }, "sha512-i/Gln4tbzKNuxP70OWhJRZz1MRfvqExowP7U6JKoI8cntFrtxg7RJK3jvz7wQW54UuvNC8tbKHHri5fy74FVqg=="],
+
+ "bytes": ["bytes@3.0.0", "", {}, "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw=="],
+
+ "call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="],
+
+ "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
+
+ "call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
+
+ "caniuse-lite": ["caniuse-lite@1.0.30001760", "", {}, "sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw=="],
+
+ "chalk": ["chalk@2.4.1", "", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ=="],
+
+ "cluster-key-slot": ["cluster-key-slot@1.1.2", "", {}, "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA=="],
+
+ "color-convert": ["color-convert@1.9.3", "", { "dependencies": { "color-name": "1.1.3" } }, "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="],
+
+ "color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="],
+
+ "commands-events": ["commands-events@1.0.4", "", { "dependencies": { "@babel/runtime": "7.2.0", "formats": "1.0.0", "uuidv4": "2.0.0" } }, "sha512-HdP/+1Anoc7z+6L2h7nd4Imz54+LW+BjMGt30riBZrZ3ZeP/8el93wD8Jj8ltAaqVslqNgjX6qlhSBJwuDSmpg=="],
+
+ "comparejs": ["comparejs@1.0.0", "", {}, "sha512-Ue/Zd9aOucHzHXwaCe4yeHR7jypp7TKrIBZ5yls35nPNiVXlW14npmNVKM1ZaLlQTKZ6/4ewA//gYKHHIwCpOw=="],
+
+ "compressible": ["compressible@2.0.18", "", { "dependencies": { "mime-db": ">= 1.43.0 < 2" } }, "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="],
+
+ "compression": ["compression@1.7.3", "", { "dependencies": { "accepts": "~1.3.5", "bytes": "3.0.0", "compressible": "~2.0.14", "debug": "2.6.9", "on-headers": "~1.0.1", "safe-buffer": "5.1.2", "vary": "~1.1.2" } }, "sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg=="],
+
+ "content-disposition": ["content-disposition@0.5.2", "", {}, "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA=="],
+
+ "content-type": ["content-type@1.0.4", "", {}, "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="],
+
+ "cookie": ["cookie@0.3.1", "", {}, "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw=="],
+
+ "cookie-signature": ["cookie-signature@1.0.6", "", {}, "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="],
+
+ "core-js": ["core-js@2.6.12", "", {}, "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="],
+
+ "core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="],
+
+ "cors": ["cors@2.8.5", "", { "dependencies": { "object-assign": "^4", "vary": "^1" } }, "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g=="],
+
+ "crypto2": ["crypto2@2.0.0", "", { "dependencies": { "babel-runtime": "6.26.0", "node-rsa": "0.4.2", "util.promisify": "1.0.0" } }, "sha512-jdXdAgdILldLOF53md25FiQ6ybj2kUFTiRjs7msKTUoZrzgT/M1FPX5dYGJjbbwFls+RJIiZxNTC02DE/8y0ZQ=="],
+
+ "csstype": ["csstype@3.2.0", "", {}, "sha512-si++xzRAY9iPp60roQiFta7OFbhrgvcthrhlNAGeQptSY25uJjkfUV8OArC3KLocB8JT8ohz+qgxWCmz8RhjIg=="],
+
+ "data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="],
+
+ "data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="],
+
+ "data-view-byte-offset": ["data-view-byte-offset@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="],
+
+ "datasette": ["datasette@1.0.1", "", { "dependencies": { "comparejs": "1.0.0", "eventemitter2": "5.0.1", "lodash": "4.17.5" } }, "sha512-aJdlCBToEJUP4M57r67r4V6tltwGKa3qetnjpBtXYIlqbX9tM9jsoDMxb4xd9AGjpp3282oHRmqI5Z8TVAU0Mg=="],
+
+ "debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
+
+ "define-data-property": ["define-data-property@1.1.4", "", { "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" } }, "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="],
+
+ "define-properties": ["define-properties@1.2.1", "", { "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="],
+
+ "denque": ["denque@2.1.0", "", {}, "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw=="],
+
+ "depd": ["depd@1.1.2", "", {}, "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="],
+
+ "destroy": ["destroy@1.0.4", "", {}, "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg=="],
+
+ "dotenv": ["dotenv@17.2.3", "", {}, "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w=="],
+
+ "draht": ["draht@1.0.1", "", { "dependencies": { "eventemitter2": "5.0.1" } }, "sha512-yNNHL864dniNmIE9ZKD++mKypiAUAvVZtyV0QrbXH/ak3ebzFqo5xsmRBRqV8pZVhImOSBiyq500Wcmrf44zAg=="],
+
+ "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
+
+ "ecdsa-sig-formatter": ["ecdsa-sig-formatter@1.0.11", "", { "dependencies": { "safe-buffer": "^5.0.1" } }, "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="],
+
+ "ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="],
+
+ "electron-to-chromium": ["electron-to-chromium@1.5.267", "", {}, "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw=="],
+
+ "encodeurl": ["encodeurl@1.0.2", "", {}, "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="],
+
+ "es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="],
+
+ "es-array-method-boxes-properly": ["es-array-method-boxes-properly@1.0.0", "", {}, "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="],
+
+ "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="],
+
+ "es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
+
+ "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="],
+
+ "es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="],
+
+ "es-to-primitive": ["es-to-primitive@1.3.0", "", { "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" } }, "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="],
+
+ "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="],
+
+ "escape-html": ["escape-html@1.0.3", "", {}, "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="],
+
+ "escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="],
+
+ "etag": ["etag@1.8.1", "", {}, "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="],
+
+ "eventemitter2": ["eventemitter2@5.0.1", "", {}, "sha512-5EM1GHXycJBS6mauYAbVKT1cVs7POKWb2NXD4Vyt8dDqeZa7LaDK1/sjtL+Zb0lzTpSNil4596Dyu97hz37QLg=="],
+
+ "express": ["express@4.16.4", "", { "dependencies": { "accepts": "~1.3.5", "array-flatten": "1.1.1", "body-parser": "1.18.3", "content-disposition": "0.5.2", "content-type": "~1.0.4", "cookie": "0.3.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "~1.1.2", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.1.1", "fresh": "0.5.2", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "~2.3.0", "parseurl": "~1.3.2", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.4", "qs": "6.5.2", "range-parser": "~1.2.0", "safe-buffer": "5.1.2", "send": "0.16.2", "serve-static": "1.13.2", "setprototypeof": "1.1.0", "statuses": "~1.4.0", "type-is": "~1.6.16", "utils-merge": "1.0.1", "vary": "~1.1.2" } }, "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg=="],
+
+ "fast-deep-equal": ["fast-deep-equal@2.0.1", "", {}, "sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w=="],
+
+ "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="],
+
+ "finalhandler": ["finalhandler@1.1.1", "", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "~2.3.0", "parseurl": "~1.3.2", "statuses": "~1.4.0", "unpipe": "~1.0.0" } }, "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg=="],
+
+ "find-root": ["find-root@1.1.0", "", {}, "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="],
+
+ "flaschenpost": ["flaschenpost@1.1.3", "", { "dependencies": { "@babel/runtime": "7.2.0", "app-root-path": "2.1.0", "babel-runtime": "6.26.0", "chalk": "2.4.1", "find-root": "1.1.0", "lodash": "4.17.11", "moment": "2.22.2", "processenv": "1.1.0", "split2": "3.0.0", "stack-trace": "0.0.10", "stringify-object": "3.3.0", "untildify": "3.0.3", "util.promisify": "1.0.0", "varname": "2.0.3" }, "bin": { "flaschenpost-uncork": "dist/bin/flaschenpost-uncork.js", "flaschenpost-normalize": "dist/bin/flaschenpost-normalize.js" } }, "sha512-1VAYPvDsVBGFJyUrOa/6clnJwZYC3qVq9nJLcypy6lvaaNbo1wOQiH8HQ+4Fw/k51pVG7JHzSf5epb8lmIW86g=="],
+
+ "for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="],
+
+ "formats": ["formats@1.0.0", "", {}, "sha512-For0Y8egwEK96JgJo4NONErPhtl7H2QzeB2NYGmzeGeJ8a1JZqPgLYOtM3oJRCYhmgsdDFd6KGRYyfe37XY4Yg=="],
+
+ "forwarded": ["forwarded@0.2.0", "", {}, "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="],
+
+ "fraction.js": ["fraction.js@5.3.4", "", {}, "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ=="],
+
+ "fresh": ["fresh@0.5.2", "", {}, "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="],
+
+ "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
+
+ "function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="],
+
+ "functions-have-names": ["functions-have-names@1.2.3", "", {}, "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="],
+
+ "generator-function": ["generator-function@2.0.1", "", {}, "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g=="],
+
+ "get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="],
+
+ "get-own-enumerable-property-symbols": ["get-own-enumerable-property-symbols@3.0.2", "", {}, "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="],
+
+ "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="],
+
+ "get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="],
+
+ "globalthis": ["globalthis@1.0.4", "", { "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" } }, "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ=="],
+
+ "gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
+
+ "has-bigints": ["has-bigints@1.1.0", "", {}, "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg=="],
+
+ "has-flag": ["has-flag@3.0.0", "", {}, "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="],
+
+ "has-property-descriptors": ["has-property-descriptors@1.0.2", "", { "dependencies": { "es-define-property": "^1.0.0" } }, "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="],
+
+ "has-proto": ["has-proto@1.2.0", "", { "dependencies": { "dunder-proto": "^1.0.0" } }, "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ=="],
+
+ "has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="],
+
+ "has-tostringtag": ["has-tostringtag@1.0.2", "", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="],
+
+ "hase": ["hase@2.0.0", "", { "dependencies": { "@babel/runtime": "7.1.2", "amqplib": "0.5.2" } }, "sha512-L83pBR/oZvQQNjv4kw9aUpTqBxERPiY7B42jsmkt1VDeUaRVhYkEIKzkCqrppjtxHe2EZqzZJzuhMXsWsxYIsw=="],
+
+ "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
+
+ "hono": ["hono@4.10.8", "", {}, "sha512-DDT0A0r6wzhe8zCGoYOmMeuGu3dyTAE40HHjwUsWFTEy5WxK1x2WDSsBPlEXgPbRIFY6miDualuUDbasPogIww=="],
+
+ "http-errors": ["http-errors@1.6.3", "", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" } }, "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A=="],
+
+ "iconv-lite": ["iconv-lite@0.4.23", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }, "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA=="],
+
+ "inherits": ["inherits@2.0.3", "", {}, "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="],
+
+ "internal-slot": ["internal-slot@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.2", "side-channel": "^1.1.0" } }, "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw=="],
+
+ "ioredis": ["ioredis@5.9.2", "", { "dependencies": { "@ioredis/commands": "1.5.0", "cluster-key-slot": "^1.1.0", "debug": "^4.3.4", "denque": "^2.1.0", "lodash.defaults": "^4.2.0", "lodash.isarguments": "^3.1.0", "redis-errors": "^1.2.0", "redis-parser": "^3.0.0", "standard-as-callback": "^2.1.0" } }, "sha512-tAAg/72/VxOUW7RQSX1pIxJVucYKcjFjfvj60L57jrZpYCHC3XN0WCQ3sNYL4Gmvv+7GPvTAjc+KSdeNuE8oWQ=="],
+
+ "ipaddr.js": ["ipaddr.js@1.9.1", "", {}, "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="],
+
+ "is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="],
+
+ "is-async-function": ["is-async-function@2.1.1", "", { "dependencies": { "async-function": "^1.0.0", "call-bound": "^1.0.3", "get-proto": "^1.0.1", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" } }, "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ=="],
+
+ "is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="],
+
+ "is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="],
+
+ "is-callable": ["is-callable@1.2.7", "", {}, "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="],
+
+ "is-data-view": ["is-data-view@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" } }, "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="],
+
+ "is-date-object": ["is-date-object@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" } }, "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg=="],
+
+ "is-finalizationregistry": ["is-finalizationregistry@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg=="],
+
+ "is-generator-function": ["is-generator-function@1.1.2", "", { "dependencies": { "call-bound": "^1.0.4", "generator-function": "^2.0.0", "get-proto": "^1.0.1", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" } }, "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA=="],
+
+ "is-map": ["is-map@2.0.3", "", {}, "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="],
+
+ "is-negative-zero": ["is-negative-zero@2.0.3", "", {}, "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw=="],
+
+ "is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="],
+
+ "is-obj": ["is-obj@1.0.1", "", {}, "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg=="],
+
+ "is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="],
+
+ "is-regexp": ["is-regexp@1.0.0", "", {}, "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA=="],
+
+ "is-set": ["is-set@2.0.3", "", {}, "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="],
+
+ "is-shared-array-buffer": ["is-shared-array-buffer@1.0.4", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="],
+
+ "is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="],
+
+ "is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="],
+
+ "is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="],
+
+ "is-weakmap": ["is-weakmap@2.0.2", "", {}, "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w=="],
+
+ "is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="],
+
+ "is-weakset": ["is-weakset@2.0.4", "", { "dependencies": { "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ=="],
+
+ "isarray": ["isarray@0.0.1", "", {}, "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="],
+
+ "json-lines": ["json-lines@1.0.0", "", { "dependencies": { "timer2": "1.0.0" } }, "sha512-ytuLZb4RBQb3bTRsG/QBenyIo5oHLpjeCVph3s2NnoAsZE9K6h+uR+OWpEOWV1UeHdX63tYctGppBpGAc+JNMA=="],
+
+ "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="],
+
+ "jsonwebtoken": ["jsonwebtoken@8.5.0", "", { "dependencies": { "jws": "^3.2.1", "lodash.includes": "^4.3.0", "lodash.isboolean": "^3.0.3", "lodash.isinteger": "^4.0.4", "lodash.isnumber": "^3.0.3", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "lodash.once": "^4.0.0", "ms": "^2.1.1", "semver": "^5.6.0" } }, "sha512-IqEycp0znWHNA11TpYi77bVgyBO/pGESDh7Ajhas+u0ttkGkKYIIAjniL4Bw5+oVejVF+SYkaI7XKfwCCyeTuA=="],
+
+ "jwa": ["jwa@1.4.2", "", { "dependencies": { "buffer-equal-constant-time": "^1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw=="],
+
+ "jws": ["jws@3.2.3", "", { "dependencies": { "jwa": "^1.4.2", "safe-buffer": "^5.0.1" } }, "sha512-byiJ0FLRdLdSVSReO/U4E7RoEyOCKnEnEPMjq3HxWtvzLsV08/i5RQKsFVNkCldrCaPr2vDNAOMsfs8T/Hze7g=="],
+
+ "limes": ["limes@2.0.0", "", { "dependencies": { "@babel/runtime": "7.3.4", "jsonwebtoken": "8.5.0" } }, "sha512-evWD0pnTgPX7QueaSoJl5JBUL30T1ZVzo34ke97tIKmeagqhBTYK/JkKL0vtG3MpNApw8ZY9TlbybfwEz9knBA=="],
+
+ "lodash": ["lodash@4.17.11", "", {}, "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="],
+
+ "lodash.defaults": ["lodash.defaults@4.2.0", "", {}, "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ=="],
+
+ "lodash.includes": ["lodash.includes@4.3.0", "", {}, "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="],
+
+ "lodash.isarguments": ["lodash.isarguments@3.1.0", "", {}, "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg=="],
+
+ "lodash.isboolean": ["lodash.isboolean@3.0.3", "", {}, "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="],
+
+ "lodash.isinteger": ["lodash.isinteger@4.0.4", "", {}, "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="],
+
+ "lodash.isnumber": ["lodash.isnumber@3.0.3", "", {}, "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="],
+
+ "lodash.isplainobject": ["lodash.isplainobject@4.0.6", "", {}, "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="],
+
+ "lodash.isstring": ["lodash.isstring@4.0.1", "", {}, "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="],
+
+ "lodash.once": ["lodash.once@4.1.1", "", {}, "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="],
+
+ "lusca": ["lusca@1.6.1", "", { "dependencies": { "tsscmp": "^1.0.5" } }, "sha512-+JzvUMH/rsE/4XfHdDOl70bip0beRcHSviYATQM0vtls59uVtdn1JMu4iD7ZShBpAmFG8EnaA+PrYG9sECMIOQ=="],
+
+ "math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
+
+ "media-typer": ["media-typer@0.3.0", "", {}, "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="],
+
+ "merge-descriptors": ["merge-descriptors@1.0.1", "", {}, "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="],
+
+ "methods": ["methods@1.1.2", "", {}, "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="],
+
+ "mime": ["mime@1.4.1", "", { "bin": { "mime": "cli.js" } }, "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="],
+
+ "mime-db": ["mime-db@1.54.0", "", {}, "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="],
+
+ "mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="],
+
+ "moment": ["moment@2.22.2", "", {}, "sha512-LRvkBHaJGnrcWvqsElsOhHCzj8mU39wLx5pQ0pc6s153GynCTsPdGdqsVNKAQD9sKnWj11iF7TZx9fpLwdD3fw=="],
+
+ "morgan": ["morgan@1.9.1", "", { "dependencies": { "basic-auth": "~2.0.0", "debug": "2.6.9", "depd": "~1.1.2", "on-finished": "~2.3.0", "on-headers": "~1.0.1" } }, "sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA=="],
+
+ "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
+
+ "nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="],
+
+ "negotiator": ["negotiator@0.6.3", "", {}, "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="],
+
+ "nocache": ["nocache@2.0.0", "", {}, "sha512-YdKcy2x0dDwOh+8BEuHvA+mnOKAhmMQDgKBOCUGaLpewdmsRYguYZSom3yA+/OrE61O/q+NMQANnun65xpI1Hw=="],
+
+ "node-releases": ["node-releases@2.0.27", "", {}, "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA=="],
+
+ "node-rsa": ["node-rsa@0.4.2", "", { "dependencies": { "asn1": "0.2.3" } }, "sha512-Bvso6Zi9LY4otIZefYrscsUpo2mUpiAVIEmSZV2q41sP8tHZoert3Yu6zv4f/RXJqMNZQKCtnhDugIuCma23YA=="],
+
+ "node-statsd": ["node-statsd@0.1.1", "", {}, "sha512-QDf6R8VXF56QVe1boek8an/Rb3rSNaxoFWb7Elpsv2m1+Noua1yy0F1FpKpK5VluF8oymWM4w764A4KsYL4pDg=="],
+
+ "object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="],
+
+ "object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="],
+
+ "object-keys": ["object-keys@1.1.1", "", {}, "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="],
+
+ "object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="],
+
+ "object.getownpropertydescriptors": ["object.getownpropertydescriptors@2.1.9", "", { "dependencies": { "array.prototype.reduce": "^1.0.8", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.24.0", "es-object-atoms": "^1.1.1", "gopd": "^1.2.0", "safe-array-concat": "^1.1.3" } }, "sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g=="],
+
+ "on-finished": ["on-finished@2.3.0", "", { "dependencies": { "ee-first": "1.1.1" } }, "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww=="],
+
+ "on-headers": ["on-headers@1.0.2", "", {}, "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="],
+
+ "own-keys": ["own-keys@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.2.6", "object-keys": "^1.1.1", "safe-push-apply": "^1.0.0" } }, "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg=="],
+
+ "parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="],
+
+ "partof": ["partof@1.0.0", "", {}, "sha512-+TXdhKCySpJDynCxgAPoGVyAkiK3QPusQ63/BdU5t68QcYzyU6zkP/T7F3gkMQBVUYqdWEADKa6Kx5zg8QIKrg=="],
+
+ "path-to-regexp": ["path-to-regexp@0.1.7", "", {}, "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="],
+
+ "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
+
+ "pocketbase": ["pocketbase@0.26.5", "", {}, "sha512-SXcq+sRvVpNxfLxPB1C+8eRatL7ZY4o3EVl/0OdE3MeR9fhPyZt0nmmxLqYmkLvXCN9qp3lXWV/0EUYb3MmMXQ=="],
+
+ "possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="],
+
+ "postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="],
+
+ "postcss-value-parser": ["postcss-value-parser@4.2.0", "", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="],
+
+ "processenv": ["processenv@1.1.0", "", { "dependencies": { "babel-runtime": "6.26.0" } }, "sha512-SymqIsn8GjEUy8nG7HiyEjgbfk1xFosRIakUX1NHLpriq3vVpKniGrr9RdMWCaGYWByIovbRt2f/WvmP/IOApQ=="],
+
+ "proxy-addr": ["proxy-addr@2.0.7", "", { "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="],
+
+ "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="],
+
+ "qs": ["qs@6.5.2", "", {}, "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="],
+
+ "range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="],
+
+ "raw-body": ["raw-body@2.3.3", "", { "dependencies": { "bytes": "3.0.0", "http-errors": "1.6.3", "iconv-lite": "0.4.23", "unpipe": "1.0.0" } }, "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw=="],
+
+ "readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="],
+
+ "redis-errors": ["redis-errors@1.2.0", "", {}, "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w=="],
+
+ "redis-parser": ["redis-parser@3.0.0", "", { "dependencies": { "redis-errors": "^1.0.0" } }, "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A=="],
+
+ "reflect.getprototypeof": ["reflect.getprototypeof@1.0.10", "", { "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.7", "get-proto": "^1.0.1", "which-builtin-type": "^1.2.1" } }, "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw=="],
+
+ "regenerator-runtime": ["regenerator-runtime@0.12.1", "", {}, "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg=="],
+
+ "regexp.prototype.flags": ["regexp.prototype.flags@1.5.4", "", { "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-errors": "^1.3.0", "get-proto": "^1.0.1", "gopd": "^1.2.0", "set-function-name": "^2.0.2" } }, "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA=="],
+
+ "retry": ["retry@0.12.0", "", {}, "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="],
+
+ "safe-array-concat": ["safe-array-concat@1.1.3", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "has-symbols": "^1.1.0", "isarray": "^2.0.5" } }, "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q=="],
+
+ "safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
+
+ "safe-push-apply": ["safe-push-apply@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "isarray": "^2.0.5" } }, "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA=="],
+
+ "safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="],
+
+ "safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
+
+ "semver": ["semver@5.7.2", "", { "bin": { "semver": "bin/semver" } }, "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="],
+
+ "send": ["send@0.16.2", "", { "dependencies": { "debug": "2.6.9", "depd": "~1.1.2", "destroy": "~1.0.4", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "~1.6.2", "mime": "1.4.1", "ms": "2.0.0", "on-finished": "~2.3.0", "range-parser": "~1.2.0", "statuses": "~1.4.0" } }, "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw=="],
+
+ "serve-static": ["serve-static@1.13.2", "", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.2", "send": "0.16.2" } }, "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw=="],
+
+ "set-function-length": ["set-function-length@1.2.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" } }, "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="],
+
+ "set-function-name": ["set-function-name@2.0.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", "has-property-descriptors": "^1.0.2" } }, "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ=="],
+
+ "set-proto": ["set-proto@1.0.0", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0" } }, "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw=="],
+
+ "setprototypeof": ["setprototypeof@1.1.0", "", {}, "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="],
+
+ "sha-1": ["sha-1@0.1.1", "", {}, "sha512-dexizf3hB7d4Jq6Cd0d/NYQiqgEqIfZIpuMfwPfvSb6h06DZKmHyUe55jYwpHC12R42wpqXO6ouhiBpRzIcD/g=="],
+
+ "side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="],
+
+ "side-channel-list": ["side-channel-list@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" } }, "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="],
+
+ "side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="],
+
+ "side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="],
+
+ "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="],
+
+ "split2": ["split2@3.0.0", "", { "dependencies": { "readable-stream": "^3.0.0" } }, "sha512-Cp7G+nUfKJyHCrAI8kze3Q00PFGEG1pMgrAlTFlDbn+GW24evSZHJuMl+iUJx1w/NTRDeBiTgvwnf6YOt94FMw=="],
+
+ "stack-trace": ["stack-trace@0.0.10", "", {}, "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg=="],
+
+ "standard-as-callback": ["standard-as-callback@2.1.0", "", {}, "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A=="],
+
+ "statuses": ["statuses@1.4.0", "", {}, "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="],
+
+ "stethoskop": ["stethoskop@1.0.0", "", { "dependencies": { "node-statsd": "0.1.1" } }, "sha512-4JnZ+UmTs9SFfDjSHFlD/EoXcb1bfwntkt4h1ipNGrpxtRzmHTxOmdquCJvIrVu608Um7a09cGX0ZSOSllWJNQ=="],
+
+ "stop-iteration-iterator": ["stop-iteration-iterator@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "internal-slot": "^1.1.0" } }, "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ=="],
+
+ "string.prototype.trim": ["string.prototype.trim@1.2.10", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" } }, "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="],
+
+ "string.prototype.trimend": ["string.prototype.trimend@1.0.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="],
+
+ "string.prototype.trimstart": ["string.prototype.trimstart@1.0.8", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg=="],
+
+ "string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="],
+
+ "stringify-object": ["stringify-object@3.3.0", "", { "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", "is-regexp": "^1.0.0" } }, "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="],
+
+ "supports-color": ["supports-color@5.5.0", "", { "dependencies": { "has-flag": "^3.0.0" } }, "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="],
+
+ "tailwind": ["tailwind@4.0.0", "", { "dependencies": { "@babel/runtime": "7.3.4", "ajv": "6.10.0", "app-root-path": "2.1.0", "async-retry": "1.2.3", "body-parser": "1.18.3", "commands-events": "1.0.4", "compression": "1.7.3", "content-type": "1.0.4", "cors": "2.8.5", "crypto2": "2.0.0", "datasette": "1.0.1", "draht": "1.0.1", "express": "4.16.4 ", "flaschenpost": "1.1.3", "hase": "2.0.0", "json-lines": "1.0.0", "limes": "2.0.0", "lodash": "4.17.11", "lusca": "1.6.1", "morgan": "1.9.1", "nocache": "2.0.0", "partof": "1.0.0", "processenv": "1.1.0", "stethoskop": "1.0.0", "timer2": "1.0.0", "uuidv4": "3.0.1", "ws": "6.2.0" } }, "sha512-LlUNoD/5maFG1h5kQ6/hXfFPdcnYw+1Z7z+kUD/W/E71CUMwcnrskxiBM8c3G8wmPsD1VvCuqGYMHviI8+yrmg=="],
+
+ "tailwindcss": ["tailwindcss@4.1.18", "", {}, "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw=="],
+
+ "timer2": ["timer2@1.0.0", "", {}, "sha512-UOZql+P2ET0da+B7V3/RImN3IhC5ghb+9cpecfUhmYGIm0z73dDr3A781nBLnFYmRzeT1AmoT4w9Lgr8n7n7xg=="],
+
+ "tsscmp": ["tsscmp@1.0.6", "", {}, "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA=="],
+
+ "type-is": ["type-is@1.6.18", "", { "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" } }, "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="],
+
+ "typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="],
+
+ "typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="],
+
+ "typed-array-byte-offset": ["typed-array-byte-offset@1.0.4", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" } }, "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="],
+
+ "typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="],
+
+ "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
+
+ "unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="],
+
+ "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
+
+ "unpipe": ["unpipe@1.0.0", "", {}, "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="],
+
+ "untildify": ["untildify@3.0.3", "", {}, "sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA=="],
+
+ "update-browserslist-db": ["update-browserslist-db@1.2.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w=="],
+
+ "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="],
+
+ "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
+
+ "util.promisify": ["util.promisify@1.0.0", "", { "dependencies": { "define-properties": "^1.1.2", "object.getownpropertydescriptors": "^2.0.3" } }, "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA=="],
+
+ "utils-merge": ["utils-merge@1.0.1", "", {}, "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="],
+
+ "uuid": ["uuid@3.3.2", "", { "bin": { "uuid": "./bin/uuid" } }, "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="],
+
+ "uuidv4": ["uuidv4@3.0.1", "", { "dependencies": { "uuid": "3.3.2" } }, "sha512-PPzksdWRl2a5C9hrs3OOYrArTeyoR0ftJ3jtOy+BnVHkT2UlrrzPNt9nTdiGuxmQItHM/AcTXahwZZC57Njojg=="],
+
+ "varname": ["varname@2.0.3", "", {}, "sha512-+DofT9mJAUALhnr9ipZ5Z2icwaEZ7DAajOZT4ffXy3MQqnXtG3b7atItLQEJCkfcJTOf9WcsywneOEibD4eqJg=="],
+
+ "vary": ["vary@1.1.2", "", {}, "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="],
+
+ "which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="],
+
+ "which-builtin-type": ["which-builtin-type@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "function.prototype.name": "^1.1.6", "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", "is-date-object": "^1.1.0", "is-finalizationregistry": "^1.1.0", "is-generator-function": "^1.0.10", "is-regex": "^1.2.1", "is-weakref": "^1.0.2", "isarray": "^2.0.5", "which-boxed-primitive": "^1.1.0", "which-collection": "^1.0.2", "which-typed-array": "^1.1.16" } }, "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q=="],
+
+ "which-collection": ["which-collection@1.0.2", "", { "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", "is-weakmap": "^2.0.2", "is-weakset": "^2.0.3" } }, "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw=="],
+
+ "which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="],
+
+ "ws": ["ws@6.2.0", "", { "dependencies": { "async-limiter": "~1.0.0" } }, "sha512-deZYUNlt2O4buFCa3t5bKLf8A7FPP/TVjwOeVNpw818Ma5nk4MLXls2eoEGS39o8119QIYxTrTDoPQ5B/gTD6w=="],
+
+ "amqplib/readable-stream": ["readable-stream@1.1.14", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", "isarray": "0.0.1", "string_decoder": "~0.10.x" } }, "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ=="],
+
+ "babel-runtime/regenerator-runtime": ["regenerator-runtime@0.11.1", "", {}, "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="],
+
+ "body-parser/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "commands-events/@babel/runtime": ["@babel/runtime@7.2.0", "", { "dependencies": { "regenerator-runtime": "^0.12.0" } }, "sha512-oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg=="],
+
+ "commands-events/uuidv4": ["uuidv4@2.0.0", "", { "dependencies": { "sha-1": "0.1.1", "uuid": "3.3.2" } }, "sha512-sAUlwUVepcVk6bwnaW/oi6LCwMdueako5QQzRr90ioAVVcms6p1mV0PaSxK8gyAC4CRvKddsk217uUpZUbKd2Q=="],
+
+ "compression/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "datasette/lodash": ["lodash@4.17.5", "", {}, "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw=="],
+
+ "ecdsa-sig-formatter/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="],
+
+ "express/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "finalhandler/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "flaschenpost/@babel/runtime": ["@babel/runtime@7.2.0", "", { "dependencies": { "regenerator-runtime": "^0.12.0" } }, "sha512-oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg=="],
+
+ "hase/@babel/runtime": ["@babel/runtime@7.1.2", "", { "dependencies": { "regenerator-runtime": "^0.12.0" } }, "sha512-Y3SCjmhSupzFB6wcv1KmmFucH6gDVnI30WjOcicV10ju0cZjak3Jcs67YLIXBrmZYw1xCrVeJPbycFwrqNyxpg=="],
+
+ "mime-types/mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="],
+
+ "morgan/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "safe-array-concat/isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="],
+
+ "safe-push-apply/isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="],
+
+ "send/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "send/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+
+ "string_decoder/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="],
+
+ "which-builtin-type/isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="],
+
+ "amqplib/readable-stream/string_decoder": ["string_decoder@0.10.31", "", {}, "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="],
+
+ "body-parser/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+
+ "compression/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+
+ "express/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+
+ "finalhandler/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+
+ "morgan/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+ }
+}
diff --git a/Mode6Test/frontend/assets/CCwhiteApp.png b/Mode6Test/frontend/assets/CCwhiteApp.png
new file mode 100644
index 0000000..e4ef4f1
Binary files /dev/null and b/Mode6Test/frontend/assets/CCwhiteApp.png differ
diff --git a/Mode6Test/frontend/assets/DailyCheck.png b/Mode6Test/frontend/assets/DailyCheck.png
new file mode 100644
index 0000000..200eba4
Binary files /dev/null and b/Mode6Test/frontend/assets/DailyCheck.png differ
diff --git a/Mode6Test/frontend/assets/PalmIsland.png b/Mode6Test/frontend/assets/PalmIsland.png
new file mode 100644
index 0000000..e31ab51
Binary files /dev/null and b/Mode6Test/frontend/assets/PalmIsland.png differ
diff --git a/Mode6Test/frontend/assets/lightbulb.jpg b/Mode6Test/frontend/assets/lightbulb.jpg
new file mode 100644
index 0000000..f75425e
Binary files /dev/null and b/Mode6Test/frontend/assets/lightbulb.jpg differ
diff --git a/Mode6Test/frontend/auth.js b/Mode6Test/frontend/auth.js
new file mode 100644
index 0000000..323c570
--- /dev/null
+++ b/Mode6Test/frontend/auth.js
@@ -0,0 +1,39 @@
+// PocketBase auth bootstrap shared by pages
+(function (global) {
+ const pb = new PocketBase('https://pocketbase.ccllc.pro');
+
+ function authHeaders() {
+ if (pb.authStore.isValid && pb.authStore.token) {
+ return { Authorization: `Bearer ${pb.authStore.token}` };
+ }
+ return {};
+ }
+
+ function getDisplayName() {
+ const model = pb.authStore.model || {};
+ return (
+ model.display_name ||
+ model.name ||
+ model.email ||
+ model.username ||
+ 'Unknown'
+ );
+ }
+
+ function getEmail() {
+ const model = pb.authStore.model || {};
+ // Prefer email, but fall back to username if email missing
+ return model.email || model.username || null;
+ }
+
+ async function ensureAuth() {
+ if (pb.authStore.isValid) return true;
+ const path = new URL(window.location.href).pathname;
+ if (!path.endsWith('signin.html')) {
+ window.location.href = 'signin.html';
+ }
+ return false;
+ }
+
+ global.Auth = { pb, authHeaders, ensureAuth, getDisplayName, getEmail };
+})(window);
diff --git a/Mode6Test/frontend/index.html b/Mode6Test/frontend/index.html
new file mode 100644
index 0000000..2b0e3ed
--- /dev/null
+++ b/Mode6Test/frontend/index.html
@@ -0,0 +1,2965 @@
+
+
+
+
+
+Job Info — Vanilla JS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Job Info
+
+
+
+
Show Filters
+
+
+
+
+
+
+
+ Sign out
+ v1.0.0-beta2
+
+
+
+
+
+
+
+
+
+
INFO
+
+
+
No Folder Available
+
+
+
+
+
+
NOTES
+
+
+
+
+ B
+ I
+ U
+ A
+ A
+ A
+ Reset
+
+
+
+
+
+ Submit
+ Clear
+ Close
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Back
+
+
INFO
+
NOTES
+
MANAGER INFO
+
+
+
+
+
+
+
+
+
+
+
+
+ −
+ 45%
+ +
+ 45%
+
+
+ ◀
+ ▶
+ Page 1 / 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Mode6Test/frontend/output.css b/Mode6Test/frontend/output.css
new file mode 100644
index 0000000..971f4ad
--- /dev/null
+++ b/Mode6Test/frontend/output.css
@@ -0,0 +1,5 @@
+/* Generated Tailwind CSS - Basic version */
+/* This will be updated by tailwind CLI on dev */
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
diff --git a/Mode6Test/frontend/signin.html b/Mode6Test/frontend/signin.html
new file mode 100644
index 0000000..a0c3792
--- /dev/null
+++ b/Mode6Test/frontend/signin.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+ Sign In
+
+
+
+
+
+
+
Welcome
+
Sign in with your Microsoft account
+
+
Sign in with Microsoft
+
+
+
+
+
Signed in
+
Name:
+
Email:
+
+
Continue to Job Info
+
Sign out
+
+
+
+
+
+
diff --git a/Mode6Test/input.css b/Mode6Test/input.css
new file mode 100644
index 0000000..b5c61c9
--- /dev/null
+++ b/Mode6Test/input.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
diff --git a/Mode6Test/jobs-cache.json b/Mode6Test/jobs-cache.json
new file mode 100644
index 0000000..d7dc859
--- /dev/null
+++ b/Mode6Test/jobs-cache.json
@@ -0,0 +1,156454 @@
+{
+ "page": 1,
+ "perPage": 2266,
+ "totalItems": 2266,
+ "totalPages": 1,
+ "items": [
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Morelock",
+ "Contact_Notes": "",
+ "Contact_Person": "Zachary Fischer",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-21 00:00:00.000Z",
+ "Due_Date_Counter": "5 days",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "zfischer@morelockbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5501 W. Theran Ave, Springfield",
+ "Job_Codes": "4786 - Brody's Corner",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4786%20Brody%27s%20Corner%20-%205501%20W.%20Theran%20Ave,%20Springfield%20%5BMorelock%5D?csf=1&web=1&e=t5rbwh",
+ "Job_Full_Name": "Brody's Corner 5501 W. Theran Ave, Springfield Morelock",
+ "Job_Name": "Brody's Corner",
+ "Job_Number": "4786",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4786FX - Brody's Corner",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 370-5330",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-07-22 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4786FX - Brody's Corner - 5501 W. Theran Ave, Springfield - Morelock - Zachary Fischer - (417) 370-5330",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-14 23:02:11.592Z",
+ "gantt_Info": {
+ "trades": []
+ },
+ "gantt_View": true,
+ "id": "7t946mlbw1dovhv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:41:33.778Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-19 00:00:00.000Z",
+ "Due_Date_Counter": "3 days",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ozarkmountainhomes@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Emory Creek Blvd, Branson",
+ "Job_Codes": "4785 - Pace",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4785%20Pace%20-%20Emory%20Creek%20Blvd,%20Branson%20-%20OMH?csf=1&web=1&e=ctSGv2",
+ "Job_Full_Name": "Pace Emory Creek Blvd, Branson Ozark Mountain Homes",
+ "Job_Name": "Pace",
+ "Job_Number": "4785",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4785FX - Pace",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(141) 769-9130",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-04-15 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4785FX - Pace - Emory Creek Blvd, Branson - Ozark Mountain Homes - David Herd - (141) 769-9130",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-14 22:22:01.803Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gq6fa72fbasadz0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:46.571Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Koon Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Maurice Koon",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-19 00:00:00.000Z",
+ "Due_Date_Counter": "3 days",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "koonconstructionllc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2160 County Rd 2870, Mountain View",
+ "Job_Codes": "4784 - Vass",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4784FX%20-%20Vass%20-%20West%20Plains%20(Koon%20Construction)?csf=1&web=1&e=M2kNuP",
+ "Job_Full_Name": "Vass 2160 County Rd 2870, Mountain View Koon Construction",
+ "Job_Name": "Vass",
+ "Job_Number": "4784",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4784FX - Vass",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 293-6962",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-04-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4784FX - Vass - West Plains - Koon Construction - Maurice Koon - (417) 293-6962",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-14 19:23:24.596Z",
+ "gantt_Info": {
+ "trades": [
+ {
+ "id": "scope-1768861181261-fa9y7bx",
+ "name": "Delivery",
+ "startDate": "2026-01-20",
+ "endDate": "2026-01-23",
+ "scope": "",
+ "tag": "Test"
+ }
+ ]
+ },
+ "gantt_View": true,
+ "id": "8v6ec5refxmvr38",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:20:12.439Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "Thousand Hills Golf Villas Building 10, unit 1",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "suzanbaty@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fall Creek Rd, Branson",
+ "Job_Codes": "4783 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgA1N0uY3rBzQZUTWONdW8LEAWvlXibDZ5MUyL9u14IoDB0",
+ "Job_Full_Name": "Repairs Fall Creek Rd, Branson Baty, Gary",
+ "Job_Name": "Repairs",
+ "Job_Number": "4783",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4783TM - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 337-1169",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "This is a note
to do this thing and that ",
+ "Schedule_Confidence": "10 (Job Starts Within 7 Days)",
+ "Scope": "",
+ "Start_Date": "2026-01-14 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4783TM - Repairs - Branson - Baty, Gary - Gary - (417) 337-1169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-13 17:35:19.024Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rvi9uxz0w7hg7ik",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:46.890Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Prewitt, Cheryl",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "145 Appaloosa Tr, Saddlebrook",
+ "Job_Codes": "4782 - Hand Texture",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgAlXYEoTS8aQKkey8HTXLzkAdjiBgQ9Dt_B1H8KCkQsox8",
+ "Job_Full_Name": "Hand Texture 145 Appaloosa Tr, Saddlebrook Prewitt, Cheryl",
+ "Job_Name": "Hand Texture",
+ "Job_Number": "4782",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4782TM - Hand Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 839-4422",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "10 (Job Starts Within 7 Days)",
+ "Scope": "",
+ "Start_Date": "2026-01-14 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4782TM - Hand Texture - 145 Appaloosa Tr, Saddlebrook - Prewitt, Cheryl - Cheryl - (417) 839-4422",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-13 17:29:32.288Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dv7825i9t0e35e0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:47.047Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Epps, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-16 00:00:00.000Z",
+ "Due_Date_Counter": "Due today",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "meje1991@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2611 E Pacific St, Spfd",
+ "Job_Codes": "4781 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgA83uOnUsLcRYailRpol2JpAR1o2NQasrv_Hc0Kme_caq4",
+ "Job_Full_Name": "Patches 2611 E Pacific St, Spfd Epps, Mark",
+ "Job_Name": "Patches",
+ "Job_Number": "4781",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4781FX - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 350-4452",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-19 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4781FX - Patches - 2611 E Pacific St, Spfd - Epps, Mark - Mark - (417) 350-4452",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-13 17:18:12.357Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "snmsqd5t065bw5y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:47.219Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Epps, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "meje1991@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3605 E Stanford St, Spfd",
+ "Job_Codes": "4780 - Personal Patch",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgBD3P0sgr0YR7s-I7-CdSX3AfgOkrjfCVQ7vN1UlsN0qGs",
+ "Job_Full_Name": "Personal Patch 3605 E Stanford St, Spfd Epps, Mark",
+ "Job_Name": "Personal Patch",
+ "Job_Number": "4780",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4780FX - Personal Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 350-4452",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-14 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4780FX - Personal Patch - 3605 E Stanford St, Spfd - Epps, Mark - Mark - (417) 350-4452",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-13 17:16:40.410Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c6jdnxw1h5s177c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:47.374Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-21 00:00:00.000Z",
+ "Due_Date_Counter": "5 days",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "0.416666666666667",
+ "EXT": 0,
+ "Email": "julie@ross2017.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Timothy Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4777 - RISE-The Flats at James River - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4777 - RISE-The Flats at James River",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4777 - RISE-The Flats at James River - Ross",
+ "Job_Full_Name": "RISE-The Flats at James River Ross",
+ "Job_Name": "RISE-The Flats at James River",
+ "Job_Number": "4777",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4777FX - RISE-The Flats at James River",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Timothy Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 429-1417",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3 (Start Date)",
+ "Scope": "",
+ "Start_Date": "2026-01-05 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4777FX - RISE-The Flats at James River - - Ross - Julie Wallace - (417) 429-1417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-12 16:01:27.276Z",
+ "gantt_Info": {
+ "trades": [
+ {
+ "endDate": "2026-02-09T06:00:00.000Z",
+ "id": "trade-1768666788887-i3bn7l3",
+ "name": "Scarp & Paper",
+ "scope": "",
+ "startDate": "2026-02-02T06:00:00.000Z",
+ "tag": "3rd floor"
+ },
+ {
+ "id": "scope-1768926020628-jy22wgn",
+ "name": "Delivery",
+ "startDate": "2026-03-09",
+ "endDate": "2026-03-13",
+ "scope": "",
+ "tag": "Wildcat"
+ }
+ ]
+ },
+ "gantt_View": true,
+ "id": "f0ewhg40mkjp4wp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-20 16:20:51.149Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-19 00:00:00.000Z",
+ "Due_Date_Counter": "3 days",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Timothy Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4776 - Getting Basted",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Getting Basted Oakgrove Construction",
+ "Job_Name": "Getting Basted",
+ "Job_Number": "4776",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4776FX - Getting Basted",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Timothy Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-26 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4776FX - Getting Basted - - Oakgrove Construction - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-10 19:46:38.771Z",
+ "gantt_Info": {
+ "trades": []
+ },
+ "gantt_View": true,
+ "id": "afivvefrf0ms3ko",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:59:47.699Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "Northview",
+ "Attachment_List": null,
+ "Company_Client": "Withers, Rob",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rdwithers1@msn.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4775 - Strickland",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4775%20Strickland%20-%20%20-%20Withers,%20Rob?csf=1&web=1&e=2tAzBH",
+ "Job_Full_Name": "Strickland Withers, Rob",
+ "Job_Name": "Strickland",
+ "Job_Number": "4775",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4775FX - Strickland",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 860-7397",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-04-22 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4775FX - Strickland - - Withers, Rob - Rob - (417) 860-7397",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-08 23:48:14.293Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dp699rf7vnn6hvt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:47.898Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ozarkmountainhomes@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "120 W Timothy, Kirbyville",
+ "Job_Codes": "4774 - Hernandez",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4774%20Hernandez%20-%20120%20W%20Timothy,%20Kirbyville%20-%20OMH?csf=1&web=1&e=AuH3tS",
+ "Job_Full_Name": "Hernandez 120 W Timothy, Kirbyville Ozark Mountain Homes",
+ "Job_Name": "Hernandez",
+ "Job_Number": "4774",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4774FX - Hernandez",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 699-1303",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-04-21 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4774FX - Hernandez - 120 W Timothy, Kirbyville - Ozark Mountain Homes - David Herd - (417) 699-1303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-08 23:34:40.704Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "risdwsb5wv1krit",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:48.062Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jamco",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Miller",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "700 Mueler Rd, Sparta",
+ "Job_Codes": "4771 - Paegelow",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgDFh--3xAXpSJNjZjJwDxhHAZt7hbOYnIP6PYEUylRA2Gg",
+ "Job_Full_Name": "Paegelow - 700 Mueler Rd, Sparta - Jamco",
+ "Job_Name": "Paegelow",
+ "Job_Number": "4771",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4771FX - Paegelow",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 935-4004",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-02-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4771FX - Paegelow - 700 Mueler Rd, Sparta - Jamco - Matt Miller - (417) 935-4004",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-07 22:58:29.608Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hdd2smjx0mc74tj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:48.383Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Freshwater Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Amber",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "fwc417@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "286 Winkle Dr, Hollister",
+ "Job_Codes": "4770 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgA-8FmGmGVdRIjZ9w77N7buAR87XJCLOCyW7IxwYx4QATo",
+ "Job_Full_Name": "Repairs - 286 Winkle Dr, Hollister - Freshwater Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "4770",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4770FX - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "Estimator",
+ "Job_Status": "Est Sent",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 337-0659",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-16 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4770FX - Repairs - 286 Winkle Dr, Hollister - Freshwater Construction - Amber - (417) 337-0659",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-07 22:46:51.453Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1aykrn3tii9wxbr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:48.555Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Horizon Retail Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Peterson",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-14 00:00:00.000Z",
+ "Due_Date_Counter": "7 days",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "gary@teamccon.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Timothy Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1145 E SILER PKWY., SPRINGFIELD, MO 65810, GREENE COUNTY",
+ "Job_Codes": "4769 - Villas at Anthony Park Clubhouse",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgA5qViEtjKdTrn4T9U0ovggAR0ScRD-F6oF34l5e5cJno0",
+ "Job_Full_Name": "Villas at Anthony Park Clubhouse - 1145 E SILER PKWY., SPRINGFIELD, MO 65810, GREENE COUNTY - Horizon Retail Construction",
+ "Job_Name": "Villas at Anthony Park Clubhouse",
+ "Job_Number": "4769",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4769FX - Villas at Anthony Park Clubhouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "Timothy",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Plans are unfinished, have multiple in-plan notes saying so and no walls have specs (listed as needing updates).",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 450-2176",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-02-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4769FX - Villas at Anthony Park Clubhouse - 1145 E SILER PKWY., SPRINGFIELD, MO 65810, GREENE COUNTY - Horizon Retail Construction - Gary Peterson - (417) 450-2176",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-07 16:05:31.952Z",
+ "gantt_Info": null,
+ "gantt_View": true,
+ "id": "klvkvmpmlw1wart",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:57:49.223Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "TLC Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Peterson",
+ "Docs_Uploaded": true,
+ "Due_Date": "2026-01-08 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "0.708333333333333",
+ "EXT": 0,
+ "Email": "gary@teamccon.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Anthony Park",
+ "Job_Codes": "4768 - VAP Clubhouse",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4768%20VAP%20Clubhouse%20-%20Anthony%20Park%20-%20TLC%20Properties?csf=1&web=1&e=BbbEMC",
+ "Job_Full_Name": "VAP Clubhouse - Anthony Park - TLC Properties",
+ "Job_Name": "VAP Clubhouse",
+ "Job_Number": "4768",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4768FX - VAP Clubhouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(417) 450-2176",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "4 (Client Verbal Guess)",
+ "Scope": "",
+ "Start_Date": "2026-08-18 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4768FX - VAP Clubhouse - 2Anthony Park - TLC Properties - Gary Peterson - (417) 450-2176",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-06 22:11:28.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "djvmt0r1kv04v7m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:48.715Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crisp, Lance",
+ "Contact_Notes": "",
+ "Contact_Person": "Lance",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "crispconstructiontrl@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kim City",
+ "Job_Codes": "4767Kimberling City",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4767%20Kimberling%20City,%20Mo%20-%20Crisp,%20Lance?csf=1&web=1&e=7XjtpV",
+ "Job_Full_Name": "Kimberling City, Mo - Crisp, Lance",
+ "Job_Name": "",
+ "Job_Number": "4767",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4767FX Kimberling City",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 337-0256",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-04-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4767FX Kimberling City, Mo - Crisp, Lance - Lance - (417) 337-0256",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-06 21:57:30.225Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qtveaxhpgf5t39g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:48.882Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Kathleen",
+ "Contact_Notes": "",
+ "Contact_Person": "Kathleen",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-09 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "pjsbiker@aol.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "318 Wimbledon Dr., Branson",
+ "Job_Codes": "4766 - Bld 66 unit 10",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4766%20Bld%2066%20unit%2010%20-%20318%20Wimbledon%20Dr.,%20Branson%20-%20Smith,%20Kathleen?csf=1&web=1&e=L1Z67r",
+ "Job_Full_Name": "Bld 66 unit 10 - 318 Wimbledon Dr., Branson - Smith, Kathleen",
+ "Job_Name": "Bld 66 unit 10",
+ "Job_Number": "4766",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4766FX - Bld 66 unit 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "Estimator",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 522-6640",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-15 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4766FX - Bld 66 unit 10 - 318 Wimbledon Dr., Branson - Smith, Kathleen - Kathleen - (417) 522-6640",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-06 21:41:23.376Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ukonfy2ccnzdrmt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:49.050Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Stained Glass Theater",
+ "Contact_Notes": "",
+ "Contact_Person": "Jamie Spanner",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-08 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "boxoffice@sgtheatre.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1996 W Evangel St, Ozark",
+ "Job_Codes": "4765 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4765FX%20-%20Repairs%20Stained%20Glass%20Theater?csf=1&web=1&e=BWL3Mt",
+ "Job_Full_Name": "Repairs - 1996 W Evangel St, Ozark - Stained Glass Theater",
+ "Job_Name": "Repairs",
+ "Job_Number": "4765",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4765FX - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 818-6291",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-12 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4765FX - Repairs - 1996 W Evangel St, Ozark - Stained Glass Theater - Jamie Spanner - (417) 818-6291",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-05 20:28:25.826Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "frzcy93ucgbpof0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:49.204Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Freeway Ministries",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Morales",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-09 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "angelmorales@freeway-ministries.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\"\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4764 - Freeway Rehab - 501 S Broadway Ave, Spfd - Freeway Ministries\"",
+ "Has_Attachments": false,
+ "Job_Address": "501 S Broadway Ave, Spfd",
+ "Job_Codes": "4764 - Freeway Rehab",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4764%20Freeway%20Rehab%20-%20501%20S%20Broadway%20Ave,%20Spfd%20-%20Freeway%20Ministries?csf=1&web=1&e=mcEYqp",
+ "Job_Full_Name": "Freeway Rehab - 501 S Broadway Ave, Spfd - Freeway Ministries",
+ "Job_Name": "Freeway Rehab",
+ "Job_Number": "4764",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4764FX - Freeway Rehab",
+ "Job_Size_Guess": 24000,
+ "Job_Size_Guess_Source": "Estimator",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "I'm guessing it might be tax exempt since it's a ministry.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(402) 738-0951",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-03-23 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": true,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4764FX - Freeway Rehab - 501 S Broadway Ave, Spfd - Freeway Ministries - Angel Morales - (402) 738-0951",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-05 20:06:47.460Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fsjsw9hpjasikc7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 21:58:18.484Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holder, Angie",
+ "Contact_Notes": "",
+ "Contact_Person": "Angie",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-01-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "20749 Lawrence 1240, Marionville",
+ "Job_Codes": "4763 - ",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4764 - Freeway Rehab - 501 S Broadway Ave, Spfd - Freeway Ministries",
+ "Job_Full_Name": "--20749 Lawrence 1240, Marionville - Holder, Angie",
+ "Job_Name": "",
+ "Job_Number": "4763",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4763TM - ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 300-4461",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2025-01-06 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4763TM - - 20749 Lawrence 1240, Marionville - Holder, Angie - Angie - (417) 300-4461",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-05 21:09:18.399Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u07ig885mnu0jbt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:49.534Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "sdf",
+ "Attachment_List": null,
+ "Company_Client": "This Comp",
+ "Contact_Notes": "asd",
+ "Contact_Person": "def",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "0.520833333333333",
+ "EXT": 456,
+ "Email": "email@here",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "(123) 345-6789",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "37.048465, -93.287714",
+ "Job_Codes": "4762 - test2",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgANCCTtks3dTJvOzCE9c7Y3AXnRZN5I64Hp7nd7yyzLLv4",
+ "Job_Full_Name": "test2 - 37.048465, -93.287714 - This Comp",
+ "Job_Name": "test2",
+ "Job_Number": "4762",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4762TM - test2",
+ "Job_Size_Guess": 12321,
+ "Job_Size_Guess_Source": "Rick",
+ "Job_Status": "Archive",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "ad",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(111) 111-1211",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3 (Start Date)",
+ "Scope": "",
+ "Start_Date": "2026-01-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4762TM - test2 - 37.048465, -93.287714 - This Comp - def - (111) 111-1211",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-02 16:44:20.310Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mjsltlo6nfx4qe2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:49.691Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "stuff",
+ "Attachment_List": null,
+ "Company_Client": "abc",
+ "Contact_Notes": "contact notes",
+ "Contact_Person": "def",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "0.375",
+ "EXT": 135,
+ "Email": "1@2",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "(456) 789-4563",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "37.042574, -93.299216",
+ "Job_Codes": "4761 - test job size and source",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgBGhyAA47B1TY1e4beJP7goATtgehXL073mn8bMujClobY",
+ "Job_Full_Name": "test job size and source - 37.042574, -93.299216 - abc",
+ "Job_Name": "test job size and source",
+ "Job_Number": "4761",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4761FX - test job size and source",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "Rick",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "other stuff",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(111) 111-1111",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4761FX - test job size and source - 37.042574, -93.299216 - abc - def - (111) 111-1111",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-02 16:40:29.936Z",
+ "gantt_Info": {
+ "trades": []
+ },
+ "gantt_View": false,
+ "id": "rhsilqihu7vyad0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:58:50.042Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith Construction Company",
+ "Contact_Notes": "",
+ "Contact_Person": "RE Smith Estimator",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-22 00:00:00.000Z",
+ "Due_Date_Counter": "6 days",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "2:00 P.M.",
+ "EXT": 0,
+ "Email": "estimating@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Timothy Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\"\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4760 - MSSU Mayes Hall\"",
+ "Has_Attachments": false,
+ "Job_Address": "3950 NEWMAN ROAD JOPLIN, MO. 64801",
+ "Job_Codes": "4760 - MSSU Mayes Hall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4760 - MSSU Mayes Hall",
+ "Job_Full_Name": "MSSU Mayes Hall - 3950 NEWMAN ROAD JOPLIN, MO. 64801 - RE Smith Construction Company",
+ "Job_Name": "MSSU Mayes Hall",
+ "Job_Number": "4760",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4760FX - MSSU Mayes Hall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 623-4545",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-02-22 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4760FX - MSSU Mayes Hall - 3950 NEWMAN ROAD JOPLIN, MO. 64801 - RE Smith Construction Company - RE Smith Estimator - (417) 623-4545",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-02 16:15:53.094Z",
+ "gantt_Info": null,
+ "gantt_View": true,
+ "id": "nydpy1jmemkg2bg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 16:22:25.619Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "No exit, must use MoJ highway, go right, turn right at N 17th st. follow till destination",
+ "Attachment_List": null,
+ "Company_Client": "My Client",
+ "Contact_Notes": "Special notes for contact, i.e. call Steve at (567) 345-6787 if no answer at main and leave a voice mail.",
+ "Contact_Person": "def",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "0.4375",
+ "EXT": 115,
+ "Email": "pl@me",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "(456) 789-8522",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "37.055466, -93.227009",
+ "Job_Codes": "4759 - Test phone#, address, notes #1",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgDIvC-kFwOFQJUMBr-3VD-cAdu2Uy-YoJA9z9pQKKoZ7cI",
+ "Job_Full_Name": "Test phone#, address, notes #1 - 37.055466, -93.227009 - My Client",
+ "Job_Name": "Test phone#, address, notes #1",
+ "Job_Number": "4759",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4759FX - Test phone#, address, notes #1",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Other helpful information",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(111) 111-1211",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4759FX - Test phone#, address, notes #1 - 37.055466, -93.227009 - My Client - def - (111) 111-1211",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2026-01-02 16:07:27.849Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "frcfz4vwnoipntj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:50.174Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Red Creek",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Hobbs",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-02 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "bradhobbs12@hotmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "174 Johnstown Dr. Rogersville MO 65742",
+ "Job_Codes": "4758 - KFC/ Taco Bell",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "KFC/ Taco Bell - 174 Johnstown Dr. Rogersville MO 65742 - Red Creek",
+ "Job_Name": "KFC/ Taco Bell",
+ "Job_Number": "4758",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4758FX - KFC/ Taco Bell",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-543-2027",
+ "Project_Manager": "Timothy",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "5",
+ "Scope": "",
+ "Start_Date": "2026-01-06 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4758FX - KFC/ Taco Bell - 174 Johnstown Dr. Rogersville MO 65742 - Red Creek - Brad Hobbs - 417-543-2027",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-31 19:45:19.317Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5bix9ubsrv1xr5d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 21:58:11.161Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Turnkey Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Gina Hayes",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "3pm",
+ "EXT": 0,
+ "Email": "gina@1turnkeysolution.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Timothy Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\"\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4757 - Sketchers Tanger\"",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd, Ste 106, Branson, MO 65616.",
+ "Job_Codes": "4757 - Sketchers Tanger Outlet ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4757 - Sketchers Tanger",
+ "Job_Full_Name": "Sketchers Tanger Outlet - 300 Tanger Blvd, Ste 106, Branson, MO 65616. - Turnkey Solutions",
+ "Job_Name": "Sketchers Tanger Outlet ",
+ "Job_Number": "4757",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4757FX - Sketchers Tanger Outlet ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Check for skimming existing walls in the contract",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "C:314-808-7456",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-02-23 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4757FX - Sketchers Tanger Outlet - 300 Tanger Blvd, Ste 106, Branson, MO 65616. - Turnkey Solutions - Gina Hayes - C:314-808-7456",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-30 15:34:05.269Z",
+ "gantt_Info": {
+ "trades": [
+ {
+ "id": "trade-1768668263715-it92frq",
+ "name": "Delivery",
+ "startDate": "2026-01-18",
+ "endDate": "2026-01-24",
+ "scope": ""
+ }
+ ]
+ },
+ "gantt_View": false,
+ "id": "mzedz9hwpgqna85",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 21:58:07.200Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "ABC123",
+ "Contact_Notes": "",
+ "Contact_Person": "Oscar",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-10 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "10pm",
+ "EXT": 117,
+ "Email": "test@full",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 5586.85,
+ "Estimated_End_Date": "2025-12-30 12:00:00.000Z",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "152 Lilac Ln Rogersville, Mo",
+ "Job_Codes": "4756 - Full Info Attachments And Notes Test",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/s/Team/IgCUtQHpvodjTYBCePU8FrGiAVb0XOnoSrD7-fDuATEjXRo",
+ "Job_Full_Name": "Full Info Attachments And Notes Test - 152 Lilac Ln Rogersville, Mo - ABC123",
+ "Job_Name": "Full Info Attachments And Notes Test",
+ "Job_Number": "4756",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4756FX - Full Info Attachments And Notes Test",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 329-1800",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3 (Start Date)",
+ "Scope": "fix cracks, texture to cover",
+ "Start_Date": "2025-12-27 00:00:00.000Z",
+ "Start_Date_Actual": "2025-12-27 12:00:00.000Z",
+ "Start_Date_Expected": "2025-12-27 12:00:00.000Z",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "Cardoza",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4756FX - Full Info Attachments And Notes Test - 152 Lilac Ln Rogersville, Mo - ABC123 - Oscar - (417) 329-1800",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-28 03:37:06.775Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cpb4l2fmtmrotmc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:50.666Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H & H Const",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Hunt",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "kellyh.hhc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Green County",
+ "Job_Codes": "4755 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4755FX%20-%20Garage%20-%20Green%20County%20-%20H%20%26%20H%20Const?csf=1&web=1&e=hOAmBI",
+ "Job_Full_Name": "Garage - Green County - H & H Const",
+ "Job_Name": "Garage",
+ "Job_Number": "4755",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4755FX - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "14172348803",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-06 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4755FX - Garage - Green County - H & H Const - Kelly Hunt - 14172348803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-26 17:04:34.887Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "inip8mfgf0c1dk7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:50.834Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Wyatt@ross2017.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4754 - Maranatha - 5 Plex Addition",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4754FX%20Maranatha%20-%205%20Plex%20Addition%20-Ross%20Construction?csf=1&web=1&e=umdqWo",
+ "Job_Full_Name": "Maranatha - 5 Plex Addition - Ross Construction",
+ "Job_Name": "Maranatha - 5 Plex Addition",
+ "Job_Number": "4754",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4754FX - Maranatha - 5 Plex Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 429-1417 ext. 117",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-06-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4754FX - Maranatha - 5 Plex Addition - - Ross Construction - Wyatt Gann - (417) 429-1417 ext. 117",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-23 20:50:44.203Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ed3djof5hs89evw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:50.994Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hindman, Josh",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh Hindman",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-23 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\"\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4753 - Hindman Ceiling Web City\"",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4753 - Ceiling",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4753 - Hindman Ceiling Web City",
+ "Job_Full_Name": "Ceiling - Hindman, Josh",
+ "Job_Name": "Ceiling",
+ "Job_Number": "4753",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4753FX - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-31 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4753FX - Ceiling - - Hindman, Josh - Josh Hindman - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-22 21:54:23.073Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zfa3zymu5sqitnj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:51.154Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H & H Const",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Hunt",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-09 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "kellyh.hhc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Green County",
+ "Job_Codes": "4752 - Schroff 4 plex",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4752FX%20-%20Schroff%204%20plex%20-%20Green%20County%20-%20H%20%26%20H%20Const?csf=1&web=1&e=6rgRTi",
+ "Job_Full_Name": "Schroff 4 plex - Green County - H & H Const",
+ "Job_Name": "Schroff 4 plex",
+ "Job_Number": "4752",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4752FX - Schroff 4 plex",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 234-8803",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-09-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4752FX - Schroff 4 plex - Green County - H & H Const - Kelly Hunt - (417) 234-8803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-22 16:42:17.223Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t2bh0o45n7drmu7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:51.315Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H & H Const",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Hunt",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-09 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "kellyh.hhc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Green County",
+ "Job_Codes": "4751 - Schroff Duplex",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4751FX%20-%20Schroff%20Duplex%20-%20Green%20County%20-%20H%20%26%20H%20Const?csf=1&web=1&e=JuBdgf",
+ "Job_Full_Name": "Schroff Duplex - Green County - H & H Const",
+ "Job_Name": "Schroff Duplex",
+ "Job_Number": "4751",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4751FX - Schroff Duplex",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 234-8803",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-09-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4751FX - Schroff Duplex - Green County - H & H Const - Kelly Hunt - (417) 234-8803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-22 16:37:02.943Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bwy9phu2apkditj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:51.482Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "abc",
+ "Contact_Notes": "",
+ "Contact_Person": "test",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-31 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "12",
+ "EXT": 0,
+ "Email": "q@z",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "104 this",
+ "Job_Codes": "4750 - Test",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Test - 104 this - abc",
+ "Job_Name": "Test",
+ "Job_Number": "4750",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4750FX - Test",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "12",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "7 (Written Schedule Within 90 Days)",
+ "Scope": "",
+ "Start_Date": "2025-12-24 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4750FX - Test - 104 this - abc - test - 12",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-22 15:53:41.254Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7luicchfuazpqjq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:51.642Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hodge, Cedar",
+ "Contact_Notes": "",
+ "Contact_Person": "Cedar",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-23 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "hodgetruckn@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Buffalo",
+ "Job_Codes": "4749 - -",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4749FX%20%20Buffalo%20(Hodge,%20Cedar)?csf=1&web=1&e=ZuAtzy",
+ "Job_Full_Name": "--Buffalo-Hodge, Cedar",
+ "Job_Name": "-",
+ "Job_Number": "4749",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4749FX - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 733-6164",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-03-24 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4749FX - - - Buffalo - Hodge, Cedar - Cedar - (417) 733-6164",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-19 22:03:19.611Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c41b0p090n5l11x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:51.815Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vallance, Noah",
+ "Contact_Notes": "",
+ "Contact_Person": "Noah ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-23 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "noahvallance@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2707 E Vincent Dr, Spfd",
+ "Job_Codes": "4748 - Ceilings",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceilings - 2707 E Vincent Dr, Spfd - Vallance, Noah",
+ "Job_Name": "Ceilings",
+ "Job_Number": "4748",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4748FX - Ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 414-5861",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-31 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4748FX - Ceilings - 2707 E Vincent Dr, Spfd - Vallance, Noah - Noah - (417) 414-5861",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-17 21:42:59.147Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gpam52gs3qzm5hi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:51.978Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Heather Tucker",
+ "Docs_Uploaded": false,
+ "Due_Date": "2026-01-09 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "heather.tucker@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3013 W Hovey, Spfd",
+ "Job_Codes": "4747 - Improvement",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Improvement - Springfield - JRC",
+ "Job_Name": "Joyce",
+ "Job_Number": "4747",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4747FX - Improvement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 581-5433",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-13 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4747FX - Improvement - Springfield - JRC - Heather Tucker - (417) 581-5433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-17 19:45:35.683Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q3q0pxtd35d59t0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:52.134Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-31 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "dylangett6@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5773 S Trailside Cir W, Spfd",
+ "Job_Codes": "4746 - Owen Silos Clubhouse",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4746%20Owen%20Silos%20Clubhouse%20-%205773%20S%20Trailside%20Cir%20W,%20Spfd%20(King,%20Brad)?csf=1&web=1&e=2Ia4b9",
+ "Job_Full_Name": "Owen Silos Clubhouse - 5773 S Trailside Cir W, Spfd - King, Brad",
+ "Job_Name": "Owen Silos Clubhouse",
+ "Job_Number": "4746",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4746FX - Owen Silos Clubhouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-755-0469",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2026-03-25 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4746FX - Owen Silos Clubhouse - 5773 S Trailside Cir W, Spfd - King, Brad - Dylan - 417-755-0469",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-16 18:48:59.666Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qun44kie6huzsej",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:52.286Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Matye, Kara",
+ "Contact_Notes": "",
+ "Contact_Person": "Kara Matye",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-22 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "esmatye@yahoo.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "355 Juniper Rd, Ozark",
+ "Job_Codes": "4745 - Finish",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 355 Juniper Rd, Ozark - Matye, Kara",
+ "Job_Name": "Finish",
+ "Job_Number": "4745",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4745FX - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(661) 400-5398",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-31 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4745FX - Finish - 355 Juniper Rd, Ozark - Matye, Kara - Kara Matye - (661) 400-5398",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-16 18:40:07.076Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aixfj8s1m4akqsp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-26 20:42:47.724Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Competitive Electric",
+ "Contact_Notes": "",
+ "Contact_Person": "John Corless",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "jcorless80@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4487 Larkwood, Spfd",
+ "Job_Codes": "4744 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 4487 Larkwood, Spfd - Competitive Electric",
+ "Job_Name": "Step thru",
+ "Job_Number": "4744",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4744FX - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 840-0017",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2 (Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4744FX - Step thru - 4487 Larkwood, Spfd - Competitive Electric - John Corless - (417) 840-0017",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-16 18:33:29.047Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "68leuj9dkw7u6el",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:53.942Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "King, Brad",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "46008",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "4743 - Thurman ",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4743%20Thurman%20-Ozark%20(King,%20Brad)?csf=1&web=1&e=NrNk82",
+ "Job_Full_Name": "Thurman - Ozark - King, Brad",
+ "Job_Name": "Thurman ",
+ "Job_Number": "4743",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4743FX - Thurman ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 849-9817",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4743FX - Thurman - Ozark - King, Brad - King, Brad - (417) 849-9817",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.228Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r0hdovffc43xgjm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-26 20:42:47.943Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "North Star Construction",
+ "Contact_Notes": "",
+ "Contact_Person": " Stephanie Bayer",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-12 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "stephanie@northstar.build",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4742 - Christian County Health Department Renovation",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark, MO",
+ "Job_Codes": "4742 - Christian County Health Department Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4742 - Christian County Health Department Renovation",
+ "Job_Full_Name": "Christian County Health Department Renovation - Ozark, MO - North Star Construction",
+ "Job_Name": "Christian County Health Department Renovation",
+ "Job_Number": "4742",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4742PWEX - Christian County Health Department Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-582-0177 PHONE/417-374-0022 FAX ",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-03 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4742PWEX - Christian County Health Department Renovation - Ozark, MO - North Star Construction - Stephanie Bayer - 417-582-0177 PHONE/417-374-0022 FAX ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.293Z",
+ "gantt_Info": {
+ "trades": [
+ {
+ "id": "scope-1768863054389-ve8dcwh",
+ "name": "Tape",
+ "startDate": "2026-03-09",
+ "endDate": "2026-03-23",
+ "scope": "",
+ "tag": "Tape"
+ }
+ ]
+ },
+ "gantt_View": true,
+ "id": "4a6teyxq6ton23v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:51:47.535Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-26 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "2",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Glass Water, Branson",
+ "Job_Codes": "4741 - GW #14",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GW #14 - Glass Water, Branson - Still, Mark",
+ "Job_Name": "GW #14",
+ "Job_Number": "4741",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4741UP - GW #14",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-840-7855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2",
+ "Scope": "",
+ "Start_Date": "2026-01-30 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4741UP - GW #14 - Glass Water, Branson - Still, Mark - Mike Steel - 417-840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.352Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lvfd6tlqzqd4rci",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-27 09:22:48.041Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "5",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Glass Water, Branson",
+ "Job_Codes": "4740 - GW #17",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GW #17 - Glass Water, Branson - Still, Mark",
+ "Job_Name": "GW #17",
+ "Job_Number": "4740",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4740UP - GW #17",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-840-7855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "5",
+ "Scope": "",
+ "Start_Date": "2025-12-16 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4740UP - GW #17 - Glass Water, Branson - Still, Mark - Mike Steel - 417-840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.404Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pwukmq7o0udwc1d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:54.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "5",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4739 - GW #16",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GW #16 - Branson - Still, Mark",
+ "Job_Name": "GW #16",
+ "Job_Number": "4739",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4739UP - GW #16",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-840-7855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "5",
+ "Scope": "",
+ "Start_Date": "2025-12-16 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4739UP - GW #16 - Branson - Still, Mark - Mike Steel - 417-840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.460Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q18mlxn9k9s1lsx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:53.006Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-17 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "4PM",
+ "EXT": 0,
+ "Email": "wyatt@ross2017.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4738 - Early Childhood - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "Blue eye ",
+ "Job_Codes": "4738 - New VO-AG Facility & Early Childhood Addition ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4738 - Early Childhood - Ross",
+ "Job_Full_Name": " New VO-AG Facility & Early Childhood Addition - Blue eye - Ross Construction",
+ "Job_Name": " New VO-AG Facility & Early Childhood Addition ",
+ "Job_Number": "4738",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4738PWEX - New VO-AG Facility & Early Childhood Addition ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 429-1417 x117",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2025-12-27 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4738PWEX - New VO-AG Facility & Early Childhood Addition - Blue eye - Ross Construction - Wyatt Gann - (417) 429-1417 x117",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.520Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "035dvzyapwtv8sr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:53.182Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillan, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "allenmcmillan@aol.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4976 S Eldon St, Spfd",
+ "Job_Codes": "4737 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 4976 S Eldon St, Spfd - McMillan, Allen",
+ "Job_Name": "Patches",
+ "Job_Number": "4737",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4737TM - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 839-2812",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2025-12-12 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4737TM - Patches - 4976 S Eldon St, Spfd - McMillan, Allen - Allen - (417) 839-2812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iqmigo45258auj3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:54.666Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lehman, Teresa",
+ "Contact_Notes": "",
+ "Contact_Person": "Teresa",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "tlehman@tothassocistes.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3530 Welwood Ave, Spfd",
+ "Job_Codes": "4736 - Popcorn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4736FX%20-%20Popcorn%20-%203530%20Welwood%20Ave,%20Spfd%20(Lehman,%20Teresa)?csf=1&web=1&e=hseQW5",
+ "Job_Full_Name": "Popcorn - 3530 Welwood Ave, Spfd - Lehman, Teresa",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4736",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4736FX - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 848-9280",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2025-12-18 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4736FX - Popcorn - 3530 Welwood Ave, Spfd - Lehman, Teresa - Teresa - (417) 848-9280",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.621Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bgxoucnfu2a0hin",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-23 20:42:38.001Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "0.416666666666667",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4735 - New Way Apartments Spfd - Ross Construction",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "4735 - New Way Apartments",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4735 - New Way Apartments Spfd - Ross Construction",
+ "Job_Full_Name": "New Way Apartments - Spfd - Ross Construction",
+ "Job_Name": "New Way Apartments",
+ "Job_Number": "4735",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4735FX - New Way Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 429-1417 x103",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2026-07-28 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4735FX - New Way Apartments - Spfd - Ross Construction - Julie Wallace - (417) 429-1417 x103",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.677Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dq22i72opkd5bpp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:53.494Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-16 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "10am",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4734 - Bus Andrews - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "TBD",
+ "Job_Codes": "4734 - Bus Andrews Truck Equipment ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4734 - Bus Andrews - Ross",
+ "Job_Full_Name": "Bus Andrews Truck Equipment - TBD - Ross Construction",
+ "Job_Name": "Bus Andrews Truck Equipment ",
+ "Job_Number": "4734",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4734FX - Bus Andrews Truck Equipment ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.429.1417",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2026-05-22 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4734FX - Bus Andrews Truck Equipment - TBD - Ross Construction - Julie - 417.429.1417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.728Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t54rra51qja6o03",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:53.654Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Leake, Michael",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "115 Zachary Rd, Rockaway Beach",
+ "Job_Codes": "4733 - -",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4733%20(115%20Zachary%20Rd,%20Rockaway%20Beach)%20Leake,%20Michael?csf=1&web=1&e=4EmJLN",
+ "Job_Full_Name": "- - 115 Zachary Rd, Rockaway Beach - Leake, Michael",
+ "Job_Name": "-",
+ "Job_Number": "4733",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4733FX - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(217-899-0363",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2025-12-15 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4733FX - - - 115 Zachary Rd, Rockaway Beach - Leake, Michael - Michael - (217-899-0363",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.773Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xuxpnwrr4nrwbbp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:55.090Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ash, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Ash",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-03 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Willow Springs",
+ "Job_Codes": "4732 - Rehab",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4732FX%20%20-%20Rehab%20-%20Willow%20Springs%20-%20Ash,%20Mike?csf=1&web=1&e=fVgmND",
+ "Job_Full_Name": "Rehab - Willow Springs - Ash, Mike",
+ "Job_Name": "Rehab",
+ "Job_Number": "4732",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4732FX - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "CO add window wraps",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "-",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "5",
+ "Scope": "",
+ "Start_Date": "2025-12-12 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4732FX - Rehab - Willow Springs - Ash, Mike - Mike Ash - -",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.820Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pbnevw69g6cek3t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-31 05:34:40.182Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4731 - GW 15",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4731UP%20-%20GW%2015%20(Branson)%20Still,%20Mark?csf=1&web=1&e=9ie3S0",
+ "Job_Full_Name": "GW 15 - Branson - Still, Mark",
+ "Job_Name": "GW 15",
+ "Job_Number": "4731",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4731UP - GW 15",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 840-7855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2025-12-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4731UP - GW 15 - Branson - Still, Mark - Mike Steel - (417) 840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.884Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s66gez63et0cwlp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:53.991Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hambey",
+ "Contact_Notes": "",
+ "Contact_Person": "Cameron Stanton",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-04 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "cameron@hambeyconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4730 - Oakstar Bank - Hambey",
+ "Has_Attachments": false,
+ "Job_Address": "1301 N. Main Mountain Grove MO 65711",
+ "Job_Codes": "4730 - Oakstar Bank ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4730 - Oakstar Bank - Hambey",
+ "Job_Full_Name": "Oakstar Bank - 1301 N. Main Mountain Grove MO 65711 - Hambey",
+ "Job_Name": "Oakstar Bank ",
+ "Job_Number": "4730",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4730FX - Oakstar Bank ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.830.4387",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2026-01-08 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4730FX - Oakstar Bank - 1301 N. Main Mountain Grove MO 65711 - Hambey - Cameron Stanton - 417.830.4387",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.944Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tufmfxc2ljxf7bs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 21:57:57.040Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nagel, Joe",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Moul",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "joenagel.40@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1901 Quail Ln, Nixa",
+ "Job_Codes": "4729 - Kitchen",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4729%20Nagel,%20Joe%20Kitchen%20(1901%20Quail%20Ln,%20Nixa)?csf=1&web=1&e=cvtCph",
+ "Job_Full_Name": "Kitchen - 1901 Quail Ln, Nixa - Nagel, Joe",
+ "Job_Name": "Kitchen",
+ "Job_Number": "4729",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4729FX - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(816) 682-9007",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "6",
+ "Scope": "",
+ "Start_Date": "2025-12-04 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4729FX - Kitchen - 1901 Quail Ln, Nixa - Nagel, Joe - Jim Moul - (816) 682-9007",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:18.996Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k5et0iq8tsbnh98",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:54.323Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4728 - GW 19",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GW 19 - Branson - Still, Mark",
+ "Job_Name": "GW 19",
+ "Job_Number": "4728",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4728UP - GW 19",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "-",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4728UP - GW 19 - Branson - Still, Mark - Mike Steel - -",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.048Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vu5pme5hh79j6ag",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-30 19:55:37.717Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nienhueser, Paula",
+ "Contact_Notes": "",
+ "Contact_Person": "Paula Nienhueser",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "Pctaylor1961@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "718 S Mumford Cir, Spfd",
+ "Job_Codes": "4727 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 718 S Mumford Cir, Spfd - Nienhueser, Paula",
+ "Job_Name": "Water damage",
+ "Job_Number": "4727",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4727TM - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(573) 525-8808",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3",
+ "Scope": "",
+ "Start_Date": "2025-12-04 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4727TM - Water damage - 718 S Mumford Cir, Spfd - Nienhueser, Paula - Paula Nienhueser - (573) 525-8808",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.109Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "39wpqabd7325rou",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-30 21:10:38.183Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "OMH",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "ozarkmountainhomes@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Airport Rd, Branson",
+ "Job_Codes": "4726 - -",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4726%20Airport%20Rd,%20Branson%20(Ozark%20Mountain%20Homes)?csf=1&web=1&e=mGyT7X",
+ "Job_Full_Name": "- - Airport Rd, Branson - OMH",
+ "Job_Name": "-",
+ "Job_Number": "4726",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4726FX - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 699-1303",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "4 (Client Verbal Guess)",
+ "Scope": "",
+ "Start_Date": "2026-05-28 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4726FX - - - Airport Rd, Branson - OMH - David Herd - (417) 699-1303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.156Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ode0o39hafnnbds",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:56.010Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Haley, Matt",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Haley",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-20 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "matt.haley10@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1293 E O'Gorman, Spfd",
+ "Job_Codes": "4725 - Cracks",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 1293 E O'Gorman, Spfd - Haley, Matt",
+ "Job_Name": "Cracks",
+ "Job_Number": "4725",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4725FX - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 209-0616",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4725FX - Cracks - 1293 E O'Gorman, Spfd - Haley, Matt - Matt Haley - (417) 209-0616",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.208Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6bmjnibxu0v14sy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:56.134Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lilly, Jessica",
+ "Contact_Notes": "",
+ "Contact_Person": "Jessica Lilly",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-21 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "-",
+ "Job_Codes": "4724 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - - - Lilly, Jessica",
+ "Job_Name": "Step thru",
+ "Job_Number": "4724",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4724FX - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "They did it themselves before sending photos",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 893-8921",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4724FX - Step thru - - - Lilly, Jessica - Jessica Lilly - (417) 893-8921",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.260Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7q8zlg4kmde0rjh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:56.230Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "luxeconstructionmo@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Grandridge Estates, Nixa",
+ "Job_Codes": "4723 - Beasley",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4723%20Beasley%20-%20Grandridge%20Estates,%20Nixa%20(Luxe%20Construction)?csf=1&web=1&e=zWcot0",
+ "Job_Full_Name": "Beasley - Grandridge Estates, Nixa - Luxe Construction",
+ "Job_Name": "Beasley",
+ "Job_Number": "4723",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4723FX - Beasley",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Ground isn’t broken on it so rough numbers for owner. Go with square corners and wrapped windows. This is just the beginning stage so go higher than it will be.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 8729055",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-05-29 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4723FX - Beasley - Grandridge Estates, Nixa - Luxe Construction - Brittany Haik - (417) 8729055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.309Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xymsyrfhmmf2yub",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:17.910Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4722 - Deppe - Polk Co. (Concept2Completion)",
+ "Has_Attachments": false,
+ "Job_Address": "Polk Co.",
+ "Job_Codes": "4722 - Deppe",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4722%20%20-%20Deppe%20-%20Polk%20Co.%20(Concept2Completion)?csf=1&web=1&e=1rGQHr",
+ "Job_Full_Name": "Deppe - Polk Co. - Concept2Completion",
+ "Job_Name": "Deppe",
+ "Job_Number": "4722",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4722FX - Deppe",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 224-2994",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-02-25 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4722FX - Deppe - Polk Co. - Concept2Completion - Tim Schwenke - (417) 224-2994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.368Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lflkynsj27wp98x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:18.038Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Signature Home Comfort",
+ "Contact_Notes": "",
+ "Contact_Person": "Occupant Linda Carr for scheduling",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "Sales@signaturehomecomfort.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "916 N Weller Ave",
+ "Job_Codes": "4721 - Repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 916 N Weller Ave - Signature Home Comfort",
+ "Job_Name": "Repair",
+ "Job_Number": "4721",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4721TM - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "636-980-7128",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4721TM - Repair - 916 N Weller Ave - Signature Home Comfort - Occupant Linda Carr for scheduling - 636-980-7128",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.424Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ugrr73hb2avw5ed",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:55.023Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken Kroll",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "kkroll@construct-com.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rogersville",
+ "Job_Codes": "4720 - Morris Shop Office",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Morris Shop Office - Rogersville - Construct",
+ "Job_Name": "Morris Shop Office",
+ "Job_Number": "4720",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4720FX - Morris Shop Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(573) 529-6601",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-06 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4720FX - Morris Shop Office - Rogersville - Construct - Ken Kroll - (573) 529-6601",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.488Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cd9bbda9zkid0iu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:56.683Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Newell, Janessa",
+ "Contact_Notes": "",
+ "Contact_Person": "Janessa",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-21 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "24255 New Willow Dr, Lebanon",
+ "Job_Codes": "4719 - Attic",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4719%20Newell,%20Janessa%20Attic(24255%20New%20Willow,%20Lebanon)?csf=1&web=1&e=Oxe2RP",
+ "Job_Full_Name": "Attic - 24255 New Willow Dr, Lebanon - Newell, Janessa",
+ "Job_Name": "Attic",
+ "Job_Number": "4719",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4719FX - Attic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 664-2334",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-27 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4719FX - Attic - 24255 New Willow Dr, Lebanon - Newell, Janessa - Janessa - (417) 664-2334",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.544Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e9da8j8pfu4tcsm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:55.267Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "OMH",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-19 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Emory Creek Blvd, Branson",
+ "Job_Codes": "4718 - Joy",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4718%20Joy%20-%20Emory%20Creek%20Blvd,%20Branson%20(OMH)?csf=1&web=1&e=UvzKGo",
+ "Job_Full_Name": "Joy - Emory Creek Blvd, Branson - OMH",
+ "Job_Name": "Joy",
+ "Job_Number": "4718",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4718FX - Joy",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 699-1303",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2",
+ "Scope": "",
+ "Start_Date": "2026-06-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4718FX - Joy - Emory Creek Blvd, Branson - OMH - David Herd - (417) 699-1303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.600Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oin3ea5i30eyrgs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:56.899Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "OMH",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-19 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Sunset Cove, Branson",
+ "Job_Codes": "4717 - Shellack",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4717%20Shellack%20-%20Sunset%20Cove,%20Branson%20(OMH)?csf=1&web=1&e=E2oKBr",
+ "Job_Full_Name": "Shellack - Sunset Cove, Branson - OMH",
+ "Job_Name": "Shellack",
+ "Job_Number": "4717",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4717FX - Shellack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 699-1303",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3",
+ "Scope": "",
+ "Start_Date": "2026-05-18 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4717FX - Shellack - Sunset Cove, Branson - OMH - David Herd - (417) 699-1303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.664Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "88kx0jjvppd84ql",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:57.075Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-12-03 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "TBD",
+ "EXT": 0,
+ "Email": "blahr@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4716 - Kenworth of Springfield",
+ "Has_Attachments": false,
+ "Job_Address": "5400 E. Bucees Blvd. Spfd 65803",
+ "Job_Codes": "4716 - Kenworth of Springfield ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4716 - Kenworth of Springfield",
+ "Job_Full_Name": "Kenworth of Springfield - 5400 E. Bucees Blvd. Spfd 65803 - Killian Construction Co.",
+ "Job_Name": "Kenworth of Springfield ",
+ "Job_Number": "4716",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4716FX - Kenworth of Springfield ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-520-3263",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-03 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4716FX - Kenworth of Springfield - 5400 E. Bucees Blvd. Spfd 65803 - Killian Construction Co. - Blake Lahr - 417-520-3263",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.708Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nys20alog5d2xab",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:55.586Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Limitless Church Nixa",
+ "Contact_Notes": "",
+ "Contact_Person": "Pastor Stone Moss (Megan is his assistant)",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "0.416666666666667",
+ "EXT": 0,
+ "Email": "N/A",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4715 - Limitless Church",
+ "Has_Attachments": false,
+ "Job_Address": "400 Northview Rd. Nixa MO",
+ "Job_Codes": "4715 - Limitless Church ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4715 - Limitless Church",
+ "Job_Full_Name": "Limitless Church - 400 Northview Rd. Nixa MO - Limitless Church Nixa",
+ "Job_Name": "Limitless Church ",
+ "Job_Number": "4715",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4715FXEX - Limitless Church ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "On Hold",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9189950481",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-13 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4715FXEX - Limitless Church - 400 Northview Rd. Nixa MO - Limitless Church Nixa - Pastor Stone Moss (Megan is his assistant) - 9189950481",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.756Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tjf6ztra7ejauia",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:55.790Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "brayden@ogconstruct.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3535 E Cherokee St, Spfd",
+ "Job_Codes": "4714 - Glendale Gardens",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Glendale Gardens - 3535 E Cherokee St, Spfd - Oak Grove Construction",
+ "Job_Name": "Glendale Gardens",
+ "Job_Number": "4714",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4714FX - Glendale Gardens",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.887.5465",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "6",
+ "Scope": "",
+ "Start_Date": "2025-11-19 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4714FX - Glendale Gardens - 3535 E Cherokee St, Spfd - Oak Grove Construction - Brayden - 417.887.5465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.809Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v7c3nwm4vdt0el7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:55.938Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hill, Greg",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Hill",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-18 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "-",
+ "Job_Codes": "4713 - House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "House - - - Hill, Greg",
+ "Job_Name": "House",
+ "Job_Number": "4713",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4713FX - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Waiting for plans 11/11/25",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "-",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "4 (Client Verbal Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-31 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4713FX - House - - - Hill, Greg - Greg Hill - -",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.860Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pw9vy8iha5ithym",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:57.538Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "OMH",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "ozarkmountainhomes@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4712 - Humphreys - 602 Sunset Rd, Branson (OMH)",
+ "Has_Attachments": false,
+ "Job_Address": "602 Sunset Rd, Branson",
+ "Job_Codes": "4712 - Humphreys",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4712%20%20-%20Humphreys%20-%20602%20Sunset%20Rd,%20Branson%20(OMH)?csf=1&web=1&e=lRuHc3",
+ "Job_Full_Name": "Humphreys - 602 Sunset Rd, Branson - OMH",
+ "Job_Name": "Humphreys",
+ "Job_Number": "4712",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4712FX - Humphreys",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 699-1303",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-05-04 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4712FX - Humphreys - 602 Sunset Rd, Branson - OMH - David Herd - (417) 699-1303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:19.940Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mauaoi9mctp4vie",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-16 16:22:55.687Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "brayden@ogconstruct.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2405 E Cottage Blvd, Ozark",
+ "Job_Codes": "4711 - Carriage House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4711%20Carriage%20House%20(Oak%20Grove%20Construction)?csf=1&web=1&e=VCaUDp",
+ "Job_Full_Name": "Carriage House - 2405 E Cottage Blvd, Ozark - Oak Grove Construction",
+ "Job_Name": "Carriage House",
+ "Job_Number": "4711",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4711FX - Carriage House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 887-5465",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-12-05 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4711FX - Carriage House - 2405 E Cottage Blvd, Ozark - Oak Grove Construction - Brayden - (417) 887-5465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.005Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xdmn0fywwj1u3kz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:57.782Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lenard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Steven",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "385 Jones Rd, Ozark",
+ "Job_Codes": "4710 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 385 Jones Rd, Ozark - Lenard Properties",
+ "Job_Name": "Repairs",
+ "Job_Number": "4710",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4710FX - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 725-2125",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-24 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4710FX - Repairs - 385 Jones Rd, Ozark - Lenard Properties - Steven - (417) 725-2125",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.052Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j6wb8n6z5h2lkqx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-30 20:30:37.954Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Logan Pass Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy Rogers ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "rrogers@lpc-us.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4709 - Verizon - Logan Pass Const",
+ "Has_Attachments": false,
+ "Job_Address": "3330 East Montclair St. Spfd MO 65804",
+ "Job_Codes": "4709 - Verizon",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4709 - Verizon - Logan Pass Const",
+ "Job_Full_Name": "Verizon - 3330 East Montclair St. Spfd MO 65804 - Logan Pass Construction",
+ "Job_Name": "Verizon",
+ "Job_Number": "4709",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4709FX - Verizon",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "682-224-9043",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2",
+ "Scope": "",
+ "Start_Date": "2025-11-13 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4709FX - Verizon - 3330 East Montclair St. Spfd MO 65804 - Logan Pass Construction - Randy Rogers - 682-224-9043",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.107Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nnchxchep4yq1r9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:56.403Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "J.E. Foster Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "N/A",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-21 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "0.5625",
+ "EXT": 0,
+ "Email": "estimating@oaklineconstructiongroup.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4708 - Dobbs",
+ "Has_Attachments": false,
+ "Job_Address": "1500 West Kearney Spfd MO 65803",
+ "Job_Codes": "4708 - Dobbs ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4708 - Dobbs",
+ "Job_Full_Name": "Dobbs - 1500 West Kearney Spfd MO 65803 - J.E. Foster Construction",
+ "Job_Name": "Dobbs ",
+ "Job_Number": "4708",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4708FX - Dobbs ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": " +1 314-528-2295",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-08 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4708FX - Dobbs - 1500 West Kearney Spfd MO 65803 - J.E. Foster Construction - N/A - +1 314-528-2295",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.164Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f6xnjgvwmg1kum6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:56.558Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-20 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "12",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4707 - New Building - Nabholz",
+ "Has_Attachments": false,
+ "Job_Address": "1936 East Saint Louis Street, Springfield, MO 65802",
+ "Job_Codes": "4707 - Springfield Office Building ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4707 - New Building - Nabholz",
+ "Job_Full_Name": "Springfield Office Building - 1936 East Saint Louis Street, Springfield, MO 65802 - Nabholz",
+ "Job_Name": "Springfield Office Building ",
+ "Job_Number": "4707",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4707FX - Springfield Office Building ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "1 417-450-6018 • +1 417-402-9693",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2",
+ "Scope": "",
+ "Start_Date": "2026-03-17 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4707FX - Springfield Office Building - 1936 East Saint Louis Street, Springfield, MO 65802 - Nabholz - Jarrett Sims - 1 417-450-6018 • +1 417-402-9693",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.216Z",
+ "gantt_Info": {
+ "trades": [
+ {
+ "endDate": "2026-05-20",
+ "id": "scope-1768839243413-5wigi5n",
+ "name": "Framing",
+ "scope": "",
+ "startDate": "2026-04-20",
+ "tag": "Ext Framing"
+ },
+ {
+ "endDate": "2026-06-19",
+ "id": "scope-1768840378172-aegklfo",
+ "name": "Framing",
+ "scope": "",
+ "startDate": "2026-06-08",
+ "tag": "Int Framing"
+ },
+ {
+ "endDate": "2026-07-27",
+ "id": "scope-1768859327240-mtajkhh",
+ "name": "Hanging",
+ "scope": "",
+ "startDate": "2026-06-22",
+ "tag": "Drywall"
+ },
+ {
+ "endDate": "2026-08-05",
+ "id": "scope-1768859720573-lhvcqdt",
+ "name": "Grid and tile",
+ "scope": "",
+ "startDate": "2026-07-09",
+ "tag": "Grid and Acoustical"
+ }
+ ]
+ },
+ "gantt_View": true,
+ "id": "nyffamaoce4p7ql",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 22:08:46.554Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tru North ",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Seifried",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-12 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "12pm",
+ "EXT": 0,
+ "Email": "Email: julies@TrueNorthGC.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4706 - Kids Dental - Tru North",
+ "Has_Attachments": false,
+ "Job_Address": "Joplin MO",
+ "Job_Codes": "4706 - Kids Dental ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4706 - Kids Dental - Tru North",
+ "Job_Full_Name": "Kids Dental - Joplin MO - Tru North ",
+ "Job_Name": "Kids Dental ",
+ "Job_Number": "4706",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4706FX - Kids Dental ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "Mobile: 636-317-8150",
+ "Project_Manager": "Steve",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3",
+ "Scope": "",
+ "Start_Date": "2025-11-24 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4706FX - Kids Dental - Joplin MO - Tru North - Julie Seifried - Mobile: 636-317-8150",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oori9xtai0mglid",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-20 14:36:58.243Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "dusty@essickbuilders.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "4705 - Foumal Addition",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4705%20Foumal%20Addition%20-%20Ozark%20(Essick,%20Dusty)?csf=1&web=1&e=VyI8hc",
+ "Job_Full_Name": "Foumal Addition - Ozark - Essick, Dusty",
+ "Job_Name": "Foumal Addition",
+ "Job_Number": "4705",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4705FX - Foumal Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 860-1127",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2026-01-05 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4705FX - Foumal Addition - Ozark - Essick, Dusty - Dusty - (417) 860-1127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.337Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9otj0c4ichc7iwq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:58.491Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hashagen, Christie",
+ "Contact_Notes": "",
+ "Contact_Person": "Christie",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1001 W Sycamore St, Spfd",
+ "Job_Codes": "4704 - Cracks",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 1001 W Sycamore St, Spfd - Hashagen, Christie",
+ "Job_Name": "Cracks",
+ "Job_Number": "4704",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4704FX - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 849-3329",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "2",
+ "Scope": "",
+ "Start_Date": "2025-11-21 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4704FX - Cracks - 1001 W Sycamore St, Spfd - Hashagen, Christie - Christie - (417) 849-3329",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.397Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3v77v4h5rb621oc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-30 20:10:39.373Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "645 S Caden Pl, Fair Grove",
+ "Job_Codes": "4703 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 645 S Caden Pl, Fair Grove - Luxe Construction",
+ "Job_Name": "Patches",
+ "Job_Number": "4703",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4703TM - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4703TM - Patches - 645 S Caden Pl, Fair Grove - Luxe Construction - Brittany - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.445Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r0j58zl60asumpb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:58.754Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "287 N Elm St, Marshfield",
+ "Job_Codes": "4702 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 287 N Elm St, Marshfield - Luxe Construction",
+ "Job_Name": "Patches",
+ "Job_Number": "4702",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4702FX - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4702FX - Patches - 287 N Elm St, Marshfield - Luxe Construction - Brittany Haik - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.497Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yhyo7ckz8fkyevi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:58.883Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1110 Turnberry Blvd, Ozark",
+ "Job_Codes": "4701 - Telephone patch",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Telephone patch - 1110 Turnberry Blvd, Ozark - Luxe Construction",
+ "Job_Name": "Telephone patch",
+ "Job_Number": "4701",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4701TM - Telephone patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4701TM - Telephone patch - 1110 Turnberry Blvd, Ozark - Luxe Construction - Brittany Haik - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.552Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c3dat46k3pxt42i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:58.994Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "luxeconstructionmo@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5492 S Faust Ave, Spfd",
+ "Job_Codes": "4700 - Doorways",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Doorways - 5492 S Faust Ave, Spfd - Luxe Construction",
+ "Job_Name": "Doorways",
+ "Job_Number": "4700",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4700FX - Doorways",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4700FX - Doorways - 5492 S Faust Ave, Spfd - Luxe Construction - Brittany Haik - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.617Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j58pxs9h7sjrql2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.103Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Beck, Fred",
+ "Contact_Notes": "",
+ "Contact_Person": "Fred Beck",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "flb1191@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3977 S FR 93, Republic",
+ "Job_Codes": "4699 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 3977 S FR 93, Republic - Beck, Fred",
+ "Job_Name": "Garage",
+ "Job_Number": "4699",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4699FX - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "-",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4699FX - Garage - 3977 S FR 93, Republic - Beck, Fred - Fred Beck - -",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.673Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uc04vc8bfwxgxvx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.210Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mayo, James & Samantha",
+ "Contact_Notes": "",
+ "Contact_Person": "-",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "james.sam.mayo@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "986 Sycamore Ave, Spfd",
+ "Job_Codes": "4698 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 986 Sycamore Ave, Spfd - Mayo, James & Samantha",
+ "Job_Name": "Water damage",
+ "Job_Number": "4698",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4698FX - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(501) 350-1540",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-20 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4698FX - Water damage - 986 Sycamore Ave, Spfd - Mayo, James & Samantha - - - (501) 350-1540",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.720Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u2n4mq58n37f2i0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.327Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI & C&R Drywall",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-05 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "N/A",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark ",
+ "Job_Codes": "4697 - KCI & C&R Drywall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "KCI & C&R Drywall - Ozark - KCI & C&R Drywall",
+ "Job_Name": "KCI & C&R Drywall",
+ "Job_Number": "4697",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4697TM - KCI & C&R Drywall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "N/A",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-05 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4697TM - KCI & C&R Drywall - Ozark - KCI & C&R Drywall - Brady Bowen - N/A",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.764Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "btvd42pqs01kcdh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.430Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "GoForth Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-12 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "-",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4696 - SMMN - GoForth Const",
+ "Has_Attachments": false,
+ "Job_Address": "528 W Battlefield Rd, Spfd",
+ "Job_Codes": "4696 - AG Offices",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4696 - SMMN - GoForth Const",
+ "Job_Full_Name": "AG Offices - 528 W Battlefield Rd, Spfd - GoForth Construction",
+ "Job_Name": "AG Offices",
+ "Job_Number": "4696",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4696FXEX - AG Offices",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 307-5803",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-19 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4696FXEX - AG Offices - 528 W Battlefield Rd, Spfd - GoForth Construction - Mike - (417) 307-5803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.820Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ma0hvovnyoc2f13",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:57.724Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harper",
+ "Contact_Notes": "",
+ "Contact_Person": "Harper",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Guess",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "yharperr19@gmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1924 S Virginia Ave, Spfd",
+ "Job_Codes": "4695 - Repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 1924 S Virginia Ave, Spfd - Harper",
+ "Job_Name": "Repair",
+ "Job_Number": "4695",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4695FX - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(626) 755-9805",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "1 (Total Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-18 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4695FX - Repair - 1924 S Virginia Ave, Spfd - Harper - Harper - (626) 755-9805",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.864Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "arjh8opultzunqc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.671Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove ",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden Whiteside ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-04 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "n",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "900 East Battlefield Rd. Ste 11",
+ "Job_Codes": "4694 - Marcus Johnson ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Marcus Johnson - 900 East Battlefield Rd. Ste 11 - Oakgrove ",
+ "Job_Name": "Marcus Johnson ",
+ "Job_Number": "4694",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4694FX - Marcus Johnson ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "n",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "5",
+ "Scope": "",
+ "Start_Date": "2025-11-04 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4694FX - Marcus Johnson - 900 East Battlefield Rd. Ste 11 - Oakgrove - Brayden Whiteside - n",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.923Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1hrwg5w94c2vco7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.787Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove ",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden Whiteside",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-04 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "Requested",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "N/A",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1839 E. Independence Unit U ",
+ "Job_Codes": "4693 - Credit Central ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Credit Central - 1839 E. Independence Unit U - Oak Grove ",
+ "Job_Name": "Credit Central ",
+ "Job_Number": "4693",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4693FX - Credit Central ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "N?A",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "6",
+ "Scope": "",
+ "Start_Date": "2025-11-13 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4693FX - Credit Central - 1839 E. Independence Unit U - Oak Grove - Brayden Whiteside - N?A",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:20.983Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kejwr4ak9h2ug94",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:01:59.895Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-10 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "Start Date",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "550 Shady Maple Dr, Blue Eye",
+ "Job_Codes": "4692 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4692%20Still,%20Mark%20Remodel%20(Blue%20Eye)?csf=1&web=1&e=VvbLtf",
+ "Job_Full_Name": "Remodel - 550 Shady Maple Dr, Blue Eye - Still, Mark",
+ "Job_Name": "Remodel",
+ "Job_Number": "4692",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4692UP - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 840-7855",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "4 (Client Verbal Guess)",
+ "Scope": "",
+ "Start_Date": "2025-11-11 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4692UP - Remodel - 550 Shady Maple Dr, Blue Eye - Still, Mark - Mike Steel - (417) 840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.033Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sc2hkrn8od7s8q8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:58.111Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-10 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "burnetthomes@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "?",
+ "Job_Codes": "4691 - Burke",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4691%20Burke%20Residence%20(Burnett%20Homes)?csf=1&web=1&e=NIJWRD",
+ "Job_Full_Name": "Burke - ? - Burnett Homes",
+ "Job_Name": "Burke",
+ "Job_Number": "4691",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4691FX - Burke",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(636) 299-1362",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4691FX - Burke - ? - Burnett Homes - Jerry Burnett - (636) 299-1362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nj7g4d38yp7t6kt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.130Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3993 E Dunrobin St, Spfd",
+ "Job_Codes": "4690 - Nuckolls",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4690%20Nuckolls%203993%20E%20Dunrobin%20St,%20Spfd%20(Weber)?csf=1&web=1&e=dfQamG",
+ "Job_Full_Name": "Nuckolls - 3993 E Dunrobin St, Spfd - Weber",
+ "Job_Name": "Nuckolls",
+ "Job_Number": "4690",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4690FX - Nuckolls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(417) 830-2424",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4690FX - Nuckolls - 3993 E Dunrobin St, Spfd - Weber - Bryon Weber - (417) 830-2424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.128Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dfrwawub7d5twb9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.243Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brokate Janitorial",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Frans ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-04 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "N/A",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "222 S. John Q Hammons Pkwy Spfd",
+ "Job_Codes": "4689 - Brokate Janitorial Federal Court House ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Brokate Janitorial Federal Court House - 222 S. John Q Hammons Pkwy Spfd - Brokate Janitorial",
+ "Job_Name": "Brokate Janitorial Federal Court House ",
+ "Job_Number": "4689",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4689FX - Brokate Janitorial Federal Court House ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-294-0483",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4689FX - Brokate Janitorial Federal Court House - 222 S. John Q Hammons Pkwy Spfd - Brokate Janitorial - Jason Frans - 417-294-0483",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.184Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3se3ravvw6ki2zs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.367Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-06 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "luxeconstructionmo@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "-",
+ "Job_Codes": "4688 - Burnout",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Burnout - - - Luxe Construction",
+ "Job_Name": "Burnout",
+ "Job_Number": "4688",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4688FX - Burnout",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4688FX - Burnout - - - Luxe Construction - Brittany Haik - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.248Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hepfvr2q88aqnb3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.479Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Swindle, Tresa",
+ "Contact_Notes": "",
+ "Contact_Person": "Tresa Swindle ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3475 S Welwood Ave, Spfd",
+ "Job_Codes": "4687 - Popcorn Scrape",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn Scrape - 3475 S Welwood Ave, Spfd - Swindle, Tresa",
+ "Job_Name": "Popcorn Scrape",
+ "Job_Number": "4687",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4687FX - Popcorn Scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 860-7153",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4687FX - Popcorn Scrape - 3475 S Welwood Ave, Spfd - Swindle, Tresa - Tresa Swindle - (417) 860-7153",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tvtpi3crut1tndp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.603Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wilkins, Dillon",
+ "Contact_Notes": "",
+ "Contact_Person": "Dillon Wilkins",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-06 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "dirtbike2200@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Johnson Rd, Sparta",
+ "Job_Codes": "4686 - House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4686FX%20Sparta%20(Wilkins,%20Dillon)?csf=1&web=1&e=SGMdoa",
+ "Job_Full_Name": "House - Johnson Rd, Sparta - Wilkins, Dillon",
+ "Job_Name": "House",
+ "Job_Number": "4686",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4686FX - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 353-6494",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4686FX - House - Johnson Rd, Sparta - Wilkins, Dillon - Dillon Wilkins - (417) 353-6494",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.348Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "khllh4tndqo6e93",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.723Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H&H Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Hunt",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-04 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "kellyh.hhc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4685 - Helitech Company - H&H",
+ "Has_Attachments": false,
+ "Job_Address": "1549 North O",
+ "Job_Codes": "4685 - Helitech Company",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4685 - Helitech Company - H&H",
+ "Job_Full_Name": "Helitech Company - 1549 North O - H&H Construction",
+ "Job_Name": "Helitech Company",
+ "Job_Number": "4685",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4685FX - Helitech Company",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "417-234-8803",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4685FX - Helitech Company - 1549 North O - H&H Construction - Kelly Hunt - 417-234-8803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.396Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "62u00tncq8bnvrb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:58.620Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bread of Life Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Toliy Petrovskiy",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-30 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.5",
+ "EXT": 0,
+ "Email": "N/A",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1747 E. Republic RD Springfield ",
+ "Job_Codes": "4684 - Bread of LIfe ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bread of LIfe - 1747 E. Republic RD Springfield - Bread of Life Church",
+ "Job_Name": "Bread of LIfe ",
+ "Job_Number": "4684",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4684FX - Bread of LIfe ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "417-224-225-0095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4684FX - Bread of LIfe - 1747 E. Republic RD Springfield - Bread of Life Church - Toliy Petrovskiy - 417-224-225-0095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.452Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7fdftmovlvzb66f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:00.963Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "luxeconstructionmo@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "110 N Fort St, Nixa",
+ "Job_Codes": "4683 - Patch",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4683FX%20%20-%20Patch%20-%20110%20N%20Fort%20St,%20Nixa%20-%20Luxe%20Construction?csf=1&web=1&e=CSHMep",
+ "Job_Full_Name": "Patch - 110 N Fort St, Nixa - Luxe Construction",
+ "Job_Name": "Patch",
+ "Job_Number": "4683",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4683FX - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4683FX - Patch - 110 N Fort St, Nixa - Luxe Construction - Brittany Haik - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vzajvekwf97gldk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:01.071Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Petrovskiy, Toliy",
+ "Contact_Notes": "",
+ "Contact_Person": "Toliy Petrovskiy",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-31 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4682 - Bread of Life - Petrovskiy, Toliy",
+ "Has_Attachments": false,
+ "Job_Address": "1747 E Republic Rd, Spfd",
+ "Job_Codes": "4682 - Bread of Life Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4682 - Bread of Life - Petrovskiy, Toliy",
+ "Job_Full_Name": "Bread of Life Church - 1747 E Republic Rd, Spfd - Petrovskiy, Toliy",
+ "Job_Name": "Bread of Life Church",
+ "Job_Number": "4682",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4682FXEX - Bread of Life Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "I don't actually know when it's due - BC 10/28",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(417) 225-0095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4682FXEX - Bread of Life Church - 1747 E Republic Rd, Spfd - Petrovskiy, Toliy - Toliy Petrovskiy - (417) 225-0095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.568Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "km9s5e7npbigfka",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:58.919Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Innovative Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Baise Erker",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "berker@iciofamerica.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1295 Estate Dr, Ridgedale",
+ "Job_Codes": "4681 - Big Cedar Reno",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Big Cedar Reno - 1295 Estate Dr, Ridgedale - Innovative Construction",
+ "Job_Name": "Big Cedar Reno",
+ "Job_Number": "4681",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4681FX - Big Cedar Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Never got to this one and they haven't contacted us again.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(401-862-1076",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4681FX - Big Cedar Reno - 1295 Estate Dr, Ridgedale - Innovative Construction - Baise Erker - (401-862-1076",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.612Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "trj5iuj377fjbsp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:01.342Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-11-10 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "scunningham@construct-com.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4680 - Access Dental - Construct",
+ "Has_Attachments": false,
+ "Job_Address": "445 US Hwy 60 Republic",
+ "Job_Codes": "4680 - Access Dental Republic MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4680 - Access Dental - Construct",
+ "Job_Full_Name": "Access Dental Republic MO - 445 US Hwy 60 Republic - Construct",
+ "Job_Name": "Access Dental Republic MO",
+ "Job_Number": "4680",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4680FX - Access Dental Republic MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "573-590-2828",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4680FX - Access Dental Republic MO - 445 US Hwy 60 Republic - Construct - Seth Cunningham - 573-590-2828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.659Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "snqpuhic4pv1yd1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:59.116Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Guilliams",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-27 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "12pm",
+ "EXT": 0,
+ "Email": "steve@ross2017>com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "804 West Catalpa St. Spfd",
+ "Job_Codes": "4679 - B&GC Repair ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "B&GC Repair - 804 West Catalpa St. Spfd - Ross Construction",
+ "Job_Name": "B&GC Repair ",
+ "Job_Number": "4679",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4679FX - B&GC Repair ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177666261",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4679FX - B&GC Repair - 804 West Catalpa St. Spfd - Ross Construction - Steve Guilliams - 4177666261",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.712Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2ahoebwzy61c5yx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:01.583Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Luxe Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Haik",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "luxeconstructionmo@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2577 E Cherrybark Ln, Spfd",
+ "Job_Codes": "4678 - Remodel",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4678FX%20Luxe%20Construction%20Remodel(2577%20E%20Cherrybark%20Ln%20Spfd)?csf=1&web=1&e=8a5EYZ",
+ "Job_Full_Name": "Remodel - 2577 E Cherrybark Ln, Spfd - Luxe Construction",
+ "Job_Name": "Remodel",
+ "Job_Number": "4678",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4678FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "3 way window wraps, lots of cornerbead, Vincente mostly hung but there's quite a bit of patching and window wraps left. Wants L4 smooth walls and ceilings. Some ceilings have heavy texture that will need scraped and skimmed. May be okay with Random Roll ceilings, but prefers smooth. Ready in about a week. Usually uses Clark construction. 10/24/25",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 872-9055",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4678FX - Remodel - 2577 E Cherrybark Ln, Spfd - Luxe Construction - Brittany Haik - (417) 872-9055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.780Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fomj8rv5btdatfz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:01.708Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ball, Sheila",
+ "Contact_Notes": "",
+ "Contact_Person": " ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-31 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "404 S Chicago, Bolivar",
+ "Job_Codes": "4677 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 404 S Chicago, Bolivar - Ball, Sheila",
+ "Job_Name": "Remodel",
+ "Job_Number": "4677",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4677FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 838-1941",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4677FX - Remodel - 404 S Chicago, Bolivar - Ball, Sheila - - (417) 838-1941",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.841Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "96nfr14nrohx7e0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:01.826Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "jmorris@construct-com.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Duplicate",
+ "Job_Codes": "4676 - Ryan Nothum",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4676%20Ryan%20Nothum%206659%20North%20State%20Hwy%20HH,Willard%20(Construct)?csf=1&web=1&e=5lILGd",
+ "Job_Full_Name": "Ryan Nothum - 6659 North State Hwy HH,Willard, MO 65781 - Construct",
+ "Job_Name": "Ryan Nothum",
+ "Job_Number": "4676",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4676FX - Ryan Nothum",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Alfonso 10/22 1:27pm - was origianlly job#4659, but that created 2 job numbers for the same job so it needed to be changed",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(417) 298-4455",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4676FX - Ryan Nothum - Duplicate - Construct - Johanna - (417) 298-4455",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.892Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "323vlrod7wxw5ic",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:59.455Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "?",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-27 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "606 E Walnut, Ozark",
+ "Job_Codes": "4675 - House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4675%20(606%20E%20Walnut,%20Ozark%20)Cowherd?csf=1&web=1&e=VuGIp1",
+ "Job_Full_Name": "House - 606 E Walnut, Ozark - Cowherd",
+ "Job_Name": "House",
+ "Job_Number": "4675",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4675UP - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "NA",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4675UP - House - 606 E Walnut, Ozark - Cowherd - ? - NA",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.940Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sn4mgslm2wk7j1y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:02.046Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burton, Cliff",
+ "Contact_Notes": "",
+ "Contact_Person": "Cliff Burton",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "clifsnanne4@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1734 Riverdale Rd, Ozark",
+ "Job_Codes": "4674 - Repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 1734 Riverdale Rd, Ozark - Burton, Cliff",
+ "Job_Name": "Repair",
+ "Job_Number": "4674",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4674TM - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 331-1706",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4674TM - Repair - 1734 Riverdale Rd, Ozark - Burton, Cliff - Cliff Burton - (417) 331-1706",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:21.988Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "25vfnkxtur640ej",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:02.155Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4673 - GW #1",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GW #1 - Branson - Still, Mark",
+ "Job_Name": "GW #1",
+ "Job_Number": "4673",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4673UP - GW #1",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "No basement. Estimate waiting on walkthrough notes",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 840-7855",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4673UP - GW #1 - Branson - Still, Mark - Mark Steel - (417) 840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.044Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o6zrc0xd6zcpm4b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:59.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Steel ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4672 - GW #2",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GW #2 - Branson - Still, Mark",
+ "Job_Name": "GW #2",
+ "Job_Number": "4672",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4672UP - GW #2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "No basement. Estimate waiting on walkthrough notes",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 840-7855",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4672UP - GW #2 - Branson - Still, Mark - Mark Steel - (417) 840-7855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.088Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r791pknxkxkbe1a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:59.841Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Battaglia, Greg",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Battaglia",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-28 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "gregnco2@hotmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "945 Table Rock Circle, Branson",
+ "Job_Codes": "4671 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4671%20Remodel%20(945%20Table%20Rock%20Circle)%20(Battaglia,%20Gregg)?csf=1&web=1&e=bihWj3",
+ "Job_Full_Name": "Remodel - 945 Table Rock Circle, Branson - Battaglia, Greg",
+ "Job_Name": "Remodel",
+ "Job_Number": "4671",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4671FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "CO: Dryer vent patch",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 294-2734",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4671FX - Remodel - 945 Table Rock Circle, Branson - Battaglia, Greg - Greg Battaglia - (417) 294-2734",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.136Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tf0ac4oid8s5d4a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:33:59.977Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Spence, Bob",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Spence (417) 860-7554",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "dontwannagiveuit@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2166 S Oakmont Ct, Spfd",
+ "Job_Codes": "4670 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 2166 S Oakmont Ct, Spfd - Spence, Bob",
+ "Job_Name": "Water damage",
+ "Job_Number": "4670",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4670FX - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 860-7554",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4670FX - Water damage - 2166 S Oakmont Ct, Spfd - Spence, Bob - Bob Spence (417) 860-7554 - (417) 860-7554",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.184Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4ni6bpgo2zysetk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:02.614Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cardoza, Ed",
+ "Contact_Notes": "",
+ "Contact_Person": "Ed Cardoza",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-22 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West Plains",
+ "Job_Codes": "4669 - House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "House - West Plains - Cardoza, Ed",
+ "Job_Name": "House",
+ "Job_Number": "4669",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4669UP - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 425-5980",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4669UP - House - West Plains - Cardoza, Ed - Ed Cardoza - (417) 425-5980",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.228Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wb7ukv42li4fp00",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:02.722Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Still ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-20 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4668 - GW #5",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4668UP%20Still,%20MarkGlass%20Water%20GW%20%235?csf=1&web=1&e=0qUmwI",
+ "Job_Full_Name": "GW #5 - Branson - Still, Mark",
+ "Job_Name": "GW #5",
+ "Job_Number": "4668",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4668UP - GW #5",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 294-0057",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4668UP - GW #5 - Branson - Still, Mark - Mark Still - (417) 294-0057",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.287Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mc1dud8hgqs9whu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:02.842Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove ",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden Whiteside",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-16 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "brayden@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4667 - Bespoke Spa - OG",
+ "Has_Attachments": false,
+ "Job_Address": "2515 S. Campbell Ave. Springfield MO 65807",
+ "Job_Codes": "4667 - Bespoke Spa",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4667 - Bespoke Spa - OG",
+ "Job_Full_Name": "Bespoke Spa - 2515 S. Campbell Ave. Springfield MO 65807 - Oak Grove ",
+ "Job_Name": "Bespoke Spa",
+ "Job_Number": "4667",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4667FX - Bespoke Spa",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.399.2120",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4667FX - Bespoke Spa - 2515 S. Campbell Ave. Springfield MO 65807 - Oak Grove - Brayden Whiteside - 417.399.2120",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.345Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "eofvvoumtgabylw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:00.323Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sorrell, Darren",
+ "Contact_Notes": "",
+ "Contact_Person": "Darren Sorrell ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "sorrell242@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1427 W Lindberg St, Spfd",
+ "Job_Codes": "4666 - Popcorn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 1427 W Lindberg St, Spfd - Sorrell, Darren",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4666",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4666FX - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 229-4308",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4666FX - Popcorn - 1427 W Lindberg St, Spfd - Sorrell, Darren - Darren Sorrell - (417) 229-4308",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.396Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h6lg0a3c4k96adk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:03.090Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Galindo, Ashley",
+ "Contact_Notes": "",
+ "Contact_Person": "Ashley Galindo",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "agalind25@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": true,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "600 Center Rd, Ozark",
+ "Job_Codes": "4665 - Repair & Paint",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair & Paint - 600 Center Rd, Ozark - Galindo, Ashley",
+ "Job_Name": "Repair & Paint",
+ "Job_Number": "4665",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4665FX - Repair & Paint",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Added second coat of paint to Kitchen and bedroom. See December quotes. Will need to adjust main estimate to reflect stuff so EVAs are correct and bill correctly.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 536-0527",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4665FX - Repair & Paint - 600 Center Rd, Ozark - Galindo, Ashley - Ashley Galindo - (417) 536-0527",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.465Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cls2ye5d42g57fu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:03.207Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "dusty@essickbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "4664 - Shop",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shop - Springfield - Essick, Dusty",
+ "Job_Name": "Shop",
+ "Job_Number": "4664",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4664FX - Shop",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "*417) 860-1127",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4664FX - Shop - Springfield - Essick, Dusty - Dusty Essick - *417) 860-1127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.509Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yujl8q8ss7k5ohw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:03.323Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Withers, Rob",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob Withers",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-20 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "rdwithers1@msn.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "4663 - Layton",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4663%20Layton%20Republic%20(Withers,%20Rob)?csf=1&web=1&e=QdMMfa",
+ "Job_Full_Name": "Layton - Republic - Withers, Rob",
+ "Job_Name": "Layton",
+ "Job_Number": "4663",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4663FX - Layton",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-860-7397",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4663FX - Layton - Republic - Withers, Rob - Rob Withers - 417-860-7397",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.581Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mvvsrqt5hizrrje",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:03.450Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Logan",
+ "Contact_Notes": "",
+ "Contact_Person": "Logan Davis",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-11-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "loganpdavis2023@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "4662 - House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4662%20House%20-Nixa%20(Davis,%20Logan)?csf=1&web=1&e=tlpNQy]",
+ "Job_Full_Name": "House - Nixa - Davis, Logan",
+ "Job_Name": "House",
+ "Job_Number": "4662",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4662FX - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "New plans 10/28/25. L4 smooth drywall. Square edges and no casing around windows",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 773-8898",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4662FX - House - Nixa - Davis, Logan - Logan Davis - (417) 773-8898",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.649Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bbk5qbcr1e1771d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:00.723Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DTE Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave Aguirre ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "davidjaguirre777@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "139 Lakeshore Dr, Kim City",
+ "Job_Codes": "4661 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 139 Lakeshore Dr, Kim City - DTE Properties",
+ "Job_Name": "Remodel",
+ "Job_Number": "4661",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4661FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 849-4434",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4661FX - Remodel - 139 Lakeshore Dr, Kim City - DTE Properties - Dave Aguirre - (417) 849-4434",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.713Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "urc3fk01zbl343o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:03.678Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Woodley, Dalton",
+ "Contact_Notes": "",
+ "Contact_Person": "Dalton Woodley ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "woodleybuildingco@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Moody",
+ "Job_Codes": "4660 - House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4660%20Moody%20MO%20-Woodley,%20Dalton?csf=1&web=1&e=601GQm",
+ "Job_Full_Name": "House - Moody - Woodley, Dalton",
+ "Job_Name": "House",
+ "Job_Number": "4660",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4660FX - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 252-7186",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4660FX - House - Moody - Woodley, Dalton - Dalton Woodley - (417) 252-7186",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.783Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "37ipp24j89uumx8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:03.791Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden Whiteside ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1pm",
+ "EXT": 0,
+ "Email": "brayden@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4659 - Sherwin Williams - Oakgrove",
+ "Has_Attachments": false,
+ "Job_Address": "505 W. Mount Vernon St. Nixa MO",
+ "Job_Codes": "4659 - Sherwin Williams ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4659 - Sherwin Williams - Oakgrove",
+ "Job_Full_Name": "Sherwin Williams - 505 W. Mount Vernon St. Nixa MO - Oak Grove Construction",
+ "Job_Name": "Sherwin Williams ",
+ "Job_Number": "4659",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4659FX - Sherwin Williams ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "417-399-2120",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4659FX - Sherwin Williams - 505 W. Mount Vernon St. Nixa MO - Oak Grove Construction - Brayden Whiteside - 417-399-2120",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.841Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "67dxs50eq7kk6ln",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:00.960Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cahills Const ",
+ "Contact_Notes": "",
+ "Contact_Person": " Mitch Richardson",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-15 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "mrichardson@cahillsconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4658 - Jon Wayne Heating & Air - Cahills Const",
+ "Has_Attachments": false,
+ "Job_Address": "4275 S. Timbercreek Ave. Battlefield MO",
+ "Job_Codes": "4658 - Jon Wayne Heating & Air",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4658 - Jon Wayne Heating & Air - Cahills Const",
+ "Job_Full_Name": "Jon Wayne Heating & Air - 4275 S. Timbercreek Ave. Battlefield MO - Cahills Const ",
+ "Job_Name": "Jon Wayne Heating & Air",
+ "Job_Number": "4658",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4658FX - Jon Wayne Heating & Air",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "573.426.5305",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4658FX - Jon Wayne Heating & Air - 4275 S. Timbercreek Ave. Battlefield MO - Cahills Const - Mitch Richardson - 573.426.5305",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.901Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vxqd9s0iv1ipljo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:01.097Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bibler, Jon",
+ "Contact_Notes": "",
+ "Contact_Person": "Jon Bibler",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-10 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "-",
+ "Job_Codes": "4657 - Wall",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wall - - - Bibler, Jon",
+ "Job_Name": "Wall",
+ "Job_Number": "4657",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4657FX - Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 234-5223",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4657FX - Wall - - - Bibler, Jon - Jon Bibler - (417) 234-5223",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:22.965Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "840lpg9dgy5sg4l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:04.126Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mourick, Travis",
+ "Contact_Notes": "",
+ "Contact_Person": "Travis Mourick ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "tmourick@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "-",
+ "Job_Codes": "4656 - Northfork River Ranch House",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4656%20Northfork%20River%20Ranch%20House,%20Dora%20(Mourick,%20Travis)?csf=1&web=1&e=9CU1dH",
+ "Job_Full_Name": "Northfork River Ranch House - - - Mourick, Travis",
+ "Job_Name": "Northfork River Ranch House",
+ "Job_Number": "4656",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4656FX - Northfork River Ranch House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 287-0866",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4656FX - Northfork River Ranch House - - - Mourick, Travis - Travis Mourick - (417) 287-0866",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.024Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bs6qny1xy4la1q3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:04.242Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elder, Diane",
+ "Contact_Notes": "",
+ "Contact_Person": "Diane Elder",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "elderdm47@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "512 E Slim Wilson, Nixa",
+ "Job_Codes": "4655 - Sun room",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Sun room - 512 E Slim Wilson, Nixa - Elder, Diane",
+ "Job_Name": "Sun room",
+ "Job_Number": "4655",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4655FX - Sun room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(404) 277-8109",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4655FX - Sun room - 512 E Slim Wilson, Nixa - Elder, Diane - Diane Elder - (404) 277-8109",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.112Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "irim313m7zxv5hi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:04.346Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Still",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-08 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "columbiabuilding@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4654 - GW #6 - Branson - Still, Mark",
+ "Has_Attachments": false,
+ "Job_Address": "Glass Water #6",
+ "Job_Codes": "4654 - GW #6",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4654%20-%20GW%20%236%20-%20Branson%20-%20Still,%20Mark?csf=1&web=1&e=eJfXYN",
+ "Job_Full_Name": "GW #6 - Glass Water #6 - Still, Mark",
+ "Job_Name": "GW #6",
+ "Job_Number": "4654",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4654UP - GW #6",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 294-0057",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4654UP - GW #6 - Glass Water #6 - Still, Mark - Mark Still - (417) 294-0057",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.160Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tncz2l7hd9ibha8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-16 16:23:30.551Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sorrell, Darren",
+ "Contact_Notes": "",
+ "Contact_Person": "Darren Sorrell",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-08 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1427 W Lindberg St, Spfd",
+ "Job_Codes": "4653 - Patch",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1427 W Lindberg St, Spfd - Sorrell, Darren",
+ "Job_Name": "Patch",
+ "Job_Number": "4653",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4653FX - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 229-4308",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4653FX - Patch - 1427 W Lindberg St, Spfd - Sorrell, Darren - Darren Sorrell - (417) 229-4308",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.204Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fr16ypxyltllhok",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:04.571Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-29 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "-",
+ "Job_Codes": "4652 - Soundproof basement ceiling",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Soundproof basement ceiling - - - Krueger, Paul",
+ "Job_Name": "Soundproof basement ceiling",
+ "Job_Number": "4652",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4652FX - Soundproof basement ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 337-3077",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4652FX - Soundproof basement ceiling - - - Krueger, Paul - Paul Krueger - (417) 337-3077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.248Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pano0wg9tuamc1g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:04.698Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabhollz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims Precon Specialist",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-23 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.5",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4651 - CMH Infusion Clinic",
+ "Has_Attachments": false,
+ "Job_Address": "1500 North Oakland Ave. Bolivar 65613",
+ "Job_Codes": "4651 - CMH Infusion Clinic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4651 - CMH Infusion Clinic",
+ "Job_Full_Name": "CMH Infusion Clinic - 1500 North Oakland Ave. Bolivar 65613 - Nabhollz",
+ "Job_Name": "CMH Infusion Clinic",
+ "Job_Number": "4651",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4651FX - CMH Infusion Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.450.6018",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4651FX - CMH Infusion Clinic - 1500 North Oakland Ave. Bolivar 65613 - Nabhollz - Jarrett Sims Precon Specialist - 417.450.6018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.308Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y09py22zen2zewr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:01.625Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Linear Fox",
+ "Contact_Notes": "",
+ "Contact_Person": "Cory Brest",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-31 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10745 Historic Hwy 165, Hollister",
+ "Job_Codes": "4650 - -",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/2%20Estimating%20Residential/4650FX%2010745%20Historic%20Hwy%20165,%20Hollister%20(Linear%20Fox)?csf=1&web=1&e=MIuiPx",
+ "Job_Full_Name": "- - 10745 Historic Hwy 165, Hollister - Linear Fox",
+ "Job_Name": "-",
+ "Job_Number": "4650",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4650FX - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(816) 787-2869",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4650FX - - - 10745 Historic Hwy 165, Hollister - Linear Fox - Cory Brest - (816) 787-2869",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.376Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kb89riyi2liqgz2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:04.919Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fields, William",
+ "Contact_Notes": "",
+ "Contact_Person": "William Fields",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-09 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "bill@realbill.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": true,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "434 W Haven Ln, Blue Eye",
+ "Job_Codes": "4649 - ",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4649FX%20434%20W%20Haven%20Ln,%20Blue%20Eye%20(Fields,%20William)?csf=1&web=1&e=phnjX6",
+ "Job_Full_Name": " - 434 W Haven Ln, Blue Eye - Fields, William",
+ "Job_Name": "",
+ "Job_Number": "4649",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4649FX - ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Possible CO: 100 feet of wrapped beams not in plans.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(913) 230-8584",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4649FX - - 434 W Haven Ln, Blue Eye - Fields, William - William Fields - (913) 230-8584",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.432Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4c7g0ecqf8hr2hj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:22.801Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fields, William",
+ "Contact_Notes": "",
+ "Contact_Person": "William Fields",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-09 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "bill@realbill.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": true,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "214 W Haven Ln, Blue Eye",
+ "Job_Codes": "4648 - ",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4348%20Miller%20(6071%20State%20Hwy%20125,%20Rogersville)%20(Miller,%20Jay)?csf=1&web=1&e=32N0iR",
+ "Job_Full_Name": " - 214 W Haven Ln, Blue Eye - Fields, William",
+ "Job_Name": "",
+ "Job_Number": "4648",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4648FX - ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(913) 230-8584",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4648FX - - 214 W Haven Ln, Blue Eye - Fields, William - William Fields - (913) 230-8584",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.536Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9ow671ppw43l75a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:05.162Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peacher, Jack",
+ "Contact_Notes": "",
+ "Contact_Person": "Jack Peacher",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "152 Valley View Rd, Highlandville",
+ "Job_Codes": "4647 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 152 Valley View Rd, Highlandville - Peacher, Jack",
+ "Job_Name": "Repairs",
+ "Job_Number": "4647",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4647FX - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 838-5654",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4647FX - Repairs - 152 Valley View Rd, Highlandville - Peacher, Jack - Jack Peacher - (417) 838-5654",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.584Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ef8bl02qef75xgi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:05.262Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Stramel, Jacob",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake Stramel ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-06 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "jacobstramel@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6920 W Elwood Ln, Spfd",
+ "Job_Codes": "4646 - -",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4646FX%206920%20W%20Elwood%20Ln,%20Spfd%20-%20Stramel,%20Jacob?csf=1&web=1&e=zDclp5",
+ "Job_Full_Name": "- - 6920 W Elwood Ln, Spfd - Stramel, Jacob",
+ "Job_Name": "-",
+ "Job_Number": "4646",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4646FX - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(214) 563-9730",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4646FX - - - 6920 W Elwood Ln, Spfd - Stramel, Jacob - Jake Stramel - (214) 563-9730",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.628Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "irfijk0hf645jw8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:05.382Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber ",
+ "Contact_Notes": "",
+ "Contact_Person": "Wayne Clark ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-03 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "NA",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5657 S Glen Abby Ct, Spfd",
+ "Job_Codes": "4645 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 5657 S Glen Abby Ct, Spfd - Weber ",
+ "Job_Name": "Water damage",
+ "Job_Number": "4645",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4645TM - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 343-7126",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4645TM - Water damage - 5657 S Glen Abby Ct, Spfd - Weber - Wayne Clark - (417) 343-7126",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.672Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r18yz5eiezhwwrj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:05.490Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga ",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "0.458333333333333",
+ "EXT": 0,
+ "Email": " eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4644 - Veterans Home Pavilion - Friga",
+ "Has_Attachments": false,
+ "Job_Address": "MT. VERNON ",
+ "Job_Codes": "4644 - VETERANS HOME NEW PAVILION",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4644 - Veterans Home Pavilion - Friga",
+ "Job_Full_Name": "VETERANS HOME NEW PAVILION - MT. VERNON - Friga ",
+ "Job_Name": "VETERANS HOME NEW PAVILION",
+ "Job_Number": "4644",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4644PWEX - VETERANS HOME NEW PAVILION",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "N/A",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4644PWEX - VETERANS HOME NEW PAVILION - MT. VERNON - Friga - Eric Friga - N/A",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.728Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vvdexkyxxdadjbw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:02.217Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Younger, Shane",
+ "Contact_Notes": "",
+ "Contact_Person": "Shane Younger",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-23 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "syounger07@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lake of the Ozarks",
+ "Job_Codes": "4643 - Cabin",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4643%20Cabin%20Lake%20of%20the%20Ozarks%20(Younger,%20Shane)?csf=1&web=1&e=fQUUyR",
+ "Job_Full_Name": "Cabin - Lake of the Ozarks - Younger, Shane",
+ "Job_Name": "Cabin",
+ "Job_Number": "4643",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4643FX - Cabin",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "10 cabins, office building, and restaurant. Try 4 cabins at a time (5,000 ft or less). 9' OP. Mid Dec or Jan start.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(417) 247-7262",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4643FX - Cabin - Lake of the Ozarks - Younger, Shane - Shane Younger - (417) 247-7262",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.790Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pk5jtloqacfwl5n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:02.381Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden Whiteside ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-06 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.416666666666667",
+ "EXT": 0,
+ "Email": "brayden@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1315 W. Chestnut Expy",
+ "Job_Codes": "4642 - FBM Chestnut (DUPLICATE)",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "FBM Chestnut (DUPLICATE) - 1315 W. Chestnut Expy - Oakgrove Construction",
+ "Job_Name": "FBM Chestnut (DUPLICATE)",
+ "Job_Number": "4642",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4642FX - FBM Chestnut (DUPLICATE)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.399.2120",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4642FX - FBM Chestnut (DUPLICATE) - 1315 W. Chestnut Expy - Oakgrove Construction - Brayden Whiteside - 417.399.2120",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.853Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "txw19y9n596y7n8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:05.815Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove ",
+ "Contact_Notes": "",
+ "Contact_Person": "Brayden Whiteside ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-06 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "0.416666666666667",
+ "EXT": 0,
+ "Email": "brayden@ogconstruct.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4641 - FBM - Oakgrove",
+ "Has_Attachments": false,
+ "Job_Address": "1315 W. Chestnut Expy Springfield MO",
+ "Job_Codes": "4641 - FBM Chestnut Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4641 - FBM - Oakgrove",
+ "Job_Full_Name": "FBM Chestnut Renovation - 1315 W. Chestnut Expy Springfield MO - Oakgrove ",
+ "Job_Name": "FBM Chestnut Renovation",
+ "Job_Number": "4641",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4641FX - FBM Chestnut Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "On Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "[Timothy Cardoza - 01/19/2026, 10:13 AM] [Job #4641] Marked as ON HOLD per Brayden Whiteside email one 1/19/26\n\n",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "417.399.2120",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4641FX - FBM Chestnut Renovation - 1315 W. Chestnut Expy Springfield MO - Oakgrove - Brayden Whiteside - 417.399.2120",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.908Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b5xdqj0v39jvcmt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 16:13:13.235Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "batyconstruction@hotmail.com",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "652 Trigger Cove Rd, Kirbyville",
+ "Job_Codes": "4640 - Addition",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4640%20Addition%20652%20Trigger%20Cove%20Rd%2C%20Kirbyville%20%5BBaty%2C%20Gary%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Addition - 652 Trigger Cove Rd, Kirbyville - Baty, Gary",
+ "Job_Name": "Addition",
+ "Job_Number": "4640",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4640FX - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Added an upstairs! Needs re-estimating",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 337-1169",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4640FX - Addition - 652 Trigger Cove Rd, Kirbyville - Baty, Gary - Gary Baty - (417) 337-1169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:23.964Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "75wn246bck6ablf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:02.678Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fanning, Chris",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Fanning",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-03 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "chris.fanning68@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "22557 Lawrence 2080, Ash Grove",
+ "Job_Codes": "4639 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 22557 Lawrence 2080, Ash Grove - Fanning, Chris",
+ "Job_Name": "Garage",
+ "Job_Number": "4639",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4639FX - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178391594",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4639FX - Garage - 22557 Lawrence 2080, Ash Grove - Fanning, Chris - Chris Fanning - 4178391594",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.008Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0al21mlsm6scmhn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:06.148Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Still",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4638 - GW #7 - Branson - Still, Mark",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4638 - Glasswater #7",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4638%20-%20GW%20%237%20-%20Branson%20-%20Still,%20Mark?csf=1&web=1&e=7TxGRJ",
+ "Job_Full_Name": "Glasswater #7 - Branson - Still, Mark",
+ "Job_Name": "Glasswater #7",
+ "Job_Number": "4638",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4638UP - Glasswater #7",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "UP",
+ "Note_Ref": [],
+ "Notes": "Update footage: 21,544",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 294-0057",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4638UP - Glasswater #7 - Branson - Still, Mark - Mark Still - (417) 294-0057",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.057Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fw06wd7dw65y8dj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-16 16:23:30.493Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Snyder",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy Hawkins",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "r.hawkins@snydercg.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Aurora",
+ "Job_Codes": "4637 - Smile Center - Aurora",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Smile Center - Aurora - Aurora - Snyder",
+ "Job_Name": "Smile Center - Aurora",
+ "Job_Number": "4637",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4637FXEX - Smile Center - Aurora",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.887.6897",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4637FXEX - Smile Center - Aurora - Aurora - Snyder - Randy Hawkins - 417.887.6897",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.116Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v5aii5fsva17k3w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:06.375Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith",
+ "Contact_Notes": "",
+ "Contact_Person": "Estimator",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-23 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.583333333333333",
+ "EXT": 0,
+ "Email": "estimating@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4636 - Skyline Performing Arts",
+ "Has_Attachments": false,
+ "Job_Address": "20663 US-65, Urbana",
+ "Job_Codes": "4636 - Skyline Performing Art Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4636 - Skyline Performing Arts",
+ "Job_Full_Name": "Skyline Performing Art Center - 20663 US-65, Urbana - RE Smith",
+ "Job_Name": "Skyline Performing Art Center",
+ "Job_Number": "4636",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4636FX - Skyline Performing Art Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417)623-4545",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4636FX - Skyline Performing Art Center - 20663 US-65, Urbana - RE Smith - Estimator - (417)623-4545",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.168Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a1vt6u9w1ppjmtd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:03.039Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith",
+ "Contact_Notes": "",
+ "Contact_Person": "estimating@resmithconst.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-28 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.583333333333333",
+ "EXT": 0,
+ "Email": "johnpaul@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Stone County",
+ "Job_Codes": "4635 - Stone County Fire Station #7",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Stone County Fire Station #7 - Stone County - RE Smith",
+ "Job_Name": "Stone County Fire Station #7",
+ "Job_Number": "4635",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4635PW - Stone County Fire Station #7",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "John Paul Carr (417) 385-3905",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4635PW - Stone County Fire Station #7 - Stone County - RE Smith - estimating@resmithconst.com - John Paul Carr (417) 385-3905",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.228Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "de1hd2yvymyaauq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:06.603Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-10-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "?",
+ "EXT": 0,
+ "Email": "scunningham@construct-com.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4634 - Sunshine Towne Centre",
+ "Has_Attachments": false,
+ "Job_Address": "3400 W Sunshine St, Spfd",
+ "Job_Codes": "4634 - Sunshine Towne Centre",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4634 - Sunshine Towne Centre",
+ "Job_Full_Name": "Sunshine Towne Centre - 3400 W Sunshine St, Spfd - Construct",
+ "Job_Name": "Sunshine Towne Centre",
+ "Job_Number": "4634",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4634FX - Sunshine Towne Centre",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(573) 590-2828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4634FX - Sunshine Towne Centre - 3400 W Sunshine St, Spfd - Construct - Seth Cunningham - (573) 590-2828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.288Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6d0f20070psip9z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:03.263Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Snyder",
+ "Contact_Notes": "",
+ "Contact_Person": "Jordan Irwin is our lead estimator, Cameron Pope is the assistant estimator. Please copy him on all correspondences. ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-07 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.583333333333333",
+ "EXT": 0,
+ "Email": "j.irwin@snydercg.com & c.pope@snydercg.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4633 - Snyder - Elliott Robinson Expansion",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "4633 - Elliott Robinson Expansion",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4633 - Snyder - Elliott Robinson Expansion",
+ "Job_Full_Name": "Elliott Robinson Expansion - Spfd - Snyder",
+ "Job_Name": "Elliott Robinson Expansion",
+ "Job_Number": "4633",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4633FX - Elliott Robinson Expansion",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.887.6897",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4633FX - Elliott Robinson Expansion - Spfd - Snyder - Jordan Irwin is our lead estimator, Cameron Pope is the assistant estimator. Please copy him on all correspondences. - 417.887.6897",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.341Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rxzm2v5go7ipq2w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:03.425Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Steve ",
+ "Contact_Notes": "",
+ "Contact_Person": "\t Nathan LaBlanc",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-29 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "12",
+ "EXT": 0,
+ "Email": "nlablanc@dbsi.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4632 - DBSI Bank of America",
+ "Has_Attachments": false,
+ "Job_Address": "Highway M",
+ "Job_Codes": "4632 - Bank of America ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4632 - DBSI Bank of America",
+ "Job_Full_Name": "Bank of America - Highway M - Steve ",
+ "Job_Name": "Bank of America ",
+ "Job_Number": "4632",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4632FX - Bank of America ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "1 602-370-8186 • +1 602-370-8186",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4632FX - Bank of America - Highway M - Steve - \t Nathan LaBlanc - 1 602-370-8186 • +1 602-370-8186",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.397Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bkanahdwnge1hlu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:03.575Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "kyledowell33@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2504 Lloyd Pl, Spfd",
+ "Job_Codes": "4631 - Remodel",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4631%20Remodel%202504%20Lloyd%20Pl%2C%20Spfd%20%28Dowell%2C%20Kyle0&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 2504 Lloyd Pl, Spfd - Dowell, Kyle",
+ "Job_Name": "Remodel",
+ "Job_Number": "4631",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4631FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 806-3628",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4631FX - Remodel - 2504 Lloyd Pl, Spfd - Dowell, Kyle - Kyle - (417) 806-3628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.461Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3ood56ramuzsoiq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:07.107Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-03 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "0.979166666666667",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Stone Creek Dr, Republic MO 65619",
+ "Job_Codes": "4630 - Estes Arvest Bank ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Estes Arvest Bank - Stone Creek Dr, Republic MO 65619 - DeWitt",
+ "Job_Name": "Estes Arvest Bank ",
+ "Job_Number": "4630",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4630FX - Estes Arvest Bank ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 942-7984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4630FX - Estes Arvest Bank - Stone Creek Dr, Republic MO 65619 - DeWitt - Kim Lucas - (417) 942-7984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c9zcxletx6r1wsj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:07.319Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H-VAC & Central Plumbing",
+ "Contact_Notes": "",
+ "Contact_Person": "Torrenc ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "h-vac@h-vac.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4441 Swedish Ivy Ave, Spfd",
+ "Job_Codes": "4629 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 4441 Swedish Ivy Ave, Spfd - H-VAC & Central Plumbing",
+ "Job_Name": "Patches",
+ "Job_Number": "4629",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4629FX - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 234-6017",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4629FX - Patches - 4441 Swedish Ivy Ave, Spfd - H-VAC & Central Plumbing - Torrenc - (417) 234-6017",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.552Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xoo2o4y452j6gny",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:07.447Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Maverick Electric",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian McElroy ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-26 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "maverick@8622622.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10325 N FR 137, Brighton",
+ "Job_Codes": "4628 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 10325 N FR 137, Brighton - Maverick Electric",
+ "Job_Name": "Remodel",
+ "Job_Number": "4628",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4628FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 862-2622",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4628FX - Remodel - 10325 N FR 137, Brighton - Maverick Electric - Brian McElroy - (417) 862-2622",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.596Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "939k83rkowky8f8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:07.583Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": " Brooke England ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-29 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "5pm",
+ "EXT": 0,
+ "Email": " brookeengland@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4627 - Thompson Quick Lube Expansion - Branco",
+ "Has_Attachments": false,
+ "Job_Address": "1515 E. Independence St.",
+ "Job_Codes": "4627 - Thompson Quick Lube",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4627 - Thompson Quick Lube Expansion - Branco",
+ "Job_Full_Name": "Thompson Quick Lube - 1515 E. Independence St. - Branco",
+ "Job_Name": "Thompson Quick Lube",
+ "Job_Number": "4627",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4627FX - Thompson Quick Lube",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "+1 417-455-8140 ",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4627FX - Thompson Quick Lube - 1515 E. Independence St. - Branco - Brooke England - +1 417-455-8140 ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.652Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zoqwabxtcoaxct7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:03.996Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Grandstaff, Joyce",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-31 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "N/A",
+ "EXT": 0,
+ "Email": "joyceg523@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mountain View",
+ "Job_Codes": "4626 - Remodel",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Mountain View - Grandstaff, Joyce",
+ "Job_Name": "Remodel",
+ "Job_Number": "4626",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4626FX - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Waiting for information",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 247-1811",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4626FX - Remodel - Mountain View - Grandstaff, Joyce - - (417) 247-1811",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.692Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gynfcx216fruwwg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:07.815Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tracy Norman",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-23 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "admin@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4625 - Visiting Angels Ceiling",
+ "Has_Attachments": false,
+ "Job_Address": "1259 East Republic Road, Springfield, MO",
+ "Job_Codes": "4625 - Visiting Angels Ceiling",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4625 - Visiting Angels Ceiling",
+ "Job_Full_Name": "Visiting Angels Ceiling - 1259 East Republic Road, Springfield, MO - Oak Grove Construction",
+ "Job_Name": "Visiting Angels Ceiling",
+ "Job_Number": "4625",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4625FX - Visiting Angels Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4625FX - Visiting Angels Ceiling - 1259 East Republic Road, Springfield, MO - Oak Grove Construction - Tracy Norman - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.744Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f6d8pq0wixzwoss",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:04.172Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Passion Assembly of God",
+ "Contact_Notes": "",
+ "Contact_Person": "Billy Cockrum",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "pastorbilly@passionassembly.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4624 - Passion Assembly of God Remodel",
+ "Has_Attachments": false,
+ "Job_Address": "806 N Forest Ave, Springfield, MO 65802",
+ "Job_Codes": "4624 - Passion Assembly of God",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4624 - Passion Assembly of God Remodel",
+ "Job_Full_Name": "Passion Assembly of God - 806 N Forest Ave, Springfield, MO 65802 - Passion Assembly of God",
+ "Job_Name": "Passion Assembly of God",
+ "Job_Number": "4624",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4624FXEX - Passion Assembly of God",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172999442",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4624FXEX - Passion Assembly of God - 806 N Forest Ave, Springfield, MO 65802 - Passion Assembly of God - Billy Cockrum - 4172999442",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.800Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aokxh2mu19u4j8i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:04.308Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nixa Schools",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Klug ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-16 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "robertklug@nixaschools.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4623 - Nixa High School",
+ "Has_Attachments": false,
+ "Job_Address": "514 S Nicholas Rd, Nixa, MO 65714",
+ "Job_Codes": "4623 - Nixa Highschool Repairs",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4623 - Nixa High School",
+ "Job_Full_Name": "Nixa Highschool Repairs - 514 S Nicholas Rd, Nixa, MO 65714 - Nixa Schools",
+ "Job_Name": "Nixa Highschool Repairs",
+ "Job_Number": "4623",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4623FXEX - Nixa Highschool Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177246390",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4623FXEX - Nixa Highschool Repairs - 514 S Nicholas Rd, Nixa, MO 65714 - Nixa Schools - Robert Klug - 4177246390",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.849Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fyp6gjsqy372o9s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:04.444Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nixa Schools",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Clug",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "robertklug@nixaschools.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4622 - Summit Intermediate",
+ "Has_Attachments": false,
+ "Job_Address": "890 Cheyenne Rd, Nixa, MO 65714",
+ "Job_Codes": "4622 - Summit Intermediate",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4622 - Summit Intermediate",
+ "Job_Full_Name": "Summit Intermediate - 890 Cheyenne Rd, Nixa, MO 65714 - Nixa Schools",
+ "Job_Name": "Summit Intermediate",
+ "Job_Number": "4622",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4622FXEX - Summit Intermediate",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177246390",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4622FXEX - Summit Intermediate - 890 Cheyenne Rd, Nixa, MO 65714 - Nixa Schools - Robert Clug - 4177246390",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.892Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i3coxioyzy2j2rp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:04.560Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baked Bean",
+ "Contact_Notes": "",
+ "Contact_Person": "Baked Bean",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "unknown@g.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1860 N Commerce Dr, Nixa, MO 65714",
+ "Job_Codes": "4621 - Baked Bean Ceilings",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Baked Bean Ceilings - 1860 N Commerce Dr, Nixa, MO 65714 - Baked Bean",
+ "Job_Name": "Baked Bean Ceilings",
+ "Job_Number": "4621",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4621FX - Baked Bean Ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173747368",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4621FX - Baked Bean Ceilings - 1860 N Commerce Dr, Nixa, MO 65714 - Baked Bean - Baked Bean - 4173747368",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.948Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r6o3jx23zewlwz3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:08.411Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove",
+ "Contact_Notes": "",
+ "Contact_Person": "Tracy Norman ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "admin@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4620 - Medical Mile - Oakgrove",
+ "Has_Attachments": false,
+ "Job_Address": "3246 S National Ave, Springfield, MO 65807",
+ "Job_Codes": "4620 - Ceilings for Oak Grove",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4620 - Medical Mile - Oakgrove",
+ "Job_Full_Name": "Ceilings for Oak Grove (Medical Mile) - 3246 S National Ave, Springfield, MO 65807 - Oak Grove",
+ "Job_Name": "Ceilings for Oak Grove",
+ "Job_Number": "4620",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4620FX - Ceilings for Oak Grove",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4620FX - Ceilings for Oak Grove - 3246 S National Ave, Springfield, MO 65807 - Oak Grove - Tracy Norman - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:24.996Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mfbybc0ilm1xllo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:04.748Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Integrity Development",
+ "Contact_Notes": "",
+ "Contact_Person": "Carol Ann Haake",
+ "Docs_Uploaded": false,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "carolann@integritydevelopment.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4619 - SGF Little Theatre The Fort - Integrity Development",
+ "Has_Attachments": false,
+ "Job_Address": "357 North Fort Ave, Springfield, MO 65802",
+ "Job_Codes": "4619 - SGF Little Theatre The Fort",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4619 - SGF Little Theatre The Fort - Integrity Development",
+ "Job_Full_Name": "SGF Little Theatre The Fort - 357 North Fort Ave, Springfield, MO 65802 - Integrity Development",
+ "Job_Name": "SGF Little Theatre The Fort",
+ "Job_Number": "4619",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4619FX - SGF Little Theatre The Fort",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178386147",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4619FX - SGF Little Theatre The Fort - 357 North Fort Ave, Springfield, MO 65802 - Integrity Development - Carol Ann Haake - 4178386147",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.049Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mhfudxvde7y9z51",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:04.878Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cornerstone Building",
+ "Contact_Notes": "",
+ "Contact_Person": "Lori Sweazey",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "office@cornerstonebuilding.us",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4618 - Uddin RV Park - Cornerstone",
+ "Has_Attachments": false,
+ "Job_Address": "2802 Shepard of the Hills Expressway, Branson, MO 65616",
+ "Job_Codes": "4618 - Uddin RV Park",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4618 - Uddin RV Park - Cornerstone",
+ "Job_Full_Name": "Uddin RV Park - 2802 Shepard of the Hills Expressway, Branson, MO 65616 - Cornerstone Building",
+ "Job_Name": "Uddin RV Park",
+ "Job_Number": "4618",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4618FX - Uddin RV Park",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173375655",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4618FX - Uddin RV Park - 2802 Shepard of the Hills Expressway, Branson, MO 65616 - Cornerstone Building - Lori Sweazey - 4173375655",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.097Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yi8vwjucvfxtw1b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:05.001Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-19 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "10AM",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4617 - First Baptist Church - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "Clever, MO",
+ "Job_Codes": "4617 - First Baptist - Clever",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4617 - First Baptist Church - Ross",
+ "Job_Full_Name": "First Baptist - Clever - Clever, MO - Ross",
+ "Job_Name": "First Baptist - Clever",
+ "Job_Number": "4617",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4617FXEX - First Baptist - Clever",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4617FXEX - First Baptist - Clever - Clever, MO - Ross - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.144Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jfndj7y1igjjy8e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:05.115Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stacie Ramos",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-04 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "10AM",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "US Hwy 60, Mountain View, MO",
+ "Job_Codes": "4616 - Ozarks Medical Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ozarks Medical Center - US Hwy 60, Mountain View, MO - KCI",
+ "Job_Name": "Ozarks Medical Center",
+ "Job_Number": "4616",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4616PW - Ozarks Medical Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177202753",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4616PW - Ozarks Medical Center - US Hwy 60, Mountain View, MO - KCI - Stacie Ramos - 4177202753",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.188Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wdo06qwtlb13oib",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:08.946Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cahills",
+ "Contact_Notes": "",
+ "Contact_Person": "Sarah Homer",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-04 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "10AM",
+ "EXT": 0,
+ "Email": "sarah@cahillsconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "US Hwy 60, Mountain View, MO",
+ "Job_Codes": "4615 - Ozarks Medical Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ozarks Medical Center - US Hwy 60, Mountain View, MO - Cahills",
+ "Job_Name": "Ozarks Medical Center",
+ "Job_Number": "4615",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4615PW - Ozarks Medical Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "1111111111",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4615PW - Ozarks Medical Center - US Hwy 60, Mountain View, MO - Cahills - Sarah Homer - 1111111111",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.249Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ib1wd6jn0p38z0a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:09.058Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-04 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "10AM",
+ "EXT": 0,
+ "Email": "Blahr@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "US Hwy 60, Mountain View, MO",
+ "Job_Codes": "4614 - Ozarks Medical Clinic ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ozarks Medical Clinic - US Hwy 60, Mountain View, MO - Killian Construction",
+ "Job_Name": "Ozarks Medical Clinic ",
+ "Job_Number": "4614",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4614PW - Ozarks Medical Clinic ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203263",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4614PW - Ozarks Medical Clinic - US Hwy 60, Mountain View, MO - Killian Construction - Blake Lahr - 4175203263",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.306Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9xh8y0haqtk63up",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:09.167Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "FMGI",
+ "Contact_Notes": "",
+ "Contact_Person": "Estimating",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "estimating@fmgi-inc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4613 - Walmart Expansion Lamar - FMGI",
+ "Has_Attachments": false,
+ "Job_Address": "29 SW 1st Lane, Lamar, MO 64759",
+ "Job_Codes": "4613 - Walmart Expansion Lamar",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4613 - Walmart Expansion Lamar - FMGI",
+ "Job_Full_Name": "Walmart Expansion Lamar - 29 SW 1st Lane, Lamar, MO 64759 - FMGI",
+ "Job_Name": "Walmart Expansion Lamar",
+ "Job_Number": "4613",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4613FX - Walmart Expansion Lamar",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "12 week project duration - start date 11/17/2025",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6789032200",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4613FX - Walmart Expansion Lamar - 29 SW 1st Lane, Lamar, MO 64759 - FMGI - Estimating - 6789032200",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.357Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lbyt2rl769993ys",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:05.442Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JMC Commercial Contractors",
+ "Contact_Notes": "",
+ "Contact_Person": "Christian Ivey",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-04 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "civey@jmcbuilds.us",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2715 76 Country Blvd Suite 103, Branson MO 65616",
+ "Job_Codes": "4612 - Shipley Donuts",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shipley Donuts - 2715 76 Country Blvd Suite 103, Branson MO 65616 - JMC Commercial Contractors",
+ "Job_Name": "Shipley Donuts",
+ "Job_Number": "4612",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4612FX - Shipley Donuts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2259367474",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4612FX - Shipley Donuts - 2715 76 Country Blvd Suite 103, Branson MO 65616 - JMC Commercial Contractors - Christian Ivey - 2259367474",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.409Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nmjovei4wvbjaxd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:09.411Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Neal, Keith",
+ "Contact_Notes": "",
+ "Contact_Person": "Neal, Keith",
+ "Docs_Uploaded": true,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "ASAP",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2916 West Republic Road, Springfield, MO 65807",
+ "Job_Codes": "4611 - Crash Champions",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crash Champions - 2916 West Republic Road, Springfield, MO 65807 - Neal, Keith",
+ "Job_Name": "Crash Champions",
+ "Job_Number": "4611",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4611FX - Crash Champions",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178806742",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4611FX - Crash Champions - 2916 West Republic Road, Springfield, MO 65807 - Neal, Keith - Neal, Keith - 4178806742",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.456Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5vflu6cfkesou36",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:09.522Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CSG",
+ "Contact_Notes": "",
+ "Contact_Person": "Carter Marion",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "carter.marion@marionllc.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "890 Ray A Carver Drive, Neosho, MO, 64850",
+ "Job_Codes": "4610 - Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Camp Crowder Solider Barracks - BLDG 758 - 890 Ray A Carver Drive, Neosho, MO, 64850 - CSG",
+ "Job_Name": "Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Number": "4610",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4610PW - Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174515743",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4610PW - Camp Crowder Solider Barracks - BLDG 758 - 890 Ray A Carver Drive, Neosho, MO, 64850 - CSG - Carter Marion - 4174515743",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.509Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ptek1eslv503f77",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:09.623Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CSG",
+ "Contact_Notes": "",
+ "Contact_Person": "Carter Marion",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "carter.marion@marionllc.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4609 - Camp Crowder Barracks 757 - CSG",
+ "Has_Attachments": false,
+ "Job_Address": "890 Ray A Carver Drive, Neosho, MO, 64850",
+ "Job_Codes": "4609 - Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4609 - Camp Crowder Barracks 757 - CSG",
+ "Job_Full_Name": "Camp Crowder Solider Barracks - BLDG 757 - 890 Ray A Carver Drive, Neosho, MO, 64850 - CSG",
+ "Job_Name": "Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Number": "4609",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4609PW - Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174515743",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4609PW - Camp Crowder Solider Barracks - BLDG 757 - 890 Ray A Carver Drive, Neosho, MO, 64850 - CSG - Carter Marion - 4174515743",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5skjxx54r875sny",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:05.787Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith",
+ "Contact_Notes": "",
+ "Contact_Person": "Darian Parker",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-03 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "10AM",
+ "EXT": 0,
+ "Email": "darian@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4608 - O'Reilly Center for Hope - RE Smith",
+ "Has_Attachments": false,
+ "Job_Address": "1518 E Dale St, Springfield, MO 65803",
+ "Job_Codes": "4608 - O'Reilly Center for Hope Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4608 - O'Reilly Center for Hope - RE Smith",
+ "Job_Full_Name": "O'Reilly Center for Hope Infill - 1518 E Dale St, Springfield, MO 65803 - RE Smith",
+ "Job_Name": "O'Reilly Center for Hope Infill",
+ "Job_Number": "4608",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4608FX - O'Reilly Center for Hope Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176234545",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4608FX - O'Reilly Center for Hope Infill - 1518 E Dale St, Springfield, MO 65803 - RE Smith - Darian Parker - 4176234545",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.613Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kwg435e69eoekfn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:05.923Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "2PM",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4607 - Phelps County Bank - DeWitt",
+ "Has_Attachments": false,
+ "Job_Address": "417 S Jefferson Ave Suite 1, Springfield, MO ",
+ "Job_Codes": "4607 - Phelps County Bank ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4607 - Phelps County Bank - DeWitt",
+ "Job_Full_Name": "Phelps County Bank - 417 S Jefferson Ave Suite 1, Springfield, MO - DeWitt",
+ "Job_Name": "Phelps County Bank ",
+ "Job_Number": "4607",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4607FX - Phelps County Bank ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176550218",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4607FX - Phelps County Bank - 417 S Jefferson Ave Suite 1, Springfield, MO - DeWitt - Tony Blackstock - 4176550218",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.668Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "za5liev2l0e0vi9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:06.060Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tim Hayes",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Hayes",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-18 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "tim@bishopandhayes.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4606 - Tim Hayes",
+ "Has_Attachments": false,
+ "Job_Address": "1437E Primrose, Springfield, MO",
+ "Job_Codes": "4606 - Law Office ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4606 - Tim Hayes",
+ "Job_Full_Name": "Law Office - 1437E Primrose, Springfield, MO - Tim Hayes",
+ "Job_Name": "Law Office ",
+ "Job_Number": "4606",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4606FX - Law Office ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178449477",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4606FX - Law Office - 1437E Primrose, Springfield, MO - Tim Hayes - Tim Hayes - 4178449477",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.712Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fepoz7np0ufefdh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:06.188Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Russell Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Conner Obert",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "2PM",
+ "EXT": 0,
+ "Email": "cobert@russellco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "US Hwy 60, Mountain View, MO",
+ "Job_Codes": "4605 - Ozarks Medical Clinic MV",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ozarks Medical Clinic MV - US Hwy 60, Mountain View, MO - Russell Construction",
+ "Job_Name": "Ozarks Medical Clinic MV",
+ "Job_Number": "4605",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4605PW - Ozarks Medical Clinic MV",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174251150",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4605PW - Ozarks Medical Clinic MV - US Hwy 60, Mountain View, MO - Russell Construction - Conner Obert - 4174251150",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.761Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z3n1sdrpi7wnzd9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:10.179Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Robinson Companies",
+ "Contact_Notes": "",
+ "Contact_Person": "Nick Emmendorfer",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-09-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "2PM",
+ "EXT": 0,
+ "Email": "nemmendorfer@rcco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4604 - Ozark Medical Clinic MV - Multi GC",
+ "Has_Attachments": false,
+ "Job_Address": "US Hwy 60, Mountain View, MO",
+ "Job_Codes": "4604 - Ozarks Medical Clinic MV",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4604 - Ozark Medical Clinic MV - Multi GC",
+ "Job_Full_Name": "Ozarks Medical Clinic MV - US Hwy 60, Mountain View, MO - Robinson Companies",
+ "Job_Name": "Ozarks Medical Clinic MV",
+ "Job_Number": "4604",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4604PW - Ozarks Medical Clinic MV",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735175167",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4604PW - Ozarks Medical Clinic MV - US Hwy 60, Mountain View, MO - Robinson Companies - Nick Emmendorfer - 5735175167",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.829Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d20dvnv888qkhwp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:06.398Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-22 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4603 - Graceway Baptist Church - DeWitt",
+ "Has_Attachments": false,
+ "Job_Address": "5010 S Farm Road 135, Springfield, MO 65810",
+ "Job_Codes": "4603 - Graceway Baptist Church Reno/Add",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4603 - Graceway Baptist Church - DeWitt",
+ "Job_Full_Name": "Graceway Baptist Church Reno/Add - 5010 S Farm Road 135, Springfield, MO 65810 - DeWitt",
+ "Job_Name": "Graceway Baptist Church Reno/Add",
+ "Job_Number": "4603",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4603FXEX - Graceway Baptist Church Reno/Add",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4603FXEX - Graceway Baptist Church Reno/Add - 5010 S Farm Road 135, Springfield, MO 65810 - DeWitt - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.888Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dclcm5n7msda78a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:06.534Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Federal Construction",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-19 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "Noon",
+ "EXT": 0,
+ "Email": "estimating@federalconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4602 - Freeway Ministries Remodel - Federal Const",
+ "Has_Attachments": false,
+ "Job_Address": "1041 W. Kearney Street, Springfield, MO 65803",
+ "Job_Codes": "4602 - Freeway Ministries Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4602 - Freeway Ministries Remodel - Federal Const",
+ "Job_Full_Name": "Freeway Ministries Remodel - 1041 W. Kearney Street, Springfield, MO 65803 - Federal Construction",
+ "Job_Name": "Freeway Ministries Remodel",
+ "Job_Number": "4602",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4602FX - Freeway Ministries Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Missed the deadline - Did not bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178620622",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4602FX - Freeway Ministries Remodel - 1041 W. Kearney Street, Springfield, MO 65803 - Federal Construction - Federal Construction - 4178620622",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.952Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8w70dc4zx728cqy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:06.697Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Behr Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Reynolds",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "4PM",
+ "EXT": 0,
+ "Email": "keith@r4group.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4601 - Shipleys Do-Nuts - Behr Construction",
+ "Has_Attachments": false,
+ "Job_Address": "2715 76 Country Blvd Suite 103, Branson MO 65616",
+ "Job_Codes": "4601 - Shipleys Do-Nuts",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4601 - Shipleys Do-Nuts - Behr Construction",
+ "Job_Full_Name": "Shipleys Do-Nuts - 2715 76 Country Blvd Suite 103, Branson MO 65616 - Behr Construction",
+ "Job_Name": "Shipleys Do-Nuts",
+ "Job_Number": "4601",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4601FX - Shipleys Do-Nuts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9364354747",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4601FX - Shipleys Do-Nuts - 2715 76 Country Blvd Suite 103, Branson MO 65616 - Behr Construction - Keith Reynolds - 9364354747",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:25.996Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vltp1fszk604a0a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:06.868Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith",
+ "Contact_Notes": "",
+ "Contact_Person": "Lucas Neuenswander ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "lucas@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "890 Ray A Carver Drive, Neosho, MO 64850",
+ "Job_Codes": "4600 - Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Camp Crowder Solider Barracks - BLDG 758 - 890 Ray A Carver Drive, Neosho, MO 64850 - RE Smith",
+ "Job_Name": "Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Number": "4600",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4600PW - Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176234545",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4600PW - Camp Crowder Solider Barracks - BLDG 758 - 890 Ray A Carver Drive, Neosho, MO 64850 - RE Smith - Lucas Neuenswander - 4176234545",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.060Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tbt95kv0m3pgbzs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:10.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith",
+ "Contact_Notes": "",
+ "Contact_Person": "Lucas Neuenswander ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "lucas@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "890 Ray A Carver Drive, Neosho, MO 64850",
+ "Job_Codes": "4599 - Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Camp Crowder Solider Barracks - BLDG 757 - 890 Ray A Carver Drive, Neosho, MO 64850 - RE Smith",
+ "Job_Name": "Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Number": "4599",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4599PW - Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176234545",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4599PW - Camp Crowder Solider Barracks - BLDG 757 - 890 Ray A Carver Drive, Neosho, MO 64850 - RE Smith - Lucas Neuenswander - 4176234545",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.112Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kdr4tikuv8q7jab",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:10.871Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harp, Angie",
+ "Contact_Notes": "",
+ "Contact_Person": "Angie Harp",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-30 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "NA",
+ "EXT": 0,
+ "Email": "aharp7@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "912 N Bill Ring Ct, Nixa",
+ "Job_Codes": "4598 - Popcorn Scrape",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn Scrape - 912 N Bill Ring Ct, Nixa - Harp, Angie",
+ "Job_Name": "Popcorn Scrape",
+ "Job_Number": "4598",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4598FX - Popcorn Scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "CO: 5 or so light switch patches. Plus other things cut out. Eddie has information to turn in -10/25/25",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 840-4870",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4598FX - Popcorn Scrape - 912 N Bill Ring Ct, Nixa - Harp, Angie - Angie Harp - (417) 840-4870",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.160Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hm0z5908v7ilms7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:10.983Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lukasiewicz, Lacey",
+ "Contact_Notes": "",
+ "Contact_Person": "Lacey",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-22 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4374 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4374%20%5BR%5D%20Remodel%20%28305%20Sycamore%20St%2C%20Van%20Buren%29%20%28Lukasiewicz%2C%20Lacey%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - - Lukasiewicz, Lacey",
+ "Job_Name": "Remodel",
+ "Job_Number": "4374",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4374 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/18/25 5:17 PM Beth Cardoza Can you give me a quote for a texture, and then also give me a quote for a level for finish?---\n09/18/25 5:17 PM Beth Cardoza First floor is 9’ high. \nSecond floor is 8’ high.\nAttic is cathedral ceilings. At the tip I think it is around 12 to 15 feet high.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(405 ) 795-1371",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4374 - Remodel - - Lukasiewicz, Lacey - Lacey - (405 ) 795-1371",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.217Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l6hosl8o74kll7r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.095Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-23 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Boat Dock Rd, Omaha",
+ "Job_Codes": "4373 - (Boat Dock Rd, Omaha) (Peach Tree)",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4373%20%5BR%5D%20Boat%20Dock%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "(Boat Dock Rd, Omaha) (Peach Tree) - Boat Dock Rd, Omaha - Peach Tree",
+ "Job_Name": "(Boat Dock Rd, Omaha) (Peach Tree)",
+ "Job_Number": "4373",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4373 - (Boat Dock Rd, Omaha) (Peach Tree)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-527-0457",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4373 - (Boat Dock Rd, Omaha) (Peach Tree) - Boat Dock Rd, Omaha - Peach Tree - Chad Meadows - 417-527-0457",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.261Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dlrtwuuj54izdpj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.219Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harrison, Hunter",
+ "Contact_Notes": "",
+ "Contact_Person": "Hunter Harrison",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ava",
+ "Job_Codes": "4372 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - Ava - Harrison, Hunter",
+ "Job_Name": "Finish",
+ "Job_Number": "4372",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4372 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/24/25 7:30 AM Beth Cardoza CO: credit mud that was there (Dave trying to find out how much)---",
+ "Office_Rep": "David Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417 ) 496-5536",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4372 - Finish - Ava - Harrison, Hunter - Hunter Harrison - (417 ) 496-5536",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.320Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1bjyyxvbeojxmre",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.335Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harmon, Terry",
+ "Contact_Notes": "",
+ "Contact_Person": "Terry Harmon",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-19 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4572 S Wildwood Dr, Spfd",
+ "Job_Codes": "4371 - Bldg",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bldg - 4572 S Wildwood Dr, Spfd - Harmon, Terry",
+ "Job_Name": "Bldg",
+ "Job_Number": "4371",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4371 - Bldg",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Eddie Miller",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(573 ) 480-2381",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4371 - Bldg - 4572 S Wildwood Dr, Spfd - Harmon, Terry - Terry Harmon - (573 ) 480-2381",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.372Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0o21imvbaxcrt5e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.447Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kimg, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1015 E Republic Rd, Spfd",
+ "Job_Codes": "4370 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1015 E Republic Rd, Spfd - Kimg, Brad",
+ "Job_Name": "Remodel",
+ "Job_Number": "4370",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4370 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Eddie Miller",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(503 ) 544-7884",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4370 - Remodel - 1015 E Republic Rd, Spfd - Kimg, Brad - Alex - (503 ) 544-7884",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.432Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w19y40t7rt5ajdx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.547Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Grandstaff, Joyce",
+ "Contact_Notes": "",
+ "Contact_Person": "Joyce Grandstaff",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5621 Hollywood Rd, Ozark",
+ "Job_Codes": "4369 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 5621 Hollywood Rd, Ozark - Grandstaff, Joyce",
+ "Job_Name": "Repairs",
+ "Job_Number": "4369",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4369 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/22/25 1:21 PM Beth Cardoza Eddie appointment for 830 am---",
+ "Office_Rep": "Eddie Miller",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417 ) 247-1811",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4369 - Repairs - 5621 Hollywood Rd, Ozark - Grandstaff, Joyce - Joyce Grandstaff - (417 ) 247-1811",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.477Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iqdia2mun5zf49c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.654Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Decker, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Decker",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": " servehim75@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3920 S Meadowbrook Ave, Spfd",
+ "Job_Codes": "4368 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 3920 S Meadowbrook Ave, Spfd - Decker, Doug",
+ "Job_Name": "Ceiling",
+ "Job_Number": "4368",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4368 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4368 - Ceiling - 3920 S Meadowbrook Ave, Spfd - Decker, Doug - Doug Decker - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.544Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "46xb1m0gxw86d56",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.769Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Dowell",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6049 E FR 142, Spfd",
+ "Job_Codes": "4367 - Woodworth",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4367%20%20(6049%20E%20FR%20142,%20Spfd)%20(Dowell,%20Kyle)?csf=1&web=1&e=c8BwMh",
+ "Job_Full_Name": "Woodworth - 6049 E FR 142, Spfd - Dowell, Kyle",
+ "Job_Name": "Woodworth",
+ "Job_Number": "4367",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4367 - Woodworth",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/11/25 2:19 PM Beth Cardoza Located on the east side of springfield 65 and sunshine area. Tree bark ceilings. Light orange peel knockdown walls. 3 way window wraps. 9' ceilings.\n7am-7pm Mon-Sat work hours (HOA)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "(417 ) 860-3628",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2026-12-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "4367 - Woodworth - 6049 E FR 142, Spfd - Dowell, Kyle - Kyle Dowell - (417 ) 860-3628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.592Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sj1t8q72mlass36",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:07.654Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ball, Sheila",
+ "Contact_Notes": "",
+ "Contact_Person": "Sheila Ball",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2024 W Farm Rd 92, Spfd",
+ "Job_Codes": "4366 - Pantry",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pantry - 2024 W Farm Rd 92, Spfd - Ball, Sheila",
+ "Job_Name": "Pantry",
+ "Job_Number": "4366",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4366 - Pantry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Eddie Miller",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417 ) 838-1941",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4366 - Pantry - 2024 W Farm Rd 92, Spfd - Ball, Sheila - Sheila Ball - (417 ) 838-1941",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.661Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h9j9fzjax3mwce9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:11.982Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Faith Assembly of God",
+ "Contact_Notes": "",
+ "Contact_Person": "Pastor Mario",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-17 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3001 W Division St, Spfd",
+ "Job_Codes": "4365 - Popcorn Scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4365%20%5BS%5D%20Popcorn%20Scrape%20%283001%20W%20Division%20St%2C%20Spfd%29%20%28Faith%20Assembly%20of%20God%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Popcorn Scrape - 3001 W Division St, Spfd - Faith Assembly of God",
+ "Job_Name": "Popcorn Scrape",
+ "Job_Number": "4365",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4365 - Popcorn Scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Eddie Miller",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(918 ) 774-8709",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4365 - Popcorn Scrape - 3001 W Division St, Spfd - Faith Assembly of God - Pastor Mario - (918 ) 774-8709",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.704Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vggpo1unrd0737o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.200Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sorrell, Darren",
+ "Contact_Notes": "",
+ "Contact_Person": "Darren Sorrell",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1427 W Lindberg, Spfd",
+ "Job_Codes": "4364 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 1427 W Lindberg, Spfd - Sorrell, Darren",
+ "Job_Name": "Crack",
+ "Job_Number": "4364",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4364 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Eddie Miller",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417 ) 229-4308",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4364 - Crack - 1427 W Lindberg, Spfd - Sorrell, Darren - Darren Sorrell - (417 ) 229-4308",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.748Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "37qtpd8344wiicy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.323Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mitchem, Ed",
+ "Contact_Notes": "",
+ "Contact_Person": "Ed Mitchem",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6221 S Bluff Ridge Rd, Spfd",
+ "Job_Codes": "4363 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 6221 S Bluff Ridge Rd, Spfd - Mitchem, Ed",
+ "Job_Name": "Cracks",
+ "Job_Number": "4363",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4363 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/08/25 2:49 PM Beth Cardoza Eddie to view tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417 )848-6577",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4363 - Cracks - 6221 S Bluff Ridge Rd, Spfd - Mitchem, Ed - Ed Mitchem - (417 )848-6577",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.808Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8856ksvvi3cdcwd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.434Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "4362 - Lot 9",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4362%20%5BR%5D%20Lot%209%20%28Omaha%2C%20AR%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lot 9 - Omaha, AR - Peach Tree",
+ "Job_Name": "Lot 9",
+ "Job_Number": "4362",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4362 - Lot 9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-527-0457",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4362 - Lot 9 - Omaha, AR - Peach Tree - Chad Meadows - 417-527-0457",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.864Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ag37vtzcj42erno",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.548Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4361 - Infantino",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4361%20%5BS%5D%20Infantino%20(70%20Windy%20Ct,%20Blue%20Eye)%20(Weber,%20Bryon)?csf=1&web=1&e=vJgMvR",
+ "Job_Full_Name": "Infantino - - Weber, Bryon",
+ "Job_Name": "Infantino",
+ "Job_Number": "4361",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4361 - Infantino",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2026-02-02 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4361 - Infantino - - Weber, Bryon - Bryon Weber - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.916Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7hshsaay5h35trz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.672Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4360 - WH 49",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "WH 49 - - Everlasting Homes",
+ "Job_Name": "WH 49",
+ "Job_Number": "4360",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4360 - WH 49",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/02/25 4:51 PM Beth Cardoza Assuming it didn't get awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4360 - WH 49 - - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:26.964Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1e54n8nwvxd8uvn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.791Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan Gettinger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "452 S Truman Blvd, Nixa",
+ "Job_Codes": "4359 - Orchard apartments",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4359%20Orchard%20apartments%20%28452%20S%20Truman%20Blvd%2C%20Nixa%29%20%28King%2C%20Brad%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Orchard apartments - 452 S Truman Blvd, Nixa - King, Brad",
+ "Job_Name": "Orchard apartments",
+ "Job_Number": "4359",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4359 - Orchard apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/09/25 3:49 PM Beth Cardoza A couple weeks [to send quote] is fine. Proceed with orange peel.---\n09/05/25 12:17 PM Beth Cardoza L3 or L4, whatever we'd advise for apartment complex---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177550469",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4359 - Orchard apartments - 452 S Truman Blvd, Nixa - King, Brad - Dylan Gettinger - 4177550469",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.124Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lmyacavdy3rn2pl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:12.920Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan Gettinger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "178 Wisteria Ln, Ozark",
+ "Job_Codes": "4358 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4358%20Garage%20%28178%20Wisteria%20Ln%2C%20Ozark%29%20%28King%2C%20Brad%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Garage - 178 Wisteria Ln, Ozark - King, Brad",
+ "Job_Name": "Garage",
+ "Job_Number": "4358",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4358 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/05/25 12:15 PM Beth Cardoza I would do something cost effective [finish]. We are moving through permitting now so I would like to get it back rather quickly if possible.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177550469",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4358 - Garage - 178 Wisteria Ln, Ozark - King, Brad - Dylan Gettinger - 4177550469",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.224Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8wmq8jmvzqlbvdi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:13.051Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad King",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1330 S Kansas Ave, Spfd",
+ "Job_Codes": "4357 - Kansas Ave Townhomes",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4357%20Kansas%20Ave%20Townhomes%20%28Spfd%29%20%28King%2C%20Brad%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kansas Ave Townhomes - 1330 S Kansas Ave, Spfd - King, Brad",
+ "Job_Name": "Kansas Ave Townhomes",
+ "Job_Number": "4357",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4357 - Kansas Ave Townhomes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/17/25 11:02 AM Beth Cardoza Just didn't have time to estimate all 3 sets of apartments and this one looked more complicated to bid than the Orchard apartments.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4357 - Kansas Ave Townhomes - 1330 S Kansas Ave, Spfd - King, Brad - Brad King - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.313Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "snq0bzcl2s5gs4m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:13.180Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Palmer, Rich",
+ "Contact_Notes": "",
+ "Contact_Person": "Rich Palmer",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "814 S Ridgemont Dr, Nixa",
+ "Job_Codes": "4356 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 814 S Ridgemont Dr, Nixa - Palmer, Rich",
+ "Job_Name": "Step thru",
+ "Job_Number": "4356",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4356 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177730579",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4356 - Step thru - 814 S Ridgemont Dr, Nixa - Palmer, Rich - Rich Palmer - 4177730579",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.384Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "70ou6uq3aa6oaeq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:13.304Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kelly, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Kelly",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "4355 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - Springfield - Kelly, Steve",
+ "Job_Name": "Garage",
+ "Job_Number": "4355",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4355 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/12/25 10:59 AM Beth Cardoza Went a different direction---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8169657985",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4355 - Garage - Springfield - Kelly, Steve - Steve Kelly - 8169657985",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.436Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pmvnw5eoqrgt9wf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:13.424Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lovelle, Bridget",
+ "Contact_Notes": "",
+ "Contact_Person": "Bridget ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4640 Silo Hills Dr, Spfd",
+ "Job_Codes": "4354 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 4640 Silo Hills Dr, Spfd - Lovelle, Bridget",
+ "Job_Name": "Repairs",
+ "Job_Number": "4354",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4354 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/02/25 5:03 PM Beth Cardoza Assume it's not awarded. She was supposed to get back to us a couple of weeks ago.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175761610",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4354 - Repairs - 4640 Silo Hills Dr, Spfd - Lovelle, Bridget - Bridget - 4175761610",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.488Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "au108nsnt6nrvge",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:13.543Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kruegar, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Kruegar",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "203 Devonshire Dr, Branson",
+ "Job_Codes": "4353 - ",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4353%20%5BR%5D%20%20%28203%20Devonshire%20Dr%2C%20Branson%29%20%28Kruegar%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": " - 203 Devonshire Dr, Branson - Kruegar, Paul",
+ "Job_Name": "",
+ "Job_Number": "4353",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4353 - ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4353 - - 203 Devonshire Dr, Branson - Kruegar, Paul - Paul Kruegar - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.536Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bwwgjuohvae0czy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:13.964Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "4352 - Lot 13/14",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4352%20%5BR%5D%20Lot%201314%20%28%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lot 13/14 - Omaha, AR - Peach Tree",
+ "Job_Name": "Lot 13/14",
+ "Job_Number": "4352",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4352 - Lot 13/14",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/17/25 1:38 PM Beth Cardoza Probably won't be ready until January/February.---\n08/27/25 11:39 AM Beth Cardoza L4 finish, no window wraps. upstairs bedroom ceiling and main living room ceiling will follow the roof line/vault---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175270457",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4352 - Lot 13/14 - Omaha, AR - Peach Tree - Chad Meadows - 4175270457",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.597Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1bmjvov4j3o0dhs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.107Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dinkens, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Dinkens",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "87 Tonto Way, Galena",
+ "Job_Codes": "4351 - Finish",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 87 Tonto Way, Galena - Dinkens, Brad",
+ "Job_Name": "Finish",
+ "Job_Number": "4351",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4351 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/27/25 11:37 AM Beth Cardoza He decided he could probably do it himself---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172396517",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4351 - Finish - 87 Tonto Way, Galena - Dinkens, Brad - Brad Dinkens - 4172396517",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.656Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pf385afk1y348wd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.220Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-09-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "4350 - Henry",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4350%20%5BR%5D%20Henry%20%28Nixa%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Henry - Nixa - Essick, Dusty",
+ "Job_Name": "Henry",
+ "Job_Number": "4350",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4350 - Henry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 860-1127",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4350 - Henry - Nixa - Essick, Dusty - Dusty Essick - (417) 860-1127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.723Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d08ts0gufu0uotv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.348Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sisco, Amy",
+ "Contact_Notes": "",
+ "Contact_Person": "Amy Sisco",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "828 W Seminole, Spfld",
+ "Job_Codes": "4349 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 828 W Seminole, Spfld - Sisco, Amy",
+ "Job_Name": "Crack",
+ "Job_Number": "4349",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4349 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 773-3055",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4349 - Crack - 828 W Seminole, Spfld - Sisco, Amy - Amy Sisco - (417) 773-3055",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.775Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d13xtrp9lnjbjwe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.476Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Miller, Jay",
+ "Contact_Notes": "",
+ "Contact_Person": "Jay Miller",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-27 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6071 State Hwy 125, Rogersville",
+ "Job_Codes": "4348 - Miller",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4348%20Miller%20(6071%20State%20Hwy%20125,%20Rogersville)%20(Miller,%20Jay)?csf=1&web=1&e=GMz6eY",
+ "Job_Full_Name": "Miller - 6071 State Hwy 125, Rogersville - Miller, Jay",
+ "Job_Name": "Miller",
+ "Job_Number": "4348",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4348 - Miller",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/21/25 3:29 PM Beth Cardoza Price for drywall and installation please. Basic knockdown finish. 3 way window wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417-840-5711",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4348 - Miller - 6071 State Hwy 125, Rogersville - Miller, Jay - Jay Miller - 417-840-5711",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.860Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g454bx5zmwp1v3g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.600Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Integrity Roofing",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg White",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5227 N State Hwy H, Spfd",
+ "Job_Codes": "4347 - Ceiling",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4347%20Ceiling%20%285227%20N%20State%20Hwy%20H%2C%20Spfd%29%20%28Integrity%20Roofing%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ceiling - 5227 N State Hwy H, Spfd - Integrity Roofing",
+ "Job_Name": "Ceiling",
+ "Job_Number": "4347",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4347 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/21/25 12:55 PM Beth Cardoza Eddie to view tomorrow 9:30. \n27 minute drive---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178613351",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4347 - Ceiling - 5227 N State Hwy H, Spfd - Integrity Roofing - Greg White - 4178613351",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.944Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qryh1wdtj3ytax9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.723Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zander, Wes",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "J#4346 [R] Basement (130 Jacks Way, Branson) (Zander, Wes)",
+ "Job_Codes": "4346 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4346%20Basement%20%28130%20Jacks%20Way%2C%20Branson%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - J#4346 [R] Basement (130 Jacks Way, Branson) (Zander, Wes) - Zander, Wes",
+ "Job_Name": "Basement",
+ "Job_Number": "4346",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4346 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/17/25 10:19 AM Beth Cardoza CO: Decided to have us finish and texture after all. But also we were way high on footage. May need to adjust.---\n09/17/25 6:08 AM david cardoza Stock 3,296\nSecond stock 224\nTotal stock 3,520\nLeftover 176\nHang 3,344---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4346 - Basement - J#4346 [R] Basement (130 Jacks Way, Branson) (Zander, Wes) - Zander, Wes - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:27.999Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hfz3wkaqt1uypgt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.831Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2802 Shepherd of the Hills Expwy, Branson",
+ "Job_Codes": "4345 - Uddin RV Park",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4345%20%5BR%5D%20Uddin%20RV%20Park%20%282802%20S%2EO%2ET%2E%20H%2E%20Expwy%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Uddin RV Park - 2802 Shepherd of the Hills Expwy, Branson - Still, Mark",
+ "Job_Name": "Uddin RV Park",
+ "Job_Number": "4345",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4345 - Uddin RV Park",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/18/25 4:03 PM Beth Cardoza orange peel, square corners and 3 way window wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4345 - Uddin RV Park - 2802 Shepherd of the Hills Expwy, Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.104Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "34qv7ir6oss0gmz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:14.947Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Scott + Reid General Contractors, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Rodney Mann II",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "10AM",
+ "EXT": 0,
+ "Email": "rmann@scottandreid.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2715 West 76 Country Boulevard, Branson, MO 65616",
+ "Job_Codes": "4344 - Shipley Donuts",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shipley Donuts - 2715 West 76 Country Boulevard, Branson, MO 65616 - Scott + Reid General Contractors, Inc.",
+ "Job_Name": "Shipley Donuts",
+ "Job_Number": "4344",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4344FX - Shipley Donuts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4344FX - Shipley Donuts - 2715 West 76 Country Boulevard, Branson, MO 65616 - Scott + Reid General Contractors, Inc. - Rodney Mann II - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.156Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i0iz3e3hu0kwljy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.079Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3421 S Pinehurst Ct, Spfd",
+ "Job_Codes": "4343 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 3421 S Pinehurst Ct, Spfd - King, Brad",
+ "Job_Name": "Remodel",
+ "Job_Number": "4343",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4343 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5035447884",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4343 - Remodel - 3421 S Pinehurst Ct, Spfd - King, Brad - Alex - 5035447884",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.232Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u8r8kbxw1vs9t0a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.199Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris McKinzy ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3867 S Royal Crest Ln, Rogersville",
+ "Job_Codes": "4342 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4342%20%5BS%5D%20Remodel%20%283867%20S%20Royal%20Crest%20Ln%2C%20Rogersville%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 3867 S Royal Crest Ln, Rogersville - Construct",
+ "Job_Name": "Repairs",
+ "Job_Number": "4342",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4342 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8166829083",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4342 - Repairs - 3867 S Royal Crest Ln, Rogersville - Construct - Chris McKinzy - 8166829083",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ke1kn5lalhb3os6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.324Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-18 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3937 E Woodhue St, Spfd",
+ "Job_Codes": "4341 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4341%20%5BR%5D%20%20%283937%20E%20Woodhue%20St%2C%20Spfd%29%20%28Colton%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 3937 E Woodhue St, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "4341",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4341 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/11/25 7:02 AM david cardoza Footage hung final 10,806---\n08/15/25 10:25 AM Beth Cardoza Estimate waiting on review---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172992407",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4341 - N/A - 3937 E Woodhue St, Spfd - Colton, Jim - Jim Colton - 4172992407",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.367Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dxbsnurudy1qrom",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.443Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Walker, Jeff",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Walker ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mountain View, MO",
+ "Job_Codes": "4340 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Mountain View, MO - Walker, Jeff",
+ "Job_Name": "N/A",
+ "Job_Number": "4340",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4340 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/15/25 10:13 AM Beth Cardoza Estimate waiting on review---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172742593",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4340 - N/A - Mountain View, MO - Walker, Jeff - Jeff Walker - 4172742593",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.440Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f6h54hp8csodfg6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.567Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "House Doctors",
+ "Contact_Notes": "",
+ "Contact_Person": "Lisa Carroll",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3166 W Seminole St, Spfd",
+ "Job_Codes": "4339 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 3166 W Seminole St, Spfd - House Doctors",
+ "Job_Name": "Repairs",
+ "Job_Number": "4339",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4339 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178311113",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4339 - Repairs - 3166 W Seminole St, Spfd - House Doctors - Lisa Carroll - 4178311113",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.508Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w7kt72iuv7xkl9e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.696Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Jeremy",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy Davis",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "730 N Woods Rd, Rogersville",
+ "Job_Codes": "4338 - Step thru",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4338%20Step%20Thru%20%28730%20N%20Woods%20Rd%2C%20Rogersvl%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Step thru - 730 N Woods Rd, Rogersville - Davis, Jeremy",
+ "Job_Name": "Step thru",
+ "Job_Number": "4338",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4338 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4338 - Step thru - 730 N Woods Rd, Rogersville - Davis, Jeremy - Jeremy Davis - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.576Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rjmep2dd8oqteti",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.831Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4337 - Glass Water #9",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Glass Water #9 - Branson - Still, Mark",
+ "Job_Name": "Glass Water #9",
+ "Job_Number": "4337",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4337 - Glass Water #9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/11/25 2:37 PM Beth Cardoza Glasswater # 9 Dave walkthrough notes 8/9/25\nThree levels including the walkout basement level\nNo garages\nAll 9 foot flat except for the switchback stairway that goes to the upper level and the basement level. The midway land",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4337 - Glass Water #9 - Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.644Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5ee6qmthbobfhau",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:15.959Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Scribner, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Scribner",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "4336 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Omaha, AR - Scribner, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "4336",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4336 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/08/25 3:43 PM Beth Cardoza Should be getting plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9135793509",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4336 - N/A - Omaha, AR - Scribner, Mark - Mark Scribner - 9135793509",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.728Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zckefg4cc6kzrt9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:16.091Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "-",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-12 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "551 Pinewoods Village, Branson",
+ "Job_Codes": "4335 - Basement",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4335%20Basement%20%28551%20Pinewoods%20Village%2C%20Hollister%29%20%28Vision%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 551 Pinewoods Village, Branson - Vision Construction",
+ "Job_Name": "Basement",
+ "Job_Number": "4335",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4335 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/18/25 4:24 PM david cardoza Stock 4,024\nLeftover 160\nHang 3,864---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4335 - Basement - 551 Pinewoods Village, Branson - Vision Construction - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.796Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oak2tqkbg127ivb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:16.223Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Signature Home",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kellogg",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "405 Hughes Rd, Willard",
+ "Job_Codes": "4334 - Repair",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 405 Hughes Rd, Willard - Signature Home",
+ "Job_Name": "Repair",
+ "Job_Number": "4334",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4334 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172243743",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4334 - Repair - 405 Hughes Rd, Willard - Signature Home - Justin Kellogg - 4172243743",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.859Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9istb9128fjfr2q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:16.355Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5657 S Glen Abby Ct, Spfd",
+ "Job_Codes": "4333 - Olson Bunker",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4333%20Olson%20Bunker%20(Highland%20Springs)%20(Weber,%20Bryon)?csf=1&web=1&e=xVDRWV",
+ "Job_Full_Name": "Olson Bunker - 5657 S Glen Abby Ct, Spfd - Weber, Bryon",
+ "Job_Name": "Olson Bunker",
+ "Job_Number": "4333",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4333 - Olson Bunker",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/21/25 2:40 PM Beth Cardoza The ceiling height is 9 foot. We will need some drywall work upstairs in the garage. We will be extending walls up the size of the staircase only. So will need both sides of the stair walls above. That ceiling height is aroun",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4333 - Olson Bunker - 5657 S Glen Abby Ct, Spfd - Weber, Bryon - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.928Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "htxb1kua29cuhrs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:16.483Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Blahr@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "890 Ray A Carver Drive, Neosho, MO, 64850",
+ "Job_Codes": "4332 - Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Camp Crowder Solider Barracks - BLDG 758 - 890 Ray A Carver Drive, Neosho, MO, 64850 - Killian Construction",
+ "Job_Name": "Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Number": "4332",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4332PW - Camp Crowder Solider Barracks - BLDG 758",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203263",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4332PW - Camp Crowder Solider Barracks - BLDG 758 - 890 Ray A Carver Drive, Neosho, MO, 64850 - Killian Construction - Blake Lahr - 4175203263",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:28.980Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h18l4kc30up5aja",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:16.600Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction ",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-25 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Blahr@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "890 Ray A Carver Drive, Neosho, MO, 64850",
+ "Job_Codes": "4331 - Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%2E1%20Estimating%20Commercial%2F4331%2D4332Camp%20Crowder%20%2D%20Soldier%20Barracks%20757%2D758&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Camp Crowder Solider Barracks - BLDG 757 - 890 Ray A Carver Drive, Neosho, MO, 64850 - Killian Construction ",
+ "Job_Name": "Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Number": "4331",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4331PW - Camp Crowder Solider Barracks - BLDG 757",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "PW",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203263",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4331PW - Camp Crowder Solider Barracks - BLDG 757 - 890 Ray A Carver Drive, Neosho, MO, 64850 - Killian Construction - Blake Lahr - 4175203263",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.032Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g7qhyher20eo8ks",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:09.955Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dave Grundfest Comapny",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave Grundfest",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-20 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4330 - Dyke Industries New [Dave Grundfest Company]",
+ "Has_Attachments": false,
+ "Job_Address": "Austin Ave and Vista St, Springfield, MO",
+ "Job_Codes": "4330 - Dyke Industries New Build",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4330 - Dyke Industries New [Dave Grundfest Company]",
+ "Job_Full_Name": "Dyke Industries New Build - Austin Ave and Vista St, Springfield, MO - Dave Grundfest Comapny",
+ "Job_Name": "Dyke Industries New Build",
+ "Job_Number": "4330",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4330FX - Dyke Industries New Build",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Missed the deadline but still sent budgetary numbers next day",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5015682324",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4330FX - Dyke Industries New Build - Austin Ave and Vista St, Springfield, MO - Dave Grundfest Comapny - Dave Grundfest - 5015682324",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.121Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aazizaou0hh4pwy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:10.092Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowel, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Dowell",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1442 E Camino Alto Dr, Spfd",
+ "Job_Codes": "4329 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1442 E Camino Alto Dr, Spfd - Dowel, Kyle",
+ "Job_Name": "Repairs",
+ "Job_Number": "4329",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4329 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178603628",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4329 - Repairs - 1442 E Camino Alto Dr, Spfd - Dowel, Kyle - Kyle Dowell - 4178603628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.201Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ubfuxt22cwj7ir9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:16.987Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kruegar, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Kruegar",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "219 Summerbrook, Branson",
+ "Job_Codes": "4328 - Shower",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shower - 219 Summerbrook, Branson - Kruegar, Paul",
+ "Job_Name": "Shower",
+ "Job_Number": "4328",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4328 - Shower",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4328 - Shower - 219 Summerbrook, Branson - Kruegar, Paul - Paul Kruegar - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.284Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ljeaffehzbx6yba",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:17.119Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Michelle",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Smith ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8418 Cottage Ln, Nixa",
+ "Job_Codes": "4327 - Ceiling repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling repair - 8418 Cottage Ln, Nixa - Smith, Michelle",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "4327",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4327 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172243287",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4327 - Ceiling repair - 8418 Cottage Ln, Nixa - Smith, Michelle - Michelle Smith - 4172243287",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.373Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zq8hywoeau3yg7s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:17.239Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wodward, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Woodward",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "824 Gold Rush Ave, Nixa",
+ "Job_Codes": "4326 - Crack",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 824 Gold Rush Ave, Nixa - Wodward, Don",
+ "Job_Name": "Crack",
+ "Job_Number": "4326",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4326 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/08/25 11:30 AM Beth Cardoza no response. Assumed not awarded---\n08/01/25 11:38 AM Beth Cardoza Also, he installed trim in the basement, it's about a 1300 sqft basement, and he was wondering if we would be able to caulk it. I said maybe, I'd check.---\n08/01/25 11:37 AM Beth Cardoza Don has a couple of cracks running from ceiling to floor both upstairs and downstairs near fireplaces. ceilings are 8' and 9'. Sending photos. \n\nNot very noticeable. But he's selling the house and figures they'd come up in a",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172250257",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4326 - Crack - 824 Gold Rush Ave, Nixa - Wodward, Don - Don Woodward - 4172250257",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.456Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t7rdl8yhirlhhrn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:17.359Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Farm Rd 113, Willard",
+ "Job_Codes": "4325 - Nothum Barn",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4325%20%5BR%5D%20Nothum%20Barn%20%28Farm%20Rd%20113%2C%20Willard%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nothum Barn - Farm Rd 113, Willard - Construct",
+ "Job_Name": "Nothum Barn",
+ "Job_Number": "4325",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4325 - Nothum Barn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/01/25 1:37 PM Beth Cardoza Yes, everything gets drywall except the stalls. Quote as usual with the 1/2” on the walls with an add for 5/8. No window wraps and quote as usual with the different levels as additional costs for level 4 then level 5.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172250257",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4325 - Nothum Barn - Farm Rd 113, Willard - Construct - Johanna - 4172250257",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.512Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "16h2yxxngk1pk3y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:17.459Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gustafson, Regan",
+ "Contact_Notes": "",
+ "Contact_Person": "Regan Gustafson ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1114 E Westchester Dr, Spfd",
+ "Job_Codes": "4324 - Ceiling repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling repair - 1114 E Westchester Dr, Spfd - Gustafson, Regan",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "4324",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4324 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/01/25 2:50 PM Beth Cardoza Needs to be looked at. Hopefully the week of the 11th when Eddie comes back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9124819998",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4324 - Ceiling repair - 1114 E Westchester Dr, Spfd - Gustafson, Regan - Regan Gustafson - 9124819998",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.587Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8t4xeuhtjhgjylz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:17.583Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Assemblies of God",
+ "Contact_Notes": "",
+ "Contact_Person": "Sam Wassam",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "swassam@ag.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4323 - Prayer Center Bathrooms",
+ "Has_Attachments": false,
+ "Job_Address": "1445 N Booneville Ave, Springfield, MO 65802",
+ "Job_Codes": "4323 - Prayer Center Restrooms",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4323 - AG Prayer Center Bathrooms",
+ "Job_Full_Name": "Prayer Center Restrooms - 1445 N Booneville Ave, Springfield, MO 65802 - Assemblies of God",
+ "Job_Name": "Prayer Center Restrooms",
+ "Job_Number": "4323",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4323FXEX - Prayer Center Restrooms",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178444007",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4323FXEX - Prayer Center Restrooms - 1445 N Booneville Ave, Springfield, MO 65802 - Assemblies of God - Sam Wassam - 4178444007",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.652Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "na4cnfsefa4az52",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:10.573Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Graham Hunt",
+ "Contact_Notes": "",
+ "Contact_Person": "Graham Hunt ",
+ "Docs_Uploaded": true,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "64 Horse Gate Trl, Long Lane, MO 65590",
+ "Job_Codes": "4322 - Graham Hunt",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Graham Hunt - 64 Horse Gate Trl, Long Lane, MO 65590 - Graham Hunt",
+ "Job_Name": "Graham Hunt",
+ "Job_Number": "4322",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4322FX - Graham Hunt",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4322FX - Graham Hunt - 64 Horse Gate Trl, Long Lane, MO 65590 - Graham Hunt - Graham Hunt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.708Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "erazsfyu3zcsgyk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:10.688Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6000 Merion Dr, Nixa",
+ "Job_Codes": "4321 - Parvathaneni",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4321%20%5BR%5D%20Parvathaneni%20%286000%20Merion%20Dr%2C%20Nixa%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Parvathaneni - 6000 Merion Dr, Nixa - Weber, Bryon",
+ "Job_Name": "Parvathaneni",
+ "Job_Number": "4321",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4321 - Parvathaneni",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/18/25 12:01 PM Beth Cardoza We will need smooth wall L4 can you list and option for the L5. No windows will be wrapped---\n07/29/25 4:32 PM Beth Cardoza They have a meeting with homeowner, Tara Parvathaneni on the 15th about finishes and want estimates back by 20th.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4321 - Parvathaneni - 6000 Merion Dr, Nixa - Weber, Bryon - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.755Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gwzvxslg0hl2etp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:17.952Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crossland",
+ "Contact_Notes": "",
+ "Contact_Person": "Ernie Perkins",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "eperkins@crossland.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1001 E Chestnut Expressway, Springfield, MO 65802",
+ "Job_Codes": "4320 - OTC Info East Office Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "OTC Info East Office Reno - 1001 E Chestnut Expressway, Springfield, MO 65802 - Crossland",
+ "Job_Name": "OTC Info East Office Reno",
+ "Job_Number": "4320",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4320PWEX - OTC Info East Office Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4320PWEX - OTC Info East Office Reno - 1001 E Chestnut Expressway, Springfield, MO 65802 - Crossland - Ernie Perkins - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.828Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3pj1si1cp0sgzc9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:18.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crossland",
+ "Contact_Notes": "",
+ "Contact_Person": "Ernie Perkins",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "eperkins@crossland.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4319 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Crossland",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4319",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4319PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4319PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Crossland - Ernie Perkins - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.884Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "an42ttcibo6k7p3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:18.196Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "OMH",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1900 Red Rock Rd, Galena",
+ "Job_Codes": "4318 - Brummel",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4318%20%5BR%5D%20Brummel%20%281900%20Red%20Rock%20Rd%2C%20Galena%29%20%28OMH%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Brummel - 1900 Red Rock Rd, Galena - OMH",
+ "Job_Name": "Brummel",
+ "Job_Number": "4318",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4318 - Brummel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/29/25 11:45 AM Beth Cardoza The walls are 9' except where noted as vaults. All vaults will be 6:12 and the sloped ceiling in the four season room is 9' at the front of the house, sloped up to 14' in the back of the house. 3 way window wrap, standard t",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4318 - Brummel - 1900 Red Rock Rd, Galena - OMH - David Herd - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:29.937Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tssi2wtk7k63gxr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:18.312Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cahills",
+ "Contact_Notes": "",
+ "Contact_Person": "Sarah Homer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "sarah@cahillsconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4317 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Cahills",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4317",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4317PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4317PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Cahills - Sarah Homer - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.001Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dfaymv316sb1zxz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:18.448Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Horizon Retail",
+ "Contact_Notes": "",
+ "Contact_Person": "Sandra Rodriguez",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Sandrar@horizonretail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4316 - Edward Jones - Rogersville",
+ "Has_Attachments": false,
+ "Job_Address": "110 Dempsey Dr, Rogersville, MO 65742",
+ "Job_Codes": "4316 - Edward Jones Rogersville",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4316 - Edward Jones - Rogersville",
+ "Job_Full_Name": "Edward Jones Rogersville - 110 Dempsey Dr, Rogersville, MO 65742 - Horizon Retail",
+ "Job_Name": "Edward Jones Rogersville",
+ "Job_Number": "4316",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4316FX - Edward Jones Rogersville",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2628656212",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4316FX - Edward Jones Rogersville - 110 Dempsey Dr, Rogersville, MO 65742 - Horizon Retail - Sandra Rodriguez - 2628656212",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.068Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e6qgpaap7aeyd7r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:11.124Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-04 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4315 - CU JTEC Locker and RR Remodel - Friga",
+ "Has_Attachments": false,
+ "Job_Address": "1736 East Sunshine Suite 417, Springfield, MO 656804",
+ "Job_Codes": "4315 - CU JTEC Locker Room and RR Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4315 - CU JTEC Locker and RR Remodel - Friga",
+ "Job_Full_Name": "CU JTEC Locker Room and RR Remodel - 1736 East Sunshine Suite 417, Springfield, MO 656804 - Friga Construction",
+ "Job_Name": "CU JTEC Locker Room and RR Remodel",
+ "Job_Number": "4315",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4315FXEX - CU JTEC Locker Room and RR Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4315FXEX - CU JTEC Locker Room and RR Remodel - 1736 East Sunshine Suite 417, Springfield, MO 656804 - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.135Z",
+ "gantt_Info": null,
+ "gantt_View": true,
+ "id": "ijhz0e5j8sp5wgi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 23:00:25.265Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Brown ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "gbrown@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4314 - COTO Meat Processing Facility - DeWitt",
+ "Has_Attachments": false,
+ "Job_Address": "1 Opportunity Ave, Point Lookout, MO 65726",
+ "Job_Codes": "4314 - COTO Meat Processing Facility",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4314 - COTO Meat Processing Facility - DeWitt",
+ "Job_Full_Name": "COTO Meat Processing Facility - 1 Opportunity Ave, Point Lookout, MO 65726 - DeWitt and Associates",
+ "Job_Name": "COTO Meat Processing Facility",
+ "Job_Number": "4314",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4314FX - COTO Meat Processing Facility",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173703895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4314FX - COTO Meat Processing Facility - 1 Opportunity Ave, Point Lookout, MO 65726 - DeWitt and Associates - Greg Brown - 4173703895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.199Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "feh5ue9n8msls6x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:11.436Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-04 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4313 - Eagle Crest Business Park - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "1810 East Pythian Street, Springfield, MO 65802",
+ "Job_Codes": "4313 - Eagle Crest Business Park",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4313 - Eagle Crest Business Park - Ross",
+ "Job_Full_Name": "Eagle Crest Business Park - 1810 East Pythian Street, Springfield, MO 65802 - Ross Construction",
+ "Job_Name": "Eagle Crest Business Park",
+ "Job_Number": "4313",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4313FX - Eagle Crest Business Park",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4313FX - Eagle Crest Business Park - 1810 East Pythian Street, Springfield, MO 65802 - Ross Construction - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j9xhmsp2nzslvws",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:11.585Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Thomas Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Drury",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jdrury@thomasbuilder.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4312 - Koncept Auto Hamilton Ford - Thomas Const",
+ "Has_Attachments": false,
+ "Job_Address": "602 W Rose Ave, Crane, MO 65633",
+ "Job_Codes": "4312 - Koncept Auto - Hamilton Ford",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4312 - Koncept Auto Hamilton Ford - Thomas Const",
+ "Job_Full_Name": "Koncept Auto - Hamilton Ford - 602 W Rose Ave, Crane, MO 65633 - Thomas Construction",
+ "Job_Name": "Koncept Auto - Hamilton Ford",
+ "Job_Number": "4312",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4312FX - Koncept Auto - Hamilton Ford",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5737230366",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4312FX - Koncept Auto - Hamilton Ford - 602 W Rose Ave, Crane, MO 65633 - Thomas Construction - Jason Drury - 5737230366",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.336Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8sn87y35v3fl38d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:11.699Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett (636) 299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5566 E Cavalcade Ln, Spfd",
+ "Job_Codes": "4311 - WH 45",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "WH 45 - 5566 E Cavalcade Ln, Spfd - Everlasting Homes",
+ "Job_Name": "WH 45",
+ "Job_Number": "4311",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4311 - WH 45",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/07/25 7:20 AM david cardoza Stock 18,312---\n08/04/25 2:34 PM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4311 - WH 45 - 5566 E Cavalcade Ln, Spfd - Everlasting Homes - Jerry Burnett (636) 299-1362 - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.404Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wjd8qr231gkmtvs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:19.160Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Chad Shell",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Shell - 417.840.0187",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4310 - Central Assembly",
+ "Has_Attachments": false,
+ "Job_Address": "1301 N Boonville Ave, Springfield, MO 65802",
+ "Job_Codes": "4310 - Central Assembly of God Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4310 - Central Assembly",
+ "Job_Full_Name": "Central Assembly of God Church - 1301 N Boonville Ave, Springfield, MO 65802 - Chad Shell",
+ "Job_Name": "Central Assembly of God Church",
+ "Job_Number": "4310",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4310FXEX - Central Assembly of God Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178400187",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4310FXEX - Central Assembly of God Church - 1301 N Boonville Ave, Springfield, MO 65802 - Chad Shell - Chad Shell - 417.840.0187 - 4178400187",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.463Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "juxtr4skkl1wxqz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:11.910Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "CJ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5353 S Scenic Ave, Spfd",
+ "Job_Codes": "4309 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4309%20Repairs%20%285353%20S%20Scenic%20Ave%2C%20Spfd%29%20%28Cowherd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 5353 S Scenic Ave, Spfd - Cowherd",
+ "Job_Name": "Repairs",
+ "Job_Number": "4309",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4309 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/18/25 12:09 PM Beth Cardoza Apparently no one gave me new measurements but it was completed 2 weeks ago (Dave said he would re-measure. Eddie was managing so Dave probably never went back)---\n08/04/25 12:39 PM Beth Cardoza Adding a wall or something. Dave plans to re-measure. Not ready yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4309 - Repairs - 5353 S Scenic Ave, Spfd - Cowherd - CJ - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.519Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wbiihlts8m8ivqn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:19.412Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Seven7Brew",
+ "Contact_Notes": "",
+ "Contact_Person": "Britt Dobbins",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Britt.dobbins@7brew.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1343 Southern Hills Cernter, West Plains, MO",
+ "Job_Codes": "4308 - Seven Brew West Plains",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Seven Brew West Plains - 1343 Southern Hills Cernter, West Plains, MO - Seven7Brew",
+ "Job_Name": "Seven Brew West Plains",
+ "Job_Number": "4308",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4308FX - Seven Brew West Plains",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "We were too high for the project",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9187085416",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4308FX - Seven Brew West Plains - 1343 Southern Hills Cernter, West Plains, MO - Seven7Brew - Britt Dobbins - 9187085416",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.589Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xc0okp2eedyh6x1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:31.190Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "199 Adair, Branson",
+ "Job_Codes": "4307 - Finish",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 199 Adair, Branson - Still, Mark",
+ "Job_Name": "Finish",
+ "Job_Number": "4307",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4307 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4307 - Finish - 199 Adair, Branson - Still, Mark - Mike Steel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.660Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qbwxgp077ow3ya0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:19.648Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Barry Albrecht",
+ "Contact_Notes": "",
+ "Contact_Person": "Barry Albrecht ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2001 Michael Ln Nixa, MO 65714",
+ "Job_Codes": "4306 - Kitchenland USA Bathroom Ceilings",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchenland USA Bathroom Ceilings - 2001 Michael Ln Nixa, MO 65714 - Barry Albrecht",
+ "Job_Name": "Kitchenland USA Bathroom Ceilings",
+ "Job_Number": "4306",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4306FX - Kitchenland USA Bathroom Ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177250700",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4306FX - Kitchenland USA Bathroom Ceilings - 2001 Michael Ln Nixa, MO 65714 - Barry Albrecht - Barry Albrecht - 4177250700",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.717Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "27b4ntdsm6ny56g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:19.784Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6015 S Holland, Spfd",
+ "Job_Codes": "4305 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4305%20%20%286015%20S%20Holland%2C%20Spfd%29%20%28Colton%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 6015 S Holland, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "4305",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4305 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/02/25 4:42 PM david cardoza Stock 11,382\nNo leftover---\n07/28/25 12:13 PM Beth Cardoza 11,382sf \nBill Mayberry measured---\n07/28/25 12:13 PM Beth Cardoza 6015 So Holland\nSpringfield, Mo. \n\n37.10429° N, 93.28755° W\n\nSingle level home \n\nThe entry and main living area is 12 foot flat \n\nThe rest of the house is 9 foot flat except for the master bedroom has a pop-up to 10 foot fla",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4305 - N/A - 6015 S Holland, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.772Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mbmw45fwj2cnewq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:19.892Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Harris",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "btharris@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3815 Green Mountain Drive, Branson, MO 65672",
+ "Job_Codes": "4304 - Taney County Ambulance Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Taney County Ambulance Station - 3815 Green Mountain Drive, Branson, MO 65672 - Killian Construction",
+ "Job_Name": "Taney County Ambulance Station",
+ "Job_Number": "4304",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4304FXEX - Taney County Ambulance Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203246",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4304FXEX - Taney County Ambulance Station - 3815 Green Mountain Drive, Branson, MO 65672 - Killian Construction - Brandon Harris - 4175203246",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.831Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9u5asr66d20ixb4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.012Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Forester Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Clint Forester",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Marionville",
+ "Job_Codes": "4303 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4303%20%5BR%5D%20%20%28Marionville%29%20%28Forester%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Marionville - Forester Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "4303",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4303 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/22/25 1:53 PM Beth Cardoza Near Marionville. Treebark ceilings, light orange peel on walls, bullnose, 3 way window wraps. Ready maybe October or November.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172243156",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4303 - N/A - Marionville - Forester Construction - Clint Forester - 4172243156",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:30.893Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6s5fzdhtsjte44v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.128Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick ",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-07-28 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dusty@essickbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1123 Spokane Rd, Spokane, MO 65754",
+ "Job_Codes": "4302 - Spokane HS Add On",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4302%20Spokane%20HS%20%281123%20Spokane%20Rd%2C%20Spokane%29%20%28Essick%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Spokane HS Add On - 1123 Spokane Rd, Spokane, MO 65754 - Essick Construction",
+ "Job_Name": "Spokane HS Add On",
+ "Job_Number": "4302",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4302FXEX - Spokane HS Add On",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "---09/03/25 5:55 PM Beth Cardoza Need estimate for ceiling added---\n08/21/25 6:29 AM david cardoza First stock 3,098\nSecond stock 648\nTotal 3,746\nNo leftover---",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4302FXEX - Spokane HS Add On - 1123 Spokane Rd, Spokane, MO 65754 - Essick Construction - Dusty Essick - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.008Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m0q5j0e6z4nurvo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.240Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mike Vanpelt",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Vanpelt ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-28 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "yellowbonnettmo@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4301 - Yellow Bonnett Reno - Mike VanPelt",
+ "Has_Attachments": false,
+ "Job_Address": "323 N Patton Alley, Springfield, MO 65810",
+ "Job_Codes": "4301 - Yellow Bonnett Building Repairs",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4301 - Yellow Bonnett Reno - Mike VanPelt",
+ "Job_Full_Name": "Yellow Bonnett Building Repairs - 323 N Patton Alley, Springfield, MO 65810 - Mike Vanpelt",
+ "Job_Name": "Yellow Bonnett Building Repairs",
+ "Job_Number": "4301",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4301FX - Yellow Bonnett Building Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178611200",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4301FX - Yellow Bonnett Building Repairs - 323 N Patton Alley, Springfield, MO 65810 - Mike Vanpelt - Mike Vanpelt - 4178611200",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.065Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sdj7hkn3liuu4qk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:12.739Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett, Jerry",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fairgrove",
+ "Job_Codes": "4300 - Jones",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4300%20%5BR%5D%20Jones%20%28Marshfield%29%20%28Burnett%2C%20Jerry%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Jones - Fairgrove - Burnett, Jerry",
+ "Job_Name": "Jones",
+ "Job_Number": "4300",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4300 - Jones",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "07/30/25 4:16 PM Beth Cardoza CO? Burnett thinks the price was on the high side. Rick left him a voicemail... we'll work with him, whatever he needs. Asking to confirm about the beam and the master vault as that contributes to the pricing. We'll see. He's\n07/30/25 4:13 PM Beth Cardoza Saying it's actually Niangua.---\n07/22/25 10:19 AM Beth Cardoza Fair grove, normal finishes, square, and no window wrap.--- Guessing not awarded -BC 10/22",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4300 - Jones - Fairgrove - Burnett, Jerry - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.128Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "05v4at7f026nqwv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.516Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lennard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Lenard Properties ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2707 W Olive St, Unit B, Spfd",
+ "Job_Codes": "4299 - Repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 2707 W Olive St, Unit B, Spfd - Lennard Properties",
+ "Job_Name": "Repair",
+ "Job_Number": "4299",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4299 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/21/25 11:07 AM Beth Cardoza Lock box on back door code is 6996---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177252125",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4299 - Repair - 2707 W Olive St, Unit B, Spfd - Lennard Properties - Lenard Properties - 4177252125",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.192Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aiox643doh8e81d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.628Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kraft, Grace",
+ "Contact_Notes": "",
+ "Contact_Person": "Grace Kraft",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "liberty0458@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5715 Pinehurst, Spfd",
+ "Job_Codes": "4298 - Popcorn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 5715 Pinehurst, Spfd - Kraft, Grace",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4298",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4298 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/21/25 10:37 AM Beth Cardoza Wanted painting too (including walls). Might mention in estimate email that we did not include/don't have time for that.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4298 - Popcorn - 5715 Pinehurst, Spfd - Kraft, Grace - Grace Kraft - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.272Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bld5w8gtng609kh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.736Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Russell Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Breannan Bagwell",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "bbagwell@russellco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3815 Green Mountain Dr",
+ "Job_Codes": "4297 - Taney County Ambulance Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Taney County Ambulance Station - 3815 Green Mountain Dr - Russell Construction",
+ "Job_Name": "Taney County Ambulance Station",
+ "Job_Number": "4297",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4297PWEX - Taney County Ambulance Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172902400",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4297PWEX - Taney County Ambulance Station - 3815 Green Mountain Dr - Russell Construction - Breannan Bagwell - 4172902400",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.332Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yhxng3nk21m4gf8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.856Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4296 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - A2D",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4296",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4296PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4296PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.404Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rxtwayvk2v8mixx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:20.983Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3815 Green Mountain Drive, Branson, MO 65672",
+ "Job_Codes": "4295 - Taney County Ambulance Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4295%20Taney%20County%20Ambulance%20%5BKCI%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Taney County Ambulance Station - 3815 Green Mountain Drive, Branson, MO 65672 - KCI",
+ "Job_Name": "Taney County Ambulance Station",
+ "Job_Number": "4295",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4295PWEX - Taney County Ambulance Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175128834",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4295PWEX - Taney County Ambulance Station - 3815 Green Mountain Drive, Branson, MO 65672 - KCI - Stephen Buechler - 4175128834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.496Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tm9cn1qufpyh6l5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 06:02:21.107Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1047 Bob Barker BLVD, Springfield, MO 65802",
+ "Job_Codes": "4294 - OTC Info East Office Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "OTC Info East Office Reno - 1047 Bob Barker BLVD, Springfield, MO 65802 - KCI",
+ "Job_Name": "OTC Info East Office Reno",
+ "Job_Number": "4294",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4294FXEX - OTC Info East Office Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175128834",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4294FXEX - OTC Info East Office Reno - 1047 Bob Barker BLVD, Springfield, MO 65802 - KCI - Stephen Buechler - 4175128834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mdn75x213m3447m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:38.572Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cornerstone Building",
+ "Contact_Notes": "",
+ "Contact_Person": "Lori Sweazey",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4293 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Cornerstone Building",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4293",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4293PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4293PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Cornerstone Building - Lori Sweazey - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.632Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "znf3rrmqjq1g89u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:38.688Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Snyder Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "David Hays",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "d.hays@snydercg.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4292 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Snyder Construction",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4292",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4292PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178876897",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4292PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Snyder Construction - David Hays - 4178876897",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.699Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lq038zbj1o8tzkt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:38.793Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-28 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4291 - Andy Custard HQ - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield MO",
+ "Job_Codes": "4291 - Andys Custard HQ - SD Budget",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4291 - Andy Custard HQ - Ross",
+ "Job_Full_Name": "Andys Custard HQ - SD Budget - Springfield MO - Ross Construction",
+ "Job_Name": "Andys Custard HQ - SD Budget",
+ "Job_Number": "4291",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4291FX - Andys Custard HQ - SD Budget",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4291FX - Andys Custard HQ - SD Budget - Springfield MO - Ross Construction - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.785Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z0ohijglmofc83g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:13.553Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "klucas@dewitt-assoicates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1001 E Chestnut Expressway, Springfield, MO 65802",
+ "Job_Codes": "4290 - OTC Info East Office Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "OTC Info East Office Reno - 1001 E Chestnut Expressway, Springfield, MO 65802 - Dewitt and Associates",
+ "Job_Name": "OTC Info East Office Reno",
+ "Job_Number": "4290",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4290FXEX - OTC Info East Office Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4290FXEX - OTC Info East Office Reno - 1001 E Chestnut Expressway, Springfield, MO 65802 - Dewitt and Associates - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.860Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0j1dsjvtsqny9e4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:38.999Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1001 E Chestnut Expressway, Springfield, MO 65802",
+ "Job_Codes": "4289 - OTC Info East Office Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4289%20OTC%20Info%20East%20Office%20Reno%20%5BMultiple%20GC%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "OTC Info East Office Reno - 1001 E Chestnut Expressway, Springfield, MO 65802 - Friga Construction",
+ "Job_Name": "OTC Info East Office Reno",
+ "Job_Number": "4289",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4289FXEX - OTC Info East Office Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4289FXEX - OTC Info East Office Reno - 1001 E Chestnut Expressway, Springfield, MO 65802 - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:31.928Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mjcbvzcc10qlcdc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.119Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Johnson, Leanne",
+ "Contact_Notes": "",
+ "Contact_Person": "Leanne Johnson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4374 E University St, Spfd",
+ "Job_Codes": "4288 - Patch",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 4374 E University St, Spfd - Johnson, Leanne",
+ "Job_Name": "Patch",
+ "Job_Number": "4288",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4288 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4288 - Patch - 4374 E University St, Spfd - Johnson, Leanne - Leanne Johnson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.000Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n368z1r1jozmxg3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.227Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Meeks Chiropractic",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4287 - Meeks Chiropractic",
+ "Has_Attachments": false,
+ "Job_Address": "500 E. Battlefield",
+ "Job_Codes": "4287 - Meeks Chiropractic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4287 - Meeks Chiropractic",
+ "Job_Full_Name": "Meeks Chiropractic - 500 E. Battlefield - Meeks Chiropractic",
+ "Job_Name": "Meeks Chiropractic",
+ "Job_Number": "4287",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4287FX - Meeks Chiropractic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Client decided to do work in house",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178870340",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4287FX - Meeks Chiropractic - 500 E. Battlefield - Meeks Chiropractic - Josh - 4178870340",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.071Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yf1usxwih9qqfux",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:13.913Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "O'Brian, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle (203) 300-8895",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "916 Dustin Ln, Nixa",
+ "Job_Codes": "4286 - Texture patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture patches - 916 Dustin Ln, Nixa - O'Brian, Kyle",
+ "Job_Name": "Texture patches",
+ "Job_Number": "4286",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4286 - Texture patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "2033008895",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4286 - Texture patches - 916 Dustin Ln, Nixa - O'Brian, Kyle - Kyle (203) 300-8895 - 2033008895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.151Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fa6nymwsgqr7t0e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.456Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bartholom, Tony",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony (417) 840-2070 Occupant Mark: (417) 987-9939",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1536 S John, Spfd",
+ "Job_Codes": "4285 - Plumbing patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Plumbing patches - 1536 S John, Spfd - Bartholom, Tony",
+ "Job_Name": "Plumbing patches",
+ "Job_Number": "4285",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4285 - Plumbing patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4179879939",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4285 - Plumbing patches - 1536 S John, Spfd - Bartholom, Tony - Tony (417) 840-2070 Occupant Mark: (417) 987-9939 - 4179879939",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.232Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c0s6hlq0qgm848x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.559Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hair, Darcy",
+ "Contact_Notes": "",
+ "Contact_Person": "Darcy Hair",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Chestnut Ridge",
+ "Job_Codes": "4284 - Popcorn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - Chestnut Ridge - Hair, Darcy",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4284",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4284 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175276499",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4284 - Popcorn - Chestnut Ridge - Hair, Darcy - Darcy Hair - 4175276499",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.300Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "66o9d04y0eqc63j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.675Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Parker, Ronald",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ron.parker0@outlook.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "4283 - -",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4283%20%5BR%5D%20%20%28Nixa%29%20%28Parker%2C%20Ronald%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "- - Nixa - Parker, Ronald",
+ "Job_Name": "-",
+ "Job_Number": "4283",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4283 - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/11/25 4:54 PM Beth Cardoza The ceiling heights are shown. There are vaulted ceilings in the foyer and great room. The great room pitch is approximately a 6/12 and is somewhere around 15.5' at the peak. The foyer is 12/12 and is approximately 15' at",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4283 - - - Nixa - Parker, Ronald - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.359Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "44o1ydlk8e0dvmg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.787Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "New Life Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Ashley Garrett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "776 W FR 186, Spfd",
+ "Job_Codes": "4282 - Bath",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 776 W FR 186, Spfd - New Life Church",
+ "Job_Name": "Bath",
+ "Job_Number": "4282",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4282 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178943913",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4282 - Bath - 776 W FR 186, Spfd - New Life Church - Ashley Garrett - 4178943913",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.416Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xve7g3abs8z0cdb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:39.904Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H&H Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Hunt ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "kellyh.hhc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4281 - Meeks - Chiropractic",
+ "Has_Attachments": false,
+ "Job_Address": "23711 Lawrence 2120, Marionville",
+ "Job_Codes": "4281 - -",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4281 - Meeks - Chiropractic",
+ "Job_Full_Name": "- - 23711 Lawrence 2120, Marionville - H&H Construction",
+ "Job_Name": "-",
+ "Job_Number": "4281",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4281 - -",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/10/25 5:40 PM Beth Cardoza No drywall in the garage. Light orange peel texture in the house. \n\nThey won’t break ground until first of August so we are several months away from drywall. \nWindows will be wrapped all the way around in drywall. \nSquare cor",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172348803",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4281 - - - 23711 Lawrence 2120, Marionville - H&H Construction - Kelly Hunt - 4172348803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.485Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7p2fuwmq2z5z13q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:14.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BTB Construction LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Bradberry",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "4280 - TradeHome Shoes",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4280%20TradeHome%20Shoes%20%28Branson%20Landing%29%20%28BTB%20Construction%20LLC%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "TradeHome Shoes - Branson Landing - BTB Construction LLC",
+ "Job_Name": "TradeHome Shoes",
+ "Job_Number": "4280",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4280FX - TradeHome Shoes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Tracy Bradberry (417) 699-1445",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176696002",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4280FX - TradeHome Shoes - Branson Landing - BTB Construction LLC - Brian Bradberry - 4176696002",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.551Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k7pv8s6wnd01916",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.208Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Center Baptist Church",
+ "Contact_Notes": "",
+ "Contact_Person": "John Rohlman",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-15 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4279 - Center Baptist Church",
+ "Has_Attachments": false,
+ "Job_Address": "5124 N. Farm Rd. 43 Ash Grove MO",
+ "Job_Codes": "4279 - Center Baptist Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4279 - Center Baptist Church",
+ "Job_Full_Name": "Center Baptist Church - 5124 N. Farm Rd. 43 Ash Grove MO - Center Baptist Church",
+ "Job_Name": "Center Baptist Church",
+ "Job_Number": "4279",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4279FXEX - Center Baptist Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178394043",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4279FXEX - Center Baptist Church - 5124 N. Farm Rd. 43 Ash Grove MO - Center Baptist Church - John Rohlman - 4178394043",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.611Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ia8ri22ifp39ytc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:14.632Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "H&H Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Hunt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "kellyh.hhc@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "411 W. South St. Nixa",
+ "Job_Codes": "4278 - Menta Academy",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4278%20Menta%20Academy&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Menta Academy - 411 W. South St. Nixa - H&H Construction",
+ "Job_Name": "Menta Academy",
+ "Job_Number": "4278",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4278FX - Menta Academy",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Client stated the city denied rezoning so project is cancelled at this time",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172348803",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4278FX - Menta Academy - 411 W. South St. Nixa - H&H Construction - Kelly Hunt - 4172348803",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.704Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "urfr2n7m35febjz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.412Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMilan, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen McMillan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2923 Whiteoak Rd, Rogersville",
+ "Job_Codes": "4277 - Bath",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 2923 Whiteoak Rd, Rogersville - McMilan, Allen",
+ "Job_Name": "Bath",
+ "Job_Number": "4277",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4277 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4277 - Bath - 2923 Whiteoak Rd, Rogersville - McMilan, Allen - Allen McMillan - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.767Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lh51lo5373opkj6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.512Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highlandville",
+ "Job_Codes": "4276 - Rejda",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4276%20Rejda%20(Highlandville)%20(Essick,%20Dusty)?csf=1&web=1&e=umFhHL",
+ "Job_Full_Name": "Rejda - Highlandville - Essick, Dusty",
+ "Job_Name": "Rejda",
+ "Job_Number": "4276",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4276 - Rejda",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4276 - Rejda - Highlandville - Essick, Dusty - Dusty Essick - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.840Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e7t519r1eweb408",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.612Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bakesz, Kay",
+ "Contact_Notes": "",
+ "Contact_Person": "Kay Bakesz ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "776 Mulberry Rd, Highlandville",
+ "Job_Codes": "4275 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 776 Mulberry Rd, Highlandville - Bakesz, Kay",
+ "Job_Name": "Garage",
+ "Job_Number": "4275",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4275 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/09/25 9:20 AM Beth Cardoza Eddie viewing at 8 Thursday morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176932402",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4275 - Garage - 776 Mulberry Rd, Highlandville - Bakesz, Kay - Kay Bakesz - 4176932402",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.908Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ilvl2ahaiy1agbk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.716Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Christin, Jessica",
+ "Contact_Notes": "",
+ "Contact_Person": "Jessica Christin",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1110 S Strasberg Ave, Spfd",
+ "Job_Codes": "4274 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1110 S Strasberg Ave, Spfd - Christin, Jessica",
+ "Job_Name": "Patches",
+ "Job_Number": "4274",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4274 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178148459",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4274 - Patches - 1110 S Strasberg Ave, Spfd - Christin, Jessica - Jessica Christin - 4178148459",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:32.976Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8nxohmb3r0p7b1y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.831Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Wayne",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1202 S Mumford, Spfd",
+ "Job_Codes": "4273 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1202 S Mumford, Spfd - Weber, Bryon",
+ "Job_Name": "Patches",
+ "Job_Number": "4273",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4273 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4273 - Patches - 1202 S Mumford, Spfd - Weber, Bryon - Wayne - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.036Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "olkpqvlpva23st1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:40.936Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CBCI Tulsa",
+ "Contact_Notes": "",
+ "Contact_Person": "Wes Freeman ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "wfreeman@cbci-llc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4272 - Life Church - CBCI",
+ "Has_Attachments": false,
+ "Job_Address": "1655 W Republic Road, Springfield, MO 65807",
+ "Job_Codes": "4272 - Life Church Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4272 - Life Church - CBCI",
+ "Job_Full_Name": "Life Church Remodel - 1655 W Republic Road, Springfield, MO 65807 - CBCI Tulsa",
+ "Job_Name": "Life Church Remodel",
+ "Job_Number": "4272",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4272FXEX - Life Church Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9186333716",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4272FXEX - Life Church Remodel - 1655 W Republic Road, Springfield, MO 65807 - CBCI Tulsa - Wes Freeman - 9186333716",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.096Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s6zih8hfexjooop",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:15.239Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken Kroll",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "S Crescent Pl, Spfd",
+ "Job_Codes": "4271 - Morris Residence",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4271%20%5BR%5D%20Morris%20Residence%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Morris Residence - S Crescent Pl, Spfd - Construct",
+ "Job_Name": "Morris Residence",
+ "Job_Number": "4271",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4271 - Morris Residence",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/08/25 1:05 PM Beth Cardoza OK, a few questions that I had:\n\nQ. I saw the general specs for walls and ceilings was “light plaster texture look” that was original decision but everything is smooth level 4/5. \n\nA. Go off of room selection. \n\nQ. So, on \n07/08/25 12:24 PM Beth Cardoza I don’t have street address but it is SE and close to Turner. Driveway will be off of S Crescent Pl. Just in bidding stage so wild guess for drywall is March-May 2026. Also, as I mentioned in my invite email, you will ne\n07/07/25 2:44 PM Beth Cardoza See email for links for interior and exterior renderings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5735296601",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4271 - Morris Residence - S Crescent Pl, Spfd - Construct - Ken Kroll - 5735296601",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.165Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6u2tbsj2a8bax7a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.164Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fletcher, Danny",
+ "Contact_Notes": "",
+ "Contact_Person": "Danny Fletcher ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "175 Canyon Forrest Cir, Kimberling City",
+ "Job_Codes": "4270 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4270FX%20Fletcher%2C%20Danny%20Repair%20%28Kimberling%20City%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Water damage - 175 Canyon Forrest Cir, Kimberling City - Fletcher, Danny",
+ "Job_Name": "Water damage",
+ "Job_Number": "4270",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4270 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177913909",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4270 - Water damage - 175 Canyon Forrest Cir, Kimberling City - Fletcher, Danny - Danny Fletcher - 4177913909",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.228Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m1hxemeadaodsuv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.307Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gibb, Dallin",
+ "Contact_Notes": "",
+ "Contact_Person": "Dallin Gibb ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "622 Grandview Rd, Highlandville",
+ "Job_Codes": "4269 - Basement",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4269%20%5BR%5D%20Basement%20%28622%20Grandview%20Rd%2C%20Highlandville%29%20%28Gibb%2C%20Dallin%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 622 Grandview Rd, Highlandville - Gibb, Dallin",
+ "Job_Name": "Basement",
+ "Job_Number": "4269",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4269 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/09/25 11:34 AM Beth Cardoza 8'6\" ceilings. I figured Regular and stretch on walls---\n07/03/25 6:18 PM Beth Cardoza I found you guys by a Google search. I'd like an orange peel texture for the walls and then the ceiling has a brocade texture in the existing part of the house. I'd like to try to do something similar to it but if it's too mu",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5033676482",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4269 - Basement - 622 Grandview Rd, Highlandville - Gibb, Dallin - Dallin Gibb - 5033676482",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j5ikowgn2mzi7td",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.408Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Chase Erectors Inc",
+ "Contact_Notes": "",
+ "Contact_Person": "Ryan Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "chaseerectorsinc@hotmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark, MO",
+ "Job_Codes": "4268 - Southway Storage",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Southway Storage - Ozark, MO - Chase Erectors Inc",
+ "Job_Name": "Southway Storage",
+ "Job_Number": "4268",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4268FX - Southway Storage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172245535",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4268FX - Southway Storage - Ozark, MO - Chase Erectors Inc - Ryan Wallace - 4172245535",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.343Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6oj8l7v7i4qulr0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.508Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandy Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4267 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - KCI",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4267",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4267PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174308953",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4267PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - KCI - Brandy Bowen - 4174308953",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.400Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "52hdrpmdwx9s2fk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.599Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Center Baptist Church",
+ "Contact_Notes": "",
+ "Contact_Person": "John Rohlman ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5124 N. Farm Road 43, Ash Grove MO",
+ "Job_Codes": "4266 - Center Baptist Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Center Baptist Church - 5124 N. Farm Road 43, Ash Grove MO - Center Baptist Church",
+ "Job_Name": "Center Baptist Church",
+ "Job_Number": "4266",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4266FXEX - Center Baptist Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Duplicate",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178394043",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4266FXEX - Center Baptist Church - 5124 N. Farm Road 43, Ash Grove MO - Center Baptist Church - John Rohlman - 4178394043",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.471Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ops7qfs8ni5pl7y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.703Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4265 - Stewart",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Stewart - - Pitts, Doug",
+ "Job_Name": "Stewart",
+ "Job_Number": "4265",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4265FX - Stewart",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Waiting on plans---08/20/25 12:11 PM Beth Cardoza Waiting on plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4265FX - Stewart - - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.540Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "be2n10il8rk4yxj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.803Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4264 - Koellner",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Koellner - - Pitts, Doug",
+ "Job_Name": "Koellner",
+ "Job_Number": "4264",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4264FX - Koellner",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Waiting on plans. Start mid winter.---08/20/25 12:11 PM Beth Cardoza Waiting on plans. Should get them any time. Plan to start mid winter---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4264FX - Koellner - - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.600Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z4nre9668ge33y0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:41.903Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1101 Newbury Rd, Reeds Spring",
+ "Job_Codes": "4263 - Woodring",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4263%20%5BR%5D%20Woodring%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Woodring - 1101 Newbury Rd, Reeds Spring - Pitts, Doug",
+ "Job_Name": "Woodring",
+ "Job_Number": "4263",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4263FX - Woodring",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Waiting on plans. ---08/15/25 3:26 PM Beth Cardoza Quote it Level 4\nSquare corners. \nFor now let’s assume wrap 3 sides---\n08/14/25 11:44 AM Beth Cardoza Jay and Tracie Woodring\n1101 Newbury Rd\nReeds Spring, Mo 65771\nHickory Ridge Subdivision\nGate code: 3456---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4263FX - Woodring - 1101 Newbury Rd, Reeds Spring - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.699Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3wel1lelo2yecae",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:42.048Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West Hwy 14 and Route 125, Sparta, MO 65753",
+ "Job_Codes": "4262 - CCAD Sparta",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "CCAD Sparta - West Hwy 14 and Route 125, Sparta, MO 65753 - A2D",
+ "Job_Name": "CCAD Sparta",
+ "Job_Number": "4262",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4262PWEX - CCAD Sparta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "GC was low bid but client did not choose GC",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4262PWEX - CCAD Sparta - West Hwy 14 and Route 125, Sparta, MO 65753 - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.753Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rdz4n96kng5oe2c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:42.217Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4261 - Nixa Poilce Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Poilce Department - 305 North Leeann Drive, Nixa, Mo 65714 - DeWitt and Associates",
+ "Job_Name": "Nixa Poilce Department",
+ "Job_Number": "4261",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4261PWEX - Nixa Poilce Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176550218",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4261PWEX - Nixa Poilce Department - 305 North Leeann Drive, Nixa, Mo 65714 - DeWitt and Associates - Tony Blackstock - 4176550218",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.812Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zr7vcs07ps9p2f8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:42.320Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Morelock Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Casson",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-11 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Scasson@morelockbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4260 - Fulbright Heights 2 - Morelock",
+ "Has_Attachments": false,
+ "Job_Address": "East Valley Water Mill and Glenstone",
+ "Job_Codes": "4260 - Fulbright Heights 2",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4260 - Fulbright Heights 2 - Morelock",
+ "Job_Full_Name": "Fulbright Heights 2 - East Valley Water Mill and Glenstone - Morelock Builders",
+ "Job_Name": "Fulbright Heights 2",
+ "Job_Number": "4260",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4260FX - Fulbright Heights 2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178646661",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4260FX - Fulbright Heights 2 - East Valley Water Mill and Glenstone - Morelock Builders - Steve Casson - 4178646661",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.876Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0pp1r10u5zvnnsp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:16.113Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Duane Prewitt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "dprewitt@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West Hwy 14 and Route 125, Sparta, MO 65753",
+ "Job_Codes": "4259 - CCAD Sparta",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "CCAD Sparta - West Hwy 14 and Route 125, Sparta, MO 65753 - Killian Construction",
+ "Job_Name": "CCAD Sparta",
+ "Job_Number": "4259",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4259PWEX - CCAD Sparta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203315",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4259PWEX - CCAD Sparta - West Hwy 14 and Route 125, Sparta, MO 65753 - Killian Construction - Duane Prewitt - 4175203315",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.940Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w7vcgdz7q81kej4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:42.529Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "blahr@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4258 - Nixa Police Department Multiple GC",
+ "Has_Attachments": false,
+ "Job_Address": "305 North Leeann Drive, Nixa, Mo 65714",
+ "Job_Codes": "4258 - Nixa Police Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4258 - Nixa Police Department Multiple GC",
+ "Job_Full_Name": "Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Killian Construction",
+ "Job_Name": "Nixa Police Department",
+ "Job_Number": "4258",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4258PWEX - Nixa Police Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203263",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4258PWEX - Nixa Police Department - 305 North Leeann Drive, Nixa, Mo 65714 - Killian Construction - Blake Lahr - 4175203263",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:33.992Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x81yc55grpj73kf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:16.320Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Buttram, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Buttram",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1049 Stonehill Rd, Ozark",
+ "Job_Codes": "4257 - Crack",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 1049 Stonehill Rd, Ozark - Buttram, Kyle",
+ "Job_Name": "Crack",
+ "Job_Number": "4257",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4257 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/10/25 10:20 AM Beth Cardoza Eddie has an appointment for 9 am Monday 14th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5019205861",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4257 - Crack - 1049 Stonehill Rd, Ozark - Buttram, Kyle - Kyle Buttram - 5019205861",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.071Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "piuuu38cepmz9y1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:42.736Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Russell",
+ "Contact_Notes": "",
+ "Contact_Person": "Conner Obert",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-21 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "cobert@russellco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4256 - Southway Storage Ozark - Multiple GC",
+ "Has_Attachments": false,
+ "Job_Address": "State Route F, Ozark MO, 65721",
+ "Job_Codes": "4256 - Southway Storage",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4256 - Southway Storage Ozark - Multiple GC",
+ "Job_Full_Name": "Southway Storage - State Route F, Ozark MO, 65721 - Russell",
+ "Job_Name": "Southway Storage",
+ "Job_Number": "4256",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4256FX - Southway Storage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174251150",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4256FX - Southway Storage - State Route F, Ozark MO, 65721 - Russell - Conner Obert - 4174251150",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.164Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "640ar2pbxwa194j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:16.513Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West Hwy 14 and Route 125, Sparta, MO 65753",
+ "Job_Codes": "4255 - CCAD Sparta",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4255%20CCAD%20Sparta%20%5BMultiple%20GC%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "CCAD Sparta - West Hwy 14 and Route 125, Sparta, MO 65753 - KCI",
+ "Job_Name": "CCAD Sparta",
+ "Job_Number": "4255",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4255PWEX - CCAD Sparta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175128834",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4255PWEX - CCAD Sparta - West Hwy 14 and Route 125, Sparta, MO 65753 - KCI - Stephen Buechler - 4175128834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.216Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4jvmzbgq1me2au5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:35.347Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Eden, Marty",
+ "Contact_Notes": "",
+ "Contact_Person": "Marty Eden",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4676 E Starview, Spfd",
+ "Job_Codes": "4254 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4254%20%5BS%5D%20Water%20damage%20%284676%20E%20Starview%2C%20Spfd%29%20%28Eden%2C%20Marty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Water damage - 4676 E Starview, Spfd - Eden, Marty",
+ "Job_Name": "Water damage",
+ "Job_Number": "4254",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4254 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4254 - Water damage - 4676 E Starview, Spfd - Eden, Marty - Marty Eden - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.288Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "551lxs3o539l7ee",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.045Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Howerton, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Howerton",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "475 Apple Tree Dr, Ozark",
+ "Job_Codes": "4253 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 475 Apple Tree Dr, Ozark - Howerton, Mark",
+ "Job_Name": "Patches",
+ "Job_Number": "4253",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4253 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/06/25 11:24 AM Beth Cardoza If awarded clarify if we are doing the step thru and water damage or just the water damage that insurance is covering.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178381198",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4253 - Patches - 475 Apple Tree Dr, Ozark - Howerton, Mark - Mark Howerton - 4178381198",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.353Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kqt6zq485n6o97l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.160Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hoey, Bill",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3244 W Camino Alto, Spfd",
+ "Job_Codes": "4252 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 3244 W Camino Alto, Spfd - Hoey, Bill",
+ "Job_Name": "Crack",
+ "Job_Number": "4252",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4252 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4252 - Crack - 3244 W Camino Alto, Spfd - Hoey, Bill - Bill Hoey - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.423Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a5za0guj797hx1j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.271Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Brown",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-07-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Gbrown@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West HWY 14 and Route 125, Sparta, MO 65753",
+ "Job_Codes": "4251 - CCAD Sparta",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "CCAD Sparta - West HWY 14 and Route 125, Sparta, MO 65753 - DeWitt and Associates",
+ "Job_Name": "CCAD Sparta",
+ "Job_Number": "4251",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4251PWEX - CCAD Sparta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173703895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4251PWEX - CCAD Sparta - West HWY 14 and Route 125, Sparta, MO 65753 - DeWitt and Associates - Greg Brown - 4173703895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.477Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lxqkpnvpo635wzz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.376Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "500 Porter Ave., Aurora, MO 65605",
+ "Job_Codes": "4250 - Mercy Aurora Obstetrics Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4250%20Mercy%20Aurora%20Obstetrics%20Reno%20%5BDeWitt%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Mercy Aurora Obstetrics Reno - 500 Porter Ave., Aurora, MO 65605 - DeWitt and Associates",
+ "Job_Name": "Mercy Aurora Obstetrics Reno",
+ "Job_Number": "4250",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4250FXEX - Mercy Aurora Obstetrics Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4250FXEX - Mercy Aurora Obstetrics Reno - 500 Porter Ave., Aurora, MO 65605 - DeWitt and Associates - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.531Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gxjg6butoucc279",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:35.795Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4249 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - - Peach Tree",
+ "Job_Name": "Patches",
+ "Job_Number": "4249",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4249 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/25/25 9:43 AM Beth Cardoza Duplicate. Same as 4156.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175271095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4249 - Patches - - Peach Tree - Chad Meadows - 4175271095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.608Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qm0xy30xxmiwx8i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.591Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "231 Hawthorne St, Hollister",
+ "Job_Codes": "4248 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 231 Hawthorne St, Hollister - Peach Tree",
+ "Job_Name": "Remodel",
+ "Job_Number": "4248",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4248 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/15/25 5:22 PM Beth Cardoza CO: Beam added. See voxer---\n07/16/25 11:28 AM Beth Cardoza 4 sheets = 128 sqft---\n07/07/25 2:26 PM Beth Cardoza In house stock took about 3.5 hours per Joel. (Material yard unable to stock it in a timely manner)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175271095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4248 - Remodel - 231 Hawthorne St, Hollister - Peach Tree - Chad Meadows - 4175271095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.677Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3pp29kjppb5he08",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.685Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Butch May Contracting",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh Thomsan",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Harrison. AR",
+ "Job_Codes": "4247 - HRO New Terminal",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "HRO New Terminal - Harrison. AR - Butch May Contracting",
+ "Job_Name": "HRO New Terminal",
+ "Job_Number": "4247",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4247FX - HRO New Terminal",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8707150587",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4247FX - HRO New Terminal - Harrison. AR - Butch May Contracting - Josh Thomsan - 8707150587",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.760Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s563egg9gius2ud",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:36.091Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "165 Windy Ridge Dr, Hollister",
+ "Job_Codes": "4246 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/4246%20%5BR%5D%20%20(165%20Windy%20Ridge%20Dr,%20Hollister)%20(Masterpiece)?csf=1&web=1&e=OFwytL",
+ "Job_Full_Name": "N/A - 165 Windy Ridge Dr, Hollister - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "4246",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4246 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/25 5:09 PM Beth Cardoza We’re doing the foundation on the Hanson job---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172943100",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4246 - N/A - 165 Windy Ridge Dr, Hollister - Masterpiece - Tom Caruso - 4172943100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.860Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l7uqx7g8onakrew",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:43.916Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "185 Emerald Pointe Dr, Hollister",
+ "Job_Codes": "4245 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4245%20%5BR%5D%20%20%28185%20Emerald%20Pointe%20Dr%2C%20Hollister%29%20%28Masterpiece%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 185 Emerald Pointe Dr, Hollister - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "4245",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4245 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/11/25 1:14 PM Beth Cardoza Differences between my take off and Dave's walkthrough notes: RV garage 12'9\" instead of 9'. Main garage 10.5' instead of 10'. Living room vault to 13'9\" instead of 17.5'. Master bedroom pop up to 11' instead of flat. Less th\n09/12/25 5:00 PM Beth Cardoza Dave suggests maybe if he/homeowner thinks we are a bit high and tries to talk us down, maybe mentioning we bid for all 1/2\" and offering to do 5/8\" ceilings at no extra charge. So just another consideration. Probably really\n06/19/25 5:08 PM Beth Cardoza Schooley is half framed now---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172943100",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4245 - N/A - 185 Emerald Pointe Dr, Hollister - Masterpiece - Tom Caruso - 4172943100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:34.936Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lcg6v1rr9xwtcqh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.016Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "131 Jacks Way, Branson",
+ "Job_Codes": "4244 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4244%20%5BR%5D%20%20%28131%20Jacks%20Way%2C%20%20Branson%29%20%28Masterpiece%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 131 Jacks Way, Branson - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "4244",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4244 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/25 5:09 PM Beth Cardoza Lot 9---\n06/19/25 5:08 PM Beth Cardoza will be ready at the same time in about 6-7 weeks.---\n06/19/25 5:03 PM Beth Cardoza Address might be 231 Jacks Way per email from Tom. Not sure which one is the typo---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172943100",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4244 - N/A - 131 Jacks Way, Branson - Masterpiece - Tom Caruso - 4172943100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.022Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v43f9fm2rs5siw0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.132Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "121 Jacks Way, Branson",
+ "Job_Codes": "4243 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4243%20%5BR%5D%20%20%28121%20Jacks%20Way%2C%20Branson%29%20%28Masterpiece%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 121 Jacks Way, Branson - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "4243",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4243 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/25 5:09 PM Beth Cardoza Lot 8---\n06/19/25 5:08 PM Beth Cardoza will be ready at the same time in about 6-7 weeks.---\n06/19/25 5:03 PM Beth Cardoza Address might be 221 Jacks Way per email from Tom. Not sure which one is the typo---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172943100",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4243 - N/A - 121 Jacks Way, Branson - Masterpiece - Tom Caruso - 4172943100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "recf2bbt9jlyzcl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.253Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5558 E Cavalcade Ln, Spfd",
+ "Job_Codes": "4242 - WH 44",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "WH 44 - 5558 E Cavalcade Ln, Spfd - Everlasting Homes",
+ "Job_Name": "WH 44",
+ "Job_Number": "4242",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4242 - WH 44",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "07/24/25 6:50 AM david cardoza stock 20,160\nLeftover 820\nHang 19,340---\n06/19/25 2:05 PM Beth Cardoza Three car garage at 10 foot high over concrete\nWalkout basement house\nEntire kitchen, dining and living room is 11 foot flat except most of the living room ceiling has a pop-up to 12 foot flat\nThe rest of the main floor is 9",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4242 - WH 44 - 5558 E Cavalcade Ln, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.141Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gg2w3qkbf77ndsw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.365Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Woods, Bethany",
+ "Contact_Notes": "",
+ "Contact_Person": "Bethany Woods",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "183 James Ford Ln, Ozark",
+ "Job_Codes": "4241 - Pool house",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4241%20Pool%20house%20%28183%20James%20Ford%20Ln%2C%20Ozark%29%20%28Woods%2C%20Bethany%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pool house - 183 James Ford Ln, Ozark - Woods, Bethany",
+ "Job_Name": "Pool house",
+ "Job_Number": "4241",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4241 - Pool house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173370805",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4241 - Pool house - 183 James Ford Ln, Ozark - Woods, Bethany - Bethany Woods - 4173370805",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.212Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w6uawpioljd5lqs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.472Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "109 City Park Road, Camdenton, MO 65020",
+ "Job_Codes": "4240 - Camdenton Community Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4240%20Camdenton%20Community%20Center%20%5BNabholz%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Camdenton Community Center - 109 City Park Road, Camdenton, MO 65020 - Nabholz",
+ "Job_Name": "Camdenton Community Center",
+ "Job_Number": "4240",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4240FX - Camdenton Community Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4240FX - Camdenton Community Center - 109 City Park Road, Camdenton, MO 65020 - Nabholz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.280Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6qhc9e09xxhwr1t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:36.739Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Puia, Cornelius",
+ "Contact_Notes": "",
+ "Contact_Person": "Cornelius Puia",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4352 S FR 85, Republic",
+ "Job_Codes": "4239 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4239FX%20Puia%2C%20Cornelius%20%284352%20S%20FR%2085%2C%20Republic%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 4352 S FR 85, Republic - Puia, Cornelius",
+ "Job_Name": "N/A",
+ "Job_Number": "4239",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4239 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/02/25 12:49 PM david cardoza Stock in the entire house the day before they started to hang the basement 6,086\nLeftover after hanging the basement 742\nFinal basement hang 5,344---\n08/13/25 9:57 AM Beth Cardoza CO: installing vents---\n07/10/25 10:49 AM Beth Cardoza CO: Framing work. I started it. I took Orville and Dan's hours for ceiling work and arch work and deducted the hours I had figured for fixing the arches (8). Needs materials and Angel time added still. -BC---\n07/01/25 1:24 PM Beth Cardoza Gate code\n\n0410#---\n06/27/25 9:08 AM Beth Cardoza Gate code\n\n2534#---\n06/16/25 3:16 PM Beth Cardoza L5 house. Maybe 22,000 sqft? Dustin at REW to give us footage stocked soon. Dave walked it. Lots of details.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173006002",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4239 - N/A - 4352 S FR 85, Republic - Puia, Cornelius - Cornelius Puia - 4173006002",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.344Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lr7erqhmim4i240",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.724Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "4238 - Plan E",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4238%20%5BR%5D%20Plan%20E%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Plan E - Spfd - Finley, Jason",
+ "Job_Name": "Plan E",
+ "Job_Number": "4238",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4238 - Plan E",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/25 2:04 PM Beth Cardoza 9’ flat ceiling\nDrywall wrap all windows\nLight orange peel everywhere.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4238 - Plan E - Spfd - Finley, Jason - Jason Finley - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.424Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jxfhx1h07crjcg8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.843Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "4237 - Plan C",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4237%20%5BR%5D%20Plan%20C%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Plan C - Spfd - Finley, Jason",
+ "Job_Name": "Plan C",
+ "Job_Number": "4237",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4237 - Plan C",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/25 2:04 PM Beth Cardoza 9’ flat ceiling\nDrywall wrap all windows\nLight orange peel everywhere.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4237 - Plan C - Spfd - Finley, Jason - Jason Finley - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.500Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yfpkumjuvbp1zjf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:44.956Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Shepard, Brian",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Shepard",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1222 Melton Ave, Ozark",
+ "Job_Codes": "4236 - Barn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Barn - 1222 Melton Ave, Ozark - Shepard, Brian",
+ "Job_Name": "Barn",
+ "Job_Number": "4236",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4236 - Barn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178382918",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4236 - Barn - 1222 Melton Ave, Ozark - Shepard, Brian - Brian Shepard - 4178382918",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.568Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hsta5cr736298w7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:45.072Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2100 W Republic Road Suite 100",
+ "Job_Codes": "4235 - Pancheros Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4235%20Pancheros%20Infill%20%5BRoss%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pancheros Infill - 2100 W Republic Road Suite 100 - Ross Construction",
+ "Job_Name": "Pancheros Infill",
+ "Job_Number": "4235",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4235FX - Pancheros Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4235FX - Pancheros Infill - 2100 W Republic Road Suite 100 - Ross Construction - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.621Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jnkpp1q4hm3yt3h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:45.180Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mangum, Nelson",
+ "Contact_Notes": "",
+ "Contact_Person": "Nelson Mangum",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2991 Aspen Rd, Nixa",
+ "Job_Codes": "4234 - Basement",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4234%20Basement%20%282991%20Aspen%20Rd%2C%20Nixa%29%20%28Mangum%2C%20Nelson%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 2991 Aspen Rd, Nixa - Mangum, Nelson",
+ "Job_Name": "Basement",
+ "Job_Number": "4234",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4234 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/06/25 1:10 PM Beth Cardoza Confirm if we install tbar ceiling---\n07/30/25 7:55 AM david cardoza Stock4,784\nLeftover 96\nHang 4,688---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172347993",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4234 - Basement - 2991 Aspen Rd, Nixa - Mangum, Nelson - Nelson Mangum - 4172347993",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.680Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2cosal7ci3cwf7c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:45.308Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jason Stewart",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Stewart",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2420 W Richwood, Ozark",
+ "Job_Codes": "4233 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4233%20%282420%20W%20Richwood%2C%20Ozark%29%20%28Jason%20Stewart%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 2420 W Richwood, Ozark - Jason Stewart",
+ "Job_Name": "N/A",
+ "Job_Number": "4233",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4233 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/16/25 12:52 PM Beth Cardoza Stock: 7800 sqft drywall 448 sqft soundboard\nLeftover: 0\nTotal Hang: 7800 plus soundboard = 8216---\n07/02/25 5:49 PM Beth Cardoza Possible COs:\nSound board - 25-30 linear ft so like 7-9 sheets?\nGarage 10' instead of 9'\nNot planning to create change orders unless necessary.---\n06/19/25 3:08 PM Beth Cardoza no windows wrap, med orange, reg corners---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178868375",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4233 - N/A - 2420 W Richwood, Ozark - Jason Stewart - Jason Stewart - 4178868375",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.737Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ifnua69b22rxf8d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:45.409Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco Ent",
+ "Contact_Notes": "",
+ "Contact_Person": "Brooke England",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "brookeengland@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 W. Madison St, Bolivar, MO",
+ "Job_Codes": "4232 - Bolivar ECLC Classroom Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - Branco Ent",
+ "Job_Name": "Bolivar ECLC Classroom Addition",
+ "Job_Number": "4232",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4232FXEX - Bolivar ECLC Classroom Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174558140",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4232FXEX - Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - Branco Ent - Brooke England - 4174558140",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.813Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ek5vrkofnkvnlki",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:37.419Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Koontz, Jennifer",
+ "Contact_Notes": "",
+ "Contact_Person": "Jennifer Koontz",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1275 E Sunset Rd, Ozark",
+ "Job_Codes": "4231 - Bath",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4231%20Bath%20%281275%20E%20Sunset%20Rd%2C%20Ozark%29%20%28Koontz%2C%20Jennifer%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bath - 1275 E Sunset Rd, Ozark - Koontz, Jennifer",
+ "Job_Name": "Bath",
+ "Job_Number": "4231",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4231 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/25/25 12:04 PM Beth Cardoza He hung half of it himself and purchased the board for that part. adjust as necessary. Told him we would make adjustments at the end with the expectation that it will go down a little bit, but I did warn him that it may not",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4231 - Bath - 1275 E Sunset Rd, Ozark - Koontz, Jennifer - Jennifer Koontz - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.873Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gmhmjn1wtd1c0h9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:45.644Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Darren",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "darrenbeck@qandcompanyllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Stae Route F, Ozark MO",
+ "Job_Codes": "4230 - Southway Storage Link",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4230%20Southway%20Storage%20Ozark%20%5BQ%20and%20Company%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Southway Storage Link - Stae Route F, Ozark MO - Q and Company",
+ "Job_Name": "Southway Storage Link",
+ "Job_Number": "4230",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4230FX - Southway Storage Link",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "No follow up from GC",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178636700",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4230FX - Southway Storage Link - Stae Route F, Ozark MO - Q and Company - Darren - 4178636700",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.941Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4nmjo3lscm5k485",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:45.756Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2858 S Golden Ave, Springfield MO 65807",
+ "Job_Codes": "4229 - SW Power Admin Server Room",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4229%20SW%20Power%20Server%20Room%20%5BFriga%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "SW Power Admin Server Room - 2858 S Golden Ave, Springfield MO 65807 - Friga Construction",
+ "Job_Name": "SW Power Admin Server Room",
+ "Job_Number": "4229",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4229FX - SW Power Admin Server Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4229FX - SW Power Admin Server Room - 2858 S Golden Ave, Springfield MO 65807 - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:35.988Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kxi03anba8n0u7v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:37.712Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "XEC Inc",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex Taylor",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ast@xeccinc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3330 East Montclair St, Springfield, MO 65804",
+ "Job_Codes": "4228 - Verizon DC Plant Upgrade",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4228%20Verizon%20DC%20Plant%20Upgrade%20%5BXEC%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Verizon DC Plant Upgrade - 3330 East Montclair St, Springfield, MO 65804 - XEC Inc",
+ "Job_Name": "Verizon DC Plant Upgrade",
+ "Job_Number": "4228",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4228FX - Verizon DC Plant Upgrade",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9135581985",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4228FX - Verizon DC Plant Upgrade - 3330 East Montclair St, Springfield, MO 65804 - XEC Inc - Alex Taylor - 9135581985",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.043Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cmdcdz5d73o5fcv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:37.864Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Taylor, Larry",
+ "Contact_Notes": "",
+ "Contact_Person": "Larry Taylor",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "910 N 39th St, Nixa",
+ "Job_Codes": "4227 - Ceiling repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4227%20Ceiling%20repair%20%28910%20N%2039th%20St%2C%20Nixa%29%20%28Taylor%2C%20Larry%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ceiling repair - 910 N 39th St, Nixa - Taylor, Larry",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "4227",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4227 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178480741",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4227 - Ceiling repair - 910 N 39th St, Nixa - Taylor, Larry - Larry Taylor - 4178480741",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.116Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k3yno3nj0hzikqc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.075Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Huff, Connie",
+ "Contact_Notes": "",
+ "Contact_Person": "Connie Huff",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5318 S Stonehaven Dr, Spfd",
+ "Job_Codes": "4226 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 5318 S Stonehaven Dr, Spfd - Huff, Connie",
+ "Job_Name": "Step thru",
+ "Job_Number": "4226",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4226 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178614744",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4226 - Step thru - 5318 S Stonehaven Dr, Spfd - Huff, Connie - Connie Huff - 4178614744",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.180Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mnubj6pyw8bvr1i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.180Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kallembach, Bobbie",
+ "Contact_Notes": "",
+ "Contact_Person": "Bobbie Kallembach",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1902 Winged Foot Dr, Nixa",
+ "Job_Codes": "4225 - Garage repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage repair - 1902 Winged Foot Dr, Nixa - Kallembach, Bobbie",
+ "Job_Name": "Garage repair",
+ "Job_Number": "4225",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4225 - Garage repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/25 4:12 PM Beth Cardoza This job is to be done after July 15th due to client vacations.---\n06/20/25 3:08 PM Beth Cardoza Don't forget to update which option we did before billing---\n06/19/25 12:36 PM Beth Cardoza She just called and had to reschedule for tomorrow at 10---\n06/18/25 10:39 AM Beth Cardoza 10 am tomorrow morning Eddie will look at this---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175513568",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4225 - Garage repair - 1902 Winged Foot Dr, Nixa - Kallembach, Bobbie - Bobbie Kallembach - 4175513568",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.244Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xxqcnf756bybqda",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.288Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Harms",
+ "Docs_Uploaded": true,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark MO",
+ "Job_Codes": "4224 - JRC West Cove Kids Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "JRC West Cove Kids Office - Ozark MO - James River Church",
+ "Job_Name": "JRC West Cove Kids Office",
+ "Job_Number": "4224",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4224FXEX - JRC West Cove Kids Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "---08/11/25 10:59 AM Regina McClain waiting on change order from Rick---",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4224FXEX - JRC West Cove Kids Office - Ozark MO - James River Church - Jeff Harms - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.300Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rifwlu51ls3yf6y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.397Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "200 Fleetwood Drive, Waynesville, MO 65583",
+ "Job_Codes": "4223 - Waynesville Central Office Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4223%20Waynesville%20Central%20Office&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Waynesville Central Office Renovation - 200 Fleetwood Drive, Waynesville, MO 65583 - KCI",
+ "Job_Name": "Waynesville Central Office Renovation",
+ "Job_Number": "4223",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4223FXEX - Waynesville Central Office Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174308953",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4223FXEX - Waynesville Central Office Renovation - 200 Fleetwood Drive, Waynesville, MO 65583 - KCI - Brady Bowen - 4174308953",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.356Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xivg1t6fwrvpbso",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:38.324Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burman Companies",
+ "Contact_Notes": "",
+ "Contact_Person": "Loren Olinger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Forsyth",
+ "Job_Codes": "4222 - Love",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4222%20Love%20%28Forsyth%29%20%28Burman%20Companies%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Love - Forsyth - Burman Companies",
+ "Job_Name": "Love",
+ "Job_Number": "4222",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4222 - Love",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/22/25 10:41 AM Beth Cardoza The shop and the green house rooms will not have drywall.\nGo ahead and mark through the fixed pricing and note that “actual footage will be determined on site and any addition or deduction from the contracted price will be a\n09/11/25 1:25 PM Beth Cardoza We ended up doing FX price. However, they did something different with some ICF interior walls which may affect drywall and we may need to consider.---\n06/10/25 2:34 PM Beth Cardoza Lets wrap all 4 sides at windows.\nSquare corners.\nWe are thinking sometime in September.---\n06/06/25 3:32 PM Beth Cardoza ICF---\n06/05/25 5:58 PM Beth Cardoza We are building a house for an owner about 28 minutes SE of Forsyth and we need a Drywall installer & Painter. [I let them know we don't paint]\nThere are about 13,500sf of walls and 6,544sf of ceilings. Note the attached work\n06/05/25 6:03 PM Beth Cardoza I think that would put it like 1 hour 15 minutes from us so a bit far! But who knows, there might be a better route and it's not quite that far, but we don't have an address to find out exactly. Forsyth is 43 minutes from her",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173249832",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4222 - Love - Forsyth - Burman Companies - Loren Olinger - 4173249832",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.416Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m0weg8p9kmpau6x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.624Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5534 E Cavalcade Ln, Spfd",
+ "Job_Codes": "4221 - WH 42",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4221UP%20Everlasting%20Homes%20WH%2042%20%285534%20E%20Cavalcade%2C%20Spfd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 42 - 5534 E Cavalcade Ln, Spfd - Everlasting Homes",
+ "Job_Name": "WH 42",
+ "Job_Number": "4221",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4221 - WH 42",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/25 6:32 AM david cardoza First stock 13,854\nSecond stock 576\nTotal stock 14,430\nLeftover 48\nFinish footage 14,382---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4221 - WH 42 - 5534 E Cavalcade Ln, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.472Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "48wccobdvzcy1t0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5546 E Cavalcade Ln, Spfd",
+ "Job_Codes": "4220 - WH 43",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4220UP%20Everlasting%20Homes%20WH%2043%20%285546%20E%20Cavalcade%2C%20Spfd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 43 - 5546 E Cavalcade Ln, Spfd - Everlasting Homes",
+ "Job_Name": "WH 43",
+ "Job_Number": "4220",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4220 - WH 43",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/25 6:18 AM david cardoza Stock 11,560\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4220 - WH 43 - 5546 E Cavalcade Ln, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.524Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9ep1ida2ohdiasm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.873Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Vaughn",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-06-09 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "admin@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "S Campbell, Springfield, MO 65807",
+ "Job_Codes": "4219 - Bespoke Spa Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4219%20Bespoke%20Spa%20%5BOak%20Grove%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bespoke Spa Infill - S Campbell, Springfield, MO 65807 - Oak Grove Construction",
+ "Job_Name": "Bespoke Spa Infill",
+ "Job_Number": "4219",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4219FX - Bespoke Spa Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4219FX - Bespoke Spa Infill - S Campbell, Springfield, MO 65807 - Oak Grove Construction - Matt Vaughn - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.585Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "111idlxenmvf7ze",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:46.988Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "ACT Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Claire Longoria",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "clongoria@actconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1715 East Independence St, Springfield MO 65804",
+ "Job_Codes": "4218 - Ashley Furniture Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ashley Furniture Remodel - 1715 East Independence St, Springfield MO 65804 - ACT Construction",
+ "Job_Name": "Ashley Furniture Remodel",
+ "Job_Number": "4218",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4218FX - Ashley Furniture Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4696300491",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4218FX - Ashley Furniture Remodel - 1715 East Independence St, Springfield MO 65804 - ACT Construction - Claire Longoria - 4696300491",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.660Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ku2sax3l5kxtf7y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:38.787Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CoreBuilt Contracting",
+ "Contact_Notes": "",
+ "Contact_Person": "Caleb Manika",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "manika@core-built.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1715 East Independence St, Springfield MO 65804",
+ "Job_Codes": "4217 - Ashley Furniture Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4217%20Ashley%20Furniture%20Remodel%20%5BMulti%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ashley Furniture Remodel - 1715 East Independence St, Springfield MO 65804 - CoreBuilt Contracting",
+ "Job_Name": "Ashley Furniture Remodel",
+ "Job_Number": "4217",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4217FX - Ashley Furniture Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4217FX - Ashley Furniture Remodel - 1715 East Independence St, Springfield MO 65804 - CoreBuilt Contracting - Caleb Manika - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.724Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5uivdtwpcawjco2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:38.931Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cburke@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1423 N Jefferson, Springfield, MO 65802",
+ "Job_Codes": "4216 - Alliance Healthcare",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4216%20Alliance%20Healthcare%20%5BDewitt%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Alliance Healthcare - 1423 N Jefferson, Springfield, MO 65802 - DeWitt and Associates",
+ "Job_Name": "Alliance Healthcare",
+ "Job_Number": "4216",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4216PWEX - Alliance Healthcare",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "We were low bid but by 30% so GC did not go with us",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179885787",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4216PWEX - Alliance Healthcare - 1423 N Jefferson, Springfield, MO 65802 - DeWitt and Associates - Chris Burke - 4179885787",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.784Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mj6hgzfmo28epfk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:47.328Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Snyder Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy Hawkins",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "r.hawkins@snydercg.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 W. Madison St, Bolivar, MO",
+ "Job_Codes": "4215 - Bolivar ECLC Classroom Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - Snyder Construction",
+ "Job_Name": "Bolivar ECLC Classroom Addition",
+ "Job_Number": "4215",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4215PWEX - Bolivar ECLC Classroom Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4215PWEX - Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - Snyder Construction - Randy Hawkins - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.843Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r2brupwev4iv2bf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:39.163Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 W. Madison St, Bolivar, MO",
+ "Job_Codes": "4214 - Bolivar ECLC Classroom Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - A2D",
+ "Job_Name": "Bolivar ECLC Classroom Addition",
+ "Job_Number": "4214",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4214PWEX - Bolivar ECLC Classroom Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4214PWEX - Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.904Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "li22271dsouh9gg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:39.299Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 W. Madison St, Bolivar, MO",
+ "Job_Codes": "4213 - Bolivar ECLC Classroom Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - DeWitt and Associates",
+ "Job_Name": "Bolivar ECLC Classroom Addition",
+ "Job_Number": "4213",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4213PWEX - Bolivar ECLC Classroom Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4213PWEX - Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - DeWitt and Associates - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:36.959Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1nfb122r543ro56",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:39.444Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Total Quality Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tqc.dave@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Battlefield Mall Springfield MO",
+ "Job_Codes": "4212 - Lovesac Battlefield Mall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4212%20Lovesac%20Battlefield%20Mall&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lovesac Battlefield Mall - Battlefield Mall Springfield MO - Total Quality Construction",
+ "Job_Name": "Lovesac Battlefield Mall",
+ "Job_Number": "4212",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4212FX - Lovesac Battlefield Mall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178383690",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4212FX - Lovesac Battlefield Mall - Battlefield Mall Springfield MO - Total Quality Construction - Dave - 4178383690",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.035Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "plbqywe1mbr2kuq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:39.595Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "105 Charlet Way, Ozark",
+ "Job_Codes": "4211 - Foster Guesthouse",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4211%20Foster%20Guesthouse%20%28105%20Charlet%20Way%2C%20Ozark%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Foster Guesthouse - 105 Charlet Way, Ozark - Weber, Bryon",
+ "Job_Name": "Foster Guesthouse",
+ "Job_Number": "4211",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4211 - Foster Guesthouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/05/25 6:04 PM Beth Cardoza Can we do a hand trowel texture something light. Bullnose bead and drywall wraps. Probable 4 months out. -Bryon---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4211 - Foster Guesthouse - 105 Charlet Way, Ozark - Weber, Bryon - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.103Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ydt36lmrb679c3y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:47.892Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wiseman, Jon",
+ "Contact_Notes": "",
+ "Contact_Person": "Jon Wiseman",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "823 W Woodland St, Spfd",
+ "Job_Codes": "4210 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 823 W Woodland St, Spfd - Wiseman, Jon",
+ "Job_Name": "N/A",
+ "Job_Number": "4210",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4210 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/04/25 11:05 AM Beth Cardoza Eddie to view 8:30 tomorrow, 5th.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601863",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4210 - N/A - 823 W Woodland St, Spfd - Wiseman, Jon - Jon Wiseman - 4178601863",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.187Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q3dhsjhry8voqrv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:47.984Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Isbell, Truman",
+ "Contact_Notes": "",
+ "Contact_Person": "Truman Isbell",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2009 N 9th Ave, Ozark",
+ "Job_Codes": "4209 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 2009 N 9th Ave, Ozark - Isbell, Truman",
+ "Job_Name": "Patches",
+ "Job_Number": "4209",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4209 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178417956",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4209 - Patches - 2009 N 9th Ave, Ozark - Isbell, Truman - Truman Isbell - 4178417956",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.257Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m8iz7bv1h8f9zly",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:48.088Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Isbell, Truman",
+ "Contact_Notes": "",
+ "Contact_Person": "Truman Tisbell",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2516 E Huntington, Ozark",
+ "Job_Codes": "4208 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 2516 E Huntington, Ozark - Isbell, Truman",
+ "Job_Name": "Step thru",
+ "Job_Number": "4208",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4208 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178417956",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4208 - Step thru - 2516 E Huntington, Ozark - Isbell, Truman - Truman Tisbell - 4178417956",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.324Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "72nmicgt9d9c6t8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:48.213Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Blair",
+ "Contact_Notes": "",
+ "Contact_Person": "Blair",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "4207 - Hotel pool ceiling",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hotel pool ceiling - Spfd - Blair",
+ "Job_Name": "Hotel pool ceiling",
+ "Job_Number": "4207",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4207 - Hotel pool ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "3149413345",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4207 - Hotel pool ceiling - Spfd - Blair - Blair - 3149413345",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.396Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "72tk1xdgmt3de0f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:48.324Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hwy 76, Branson",
+ "Job_Codes": "4206 - Branson Landing Winery",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4206%20Branson%20Landing%20Winery%20%28Hwy%2076%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Landing Winery - Hwy 76, Branson - Still, Mark",
+ "Job_Name": "Branson Landing Winery",
+ "Job_Number": "4206",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4206 - Branson Landing Winery",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/11/25 11:02 AM Beth Cardoza CO: We called something \"2 patches\", but they removed the wall? (vox 10:46 on 7/11). 3 extra sheets. \nCO: sink area - somebody hit the other side of the wall and broke the FRP. Also 4-5 extra sheets.---\n07/14/25 12:53 PM Beth Cardoza They ended up just taking off the FRP and want us to skim it… probably will seal it first---\n07/14/25 12:54 PM Beth Cardoza CO: not using the grid strips. I think they are painting them.---\n06/26/25 3:12 PM Beth Cardoza Possible CO: install 8 12’ wood 2x4 studs for slat wall (confirm if we do it or someone else)---\n06/25/25 9:40 AM Beth Cardoza CO: instead of them demoing the wash sink area, we are furring it out and finishing it.---\n06/23/25 9:55 AM Beth Cardoza Job 4206 lockbox code: 2010---\n06/20/25 11:35 AM Beth Cardoza CO: added wall? Voxer message 6:20/25 7:06 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4206 - Branson Landing Winery - Hwy 76, Branson - Still, Mark - Mike Steel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.455Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h2d14mojufmng9i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:48.425Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Prosperiti Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "S Dayton, Spfd",
+ "Job_Codes": "4205 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - S Dayton, Spfd - Prosperiti Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "4205",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4205 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/06/25 2:20 PM Beth Cardoza Dave giving them a verbal unit price of .84 per sqft---\n06/10/25 4:35 PM Beth Cardoza I didn't write anything up. If they are interested I will---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178511785",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4205 - N/A - S Dayton, Spfd - Prosperiti Construction - - 4178511785",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.536Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b9yetfoztpuvt9w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:48.532Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holder, Angie",
+ "Contact_Notes": "",
+ "Contact_Person": "Angie Holder",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "952 S Western St, Marionville",
+ "Job_Codes": "4204 - N/A",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 952 S Western St, Marionville - Holder, Angie",
+ "Job_Name": "N/A",
+ "Job_Number": "4204",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4204 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/22/25 1:47 PM Beth Cardoza COs: credit for Drywall provided by client. Great wall of the stairs needs to be hung and unfinished. Upstairs room that we figured hang only needs to be taped (no texture)---\n09/22/25 1:47 PM Beth Cardoza They’re having finished concrete floor. So might need to cover up better.---\n09/26/25 2:05 PM Beth Cardoza For some reason I can't edit my comment but it should say high wall of the stairs needs to be hung AND finished.---\n06/30/25 2:04 PM Beth Cardoza She will let us know if we are doing it when she get closer to working on this portion of the work. Maybe a couple of weeks.---\n05/29/25 12:10 PM Beth Cardoza Eddie to Look at this and measure 730 tomorrow morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173004461",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4204 - N/A - 952 S Western St, Marionville - Holder, Angie - Angie Holder - 4173004461",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.600Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xh3vlfum8wmukqb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:50:48.644Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-08-14 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4203 - Tru by Hilton Branson - Construct",
+ "Has_Attachments": false,
+ "Job_Address": "263 Shepherd of the Hills Expy, Branson, MO 65616",
+ "Job_Codes": "4203 - Tru by Hilton Branson",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4203 - Tru by Hilton Branson - Construct",
+ "Job_Full_Name": "Tru by Hilton Branson - 263 Shepherd of the Hills Expy, Branson, MO 65616 - Construct",
+ "Job_Name": "Tru by Hilton Branson",
+ "Job_Number": "4203",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4203FX - Tru by Hilton Branson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Follow Up",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Email follow up sent on 09.08",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4203FX - Tru by Hilton Branson - 263 Shepherd of the Hills Expy, Branson, MO 65616 - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.684Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2g7btkubzde9ocr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:20.386Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "blahr@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2705 Diamond Street, Springfield, MO 65803",
+ "Job_Codes": "4202 - New Pedigree Sales Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4202%20New%20Pedigree%20Sales%20Bldg%20%5BKillian%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "New Pedigree Sales Building - 2705 Diamond Street, Springfield, MO 65803 - Killian Construction",
+ "Job_Name": "New Pedigree Sales Building",
+ "Job_Number": "4202",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4202FX - New Pedigree Sales Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203263",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4202FX - New Pedigree Sales Building - 2705 Diamond Street, Springfield, MO 65803 - Killian Construction - Blake Lahr - 4175203263",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.744Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "flbao43ip29vmt8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:40.431Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-06-10 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Wyatt@ross2017.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4201 - K9 Hideaway - Ross",
+ "Has_Attachments": false,
+ "Job_Address": "Compte Road, Springfield, MO 65802",
+ "Job_Codes": "4201 - K9 Hideaway",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4201 - K9 Hideaway - Ross",
+ "Job_Full_Name": "K9 Hideaway - Compte Road, Springfield, MO 65802 - Ross Construction",
+ "Job_Name": "K9 Hideaway",
+ "Job_Number": "4201",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4201FX - K9 Hideaway",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4201FX - K9 Hideaway - Compte Road, Springfield, MO 65802 - Ross Construction - Wyatt Gann - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.817Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "swlid7smgvj3yxe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:20.587Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 W. Madison St, Bolivar, MO",
+ "Job_Codes": "4200 - Bolivar ECLC Classroom Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4200%20Bolivar%20EC%20Classroom%20Add%20%5BKCI%2DDeWitt%2DA2D%2DSnyder%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - KCI",
+ "Job_Name": "Bolivar ECLC Classroom Addition",
+ "Job_Number": "4200",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4200PWEX - Bolivar ECLC Classroom Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174308953",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4200PWEX - Bolivar ECLC Classroom Addition - 524 W. Madison St, Bolivar, MO - KCI - Brady Bowen - 4174308953",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.872Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qd7zug9ueygwuxt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:40.639Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colegrove, Greg",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Colegrove",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "571 S Barnstable, Nixa",
+ "Job_Codes": "4199 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4199%20Remodel%20%28571%20S%20Barnstable%2C%20Nixa%29%20%28Colegrove%2C%20Greg%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 571 S Barnstable, Nixa - Colegrove, Greg",
+ "Job_Name": "Remodel",
+ "Job_Number": "4199",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4199 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175511764",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4199 - Remodel - 571 S Barnstable, Nixa - Colegrove, Greg - Greg Colegrove - 4175511764",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:37.943Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "squcb16zrulek47",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:13.474Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "128 Beth Page Ct, Branson",
+ "Job_Codes": "4198 - Makuch",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4198%20Makuch%20%28128%20Beth%20Page%20Ct%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Makuch - 128 Beth Page Ct, Branson - Still, Mark",
+ "Job_Name": "Makuch",
+ "Job_Number": "4198",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4198 - Makuch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/22/25 5:19 PM Beth Cardoza Yes, there will be drywall in the basement, but I’m not sure on how it frames out yet. And we haven’t got building permits for it’s months down the road.---\n07/22/25 4:10 PM Beth Cardoza New Plans. New details: Square corners, and all the lower windows will have three sides wrapped, and the trapezoids up higher will be wrapped four side---\n05/23/25 11:24 AM Beth Cardoza It specifies level 4 for the ceiling so let's figure the same on the walls.\nLets Plan on rapping the window and round corners.\nI don't have a start date at this time.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4198 - Makuch - 128 Beth Page Ct, Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.024Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "td7bwthbeppibd7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:13.583Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JE Foster Building Co",
+ "Contact_Notes": "",
+ "Contact_Person": "Joshua Foster ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jfoster@jefoster.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "606 West Main St, Branson, MO 65616",
+ "Job_Codes": "4197 - Dutch Bros Branson",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4197%20Dutch%20Bros%20Banson%20%5BJE%20Foster%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Dutch Bros Branson - 606 West Main St, Branson, MO 65616 - JE Foster Building Co",
+ "Job_Name": "Dutch Bros Branson",
+ "Job_Number": "4197",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4197FX - Dutch Bros Branson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3148423300",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4197FX - Dutch Bros Branson - 606 West Main St, Branson, MO 65616 - JE Foster Building Co - Joshua Foster - 3148423300",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.104Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lervljmdy5rwiqx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:40.919Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "471 Arizona Dr, Branson",
+ "Job_Codes": "4196 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 471 Arizona Dr, Branson - Vision Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "4196",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4196 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175980828",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4196 - Repairs - 471 Arizona Dr, Branson - Vision Construction - Jeremy - 4175980828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.176Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e1dy3zu06xwaiay",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:13.807Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pinkly, Kolton",
+ "Contact_Notes": "",
+ "Contact_Person": "Kolton Pinkly ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "23792 Lawrence 1160, Verona",
+ "Job_Codes": "4195 - Rehab",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4195%20%5BR%5D%20Rehab%20%2823792%20Lawrence%201160%2C%20Verona%29%20%28Pinkly%2C%20Kolton%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Rehab - 23792 Lawrence 1160, Verona - Pinkly, Kolton",
+ "Job_Name": "Rehab",
+ "Job_Number": "4195",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4195 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/25 9:54 AM Beth Cardoza Ready after the 7th---\n05/21/25 1:26 PM Beth Cardoza Eddie might look at it in a couple of days?---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174408936",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4195 - Rehab - 23792 Lawrence 1160, Verona - Pinkly, Kolton - Kolton Pinkly - 4174408936",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.248Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tkz7uvlstv6vptw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:13.923Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Withers, Rob",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob Withers",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "9464 E Farm Rd,Straffor",
+ "Job_Codes": "4194 - Shelton",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4194%20Shelton%20%28Strafford%29%20%28Withers%2C%20Rob%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Shelton - 9464 E Farm Rd,Straffor - Withers, Rob",
+ "Job_Name": "Shelton",
+ "Job_Number": "4194",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4194 - Shelton",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/20/25 12:20 PM Beth Cardoza Everything but storage in basement will finish...we will hang and tape storage (no texture). As of right now the ceilings will be treebark like we have been doing and we will do a light splatter or orange peel on the walls.\n05/20/25 2:21 PM Beth Cardoza Windows trim out and do not wrap.\nCorners are square.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178607397",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4194 - Shelton - 9464 E Farm Rd,Straffor - Withers, Rob - Rob Withers - 4178607397",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.311Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cew96e0i94m7lq2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.027Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mid South Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tanner Gray ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5782 N FR 171, Spfd",
+ "Job_Codes": "4193 - Texture repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture repair - 5782 N FR 171, Spfd - Mid South Construction",
+ "Job_Name": "Texture repair",
+ "Job_Number": "4193",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4193 - Texture repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178138867",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4193 - Texture repair - 5782 N FR 171, Spfd - Mid South Construction - Tanner Gray - 4178138867",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.397Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h7vcf6ethym5ypu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.137Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Keeley Construction Company",
+ "Contact_Notes": "",
+ "Contact_Person": "JT Becker",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jbecker@keeleyconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5141 West Cargo Street, Springfield, MO 65803",
+ "Job_Codes": "4192 - UPS Springfield Air Gateway",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4192%20UPS%20Springfield%20AIr%20Gateway&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "UPS Springfield Air Gateway - 5141 West Cargo Street, Springfield, MO 65803 - Keeley Construction Company",
+ "Job_Name": "UPS Springfield Air Gateway",
+ "Job_Number": "4192",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4192FX - UPS Springfield Air Gateway",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3149788063",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4192FX - UPS Springfield Air Gateway - 5141 West Cargo Street, Springfield, MO 65803 - Keeley Construction Company - JT Becker - 3149788063",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.465Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kvmxx4wl1hm51r2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:41.356Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mid South Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tanner Gray ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "818 N Thornapple Ln, Spfd",
+ "Job_Codes": "4191 - Texture Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture Repairs - 818 N Thornapple Ln, Spfd - Mid South Construction",
+ "Job_Name": "Texture Repairs",
+ "Job_Number": "4191",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4191 - Texture Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178138867",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4191 - Texture Repairs - 818 N Thornapple Ln, Spfd - Mid South Construction - Tanner Gray - 4178138867",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.540Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uzy0q2945mak764",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.363Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Integrity Contracting",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick Garand",
+ "Docs_Uploaded": true,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4190 - Holy Trinity Church",
+ "Has_Attachments": false,
+ "Job_Address": "2818 E Bennet St. Springfield, MO 65804",
+ "Job_Codes": "4190 - Holy Trinity Catholic Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4190 - Holy Trinity Church",
+ "Job_Full_Name": "Holy Trinity Catholic Church - 2818 E Bennet St. Springfield, MO 65804 - Integrity Contracting",
+ "Job_Name": "Holy Trinity Catholic Church",
+ "Job_Number": "4190",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4190FXEX - Holy Trinity Catholic Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178186003",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4190FXEX - Holy Trinity Catholic Church - 2818 E Bennet St. Springfield, MO 65804 - Integrity Contracting - Rick Garand - 4178186003",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.611Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kghhbvz2m5a3smx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:21.392Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Constuction",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1550 E Battlefield Ste E, Springfield MO 65807",
+ "Job_Codes": "4189 - Club K Dental Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Club K Dental Office - 1550 E Battlefield Ste E, Springfield MO 65807 - Oak Grove Constuction",
+ "Job_Name": "Club K Dental Office",
+ "Job_Number": "4189",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4189FX - Club K Dental Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178875464",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4189FX - Club K Dental Office - 1550 E Battlefield Ste E, Springfield MO 65807 - Oak Grove Constuction - Mike - 4178875464",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.665Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qbrv2mta498zdfn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.582Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nicholas St. George",
+ "Contact_Notes": "",
+ "Contact_Person": "Nicholas St. George ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1415 W State Highway J, Ozark, MO 65721",
+ "Job_Codes": "4188 - St. Georges Donuts - Ozark",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "St. Georges Donuts - Ozark - 1415 W State Highway J, Ozark, MO 65721 - Nicholas St. George",
+ "Job_Name": "St. Georges Donuts - Ozark",
+ "Job_Number": "4188",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4188FX - St. Georges Donuts - Ozark",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178943663",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4188FX - St. Georges Donuts - Ozark - 1415 W State Highway J, Ozark, MO 65721 - Nicholas St. George - Nicholas St. George - 4178943663",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.727Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5ku37r4w893wfjb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.694Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Michael",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Smith ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "mike.seldomheard@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "833 S Kentwood Ave, Spfd",
+ "Job_Codes": "4187 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 833 S Kentwood Ave, Spfd - Smith, Michael",
+ "Job_Name": "Water damage",
+ "Job_Number": "4187",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4187 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4187 - Water damage - 833 S Kentwood Ave, Spfd - Smith, Michael - Michael Smith - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.789Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "22uvag68faapbpc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.795Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Osborn, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Osborn",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1724 W Westview St, Spfd",
+ "Job_Codes": "4186 - Ceiling repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling repair - 1724 W Westview St, Spfd - Osborn, Jim",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "4186",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4186 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/03/25 3:28 PM Beth Cardoza Friday at 11 Eddie walk---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4186 - Ceiling repair - 1724 W Westview St, Spfd - Osborn, Jim - Jim Osborn - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.865Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fzyhr70irzpffy9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:14.899Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Laughlin, Laura",
+ "Contact_Notes": "",
+ "Contact_Person": "Laura Laughlin ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sedlaughlin2@live.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1342 E Greenwood St, Spfd",
+ "Job_Codes": "4185 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4185%20%5BS%5D%20Step%20thru%20%281342%20E%20Greenwood%20St%2C%20Spfd%29%20%28Laughlin%2C%20Laura%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Step thru - 1342 E Greenwood St, Spfd - Laughlin, Laura",
+ "Job_Name": "Step thru",
+ "Job_Number": "4185",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4185 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4185 - Step thru - 1342 E Greenwood St, Spfd - Laughlin, Laura - Laura Laughlin - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:38.941Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gphehgx052m7beo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.014Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Burch ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4914 S Wellington Dr, Spfd",
+ "Job_Codes": "4184 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 4914 S Wellington Dr, Spfd - Cowherd",
+ "Job_Name": "Repairs",
+ "Job_Number": "4184",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4184 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/28/25 1:11 PM Beth Cardoza Tree bark ceiling texture---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177192510",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4184 - Repairs - 4914 S Wellington Dr, Spfd - Cowherd - Mike Burch - 4177192510",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.008Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h5xz6pjyru24ibv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.122Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "4183 - Tanger Outlet",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Tanger Outlet - Branson - Still, Mark",
+ "Job_Name": "Tanger Outlet",
+ "Job_Number": "4183",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4183 - Tanger Outlet",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4183 - Tanger Outlet - Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.060Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9pelznu5ba15fql",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.226Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hwy 176 Taney County",
+ "Job_Codes": "4182 - Johns Residence",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4182%20Johns%20Residence%20%28Hwy%20176%20Taney%20County%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Johns Residence - Hwy 176 Taney County - Still, Mark",
+ "Job_Name": "Johns Residence",
+ "Job_Number": "4182",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4182 - Johns Residence",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/14/25 11:52 AM Beth Cardoza Let's Plan on standard orange peel\nSquare corners\nFigure wrapping the windows on 3 sides at this time\nIt will be a couple of months at least.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4182 - Johns Residence - Hwy 176 Taney County - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.124Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ka5vbugkyyptvmb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.334Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Bread Tray Mountain Rd, Lampe",
+ "Job_Codes": "4181 - Kova",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4181%20Kova%20%28Bread%20Tray%20Mountain%20Rd%2C%20Lampe%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kova - Bread Tray Mountain Rd, Lampe - Essick, Dusty",
+ "Job_Name": "Kova",
+ "Job_Number": "4181",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4181 - Kova",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4181 - Kova - Bread Tray Mountain Rd, Lampe - Essick, Dusty - Dusty Essick - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.175Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p9vuck3z5y5805z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.442Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Eidson, Ron",
+ "Contact_Notes": "",
+ "Contact_Person": "Ron Edison",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ra.eidson@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7587 W Hwy EE, Spfd",
+ "Job_Codes": "4180 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4180%20Repairs%20%287587%20W%20Hwy%20EE%2C%20Spfd%29%20%28Eidson%2C%20Ron%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 7587 W Hwy EE, Spfd - Eidson, Ron",
+ "Job_Name": "Repairs",
+ "Job_Number": "4180",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4180 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4180 - Repairs - 7587 W Hwy EE, Spfd - Eidson, Ron - Ron Edison - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.241Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t9z8ds49qc0kph1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.562Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holtz Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Hans Wilkes",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-05-21 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "hwilkes@holtzbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4179 - Hall of Fame Hotel Remodel - Holtz Builder",
+ "Has_Attachments": false,
+ "Job_Address": "3005 W 76 Country Rd., Branson, MO, 65616",
+ "Job_Codes": "4179 - Hall of Fame Hotel Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4179 - Hall of Fame Hotel Remodel - Holtz Builder",
+ "Job_Full_Name": "Hall of Fame Hotel Remodel - 3005 W 76 Country Rd., Branson, MO, 65616 - Holtz Builders",
+ "Job_Name": "Hall of Fame Hotel Remodel",
+ "Job_Number": "4179",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4179FX - Hall of Fame Hotel Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6082530990",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4179FX - Hall of Fame Hotel Remodel - 3005 W 76 Country Rd., Branson, MO, 65616 - Holtz Builders - Hans Wilkes - 6082530990",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.320Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1r9o90clpq7l3qg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:22.199Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4178 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4178",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4178 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/25 1:35 PM Beth Cardoza Went with someone else---",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4178 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.384Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dgo0trbdjuprmbo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.782Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mouery, Rick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick Mouery",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-10-24 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6654 W FR 174, Republic",
+ "Job_Codes": "4177 - ",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4177%20Addition%20%286654%20W%20FR%20174%2C%20Republic%29%20%28Mouery%2C%20Rick%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": " - 6654 W FR 174, Republic - Mouery, Rick",
+ "Job_Name": "",
+ "Job_Number": "4177",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4177 - ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": ".1 Addition, .2 Basement .3 Existing",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "(417) 429-5229",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4177 - - 6654 W FR 174, Republic - Mouery, Rick - Rick Mouery - (417) 429-5229",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.452Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fnyh793lmquitt1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.886Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4176 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4176",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4176 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4176 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.500Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "271j6r5bujk80sm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:15.986Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4175 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4175%20Guevel%20Residence%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4175",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4175 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/07/25 3:37 PM Beth Cardoza We would like the same finishes that we did at Brad Thomas House (199 Shinnecock). \nthe windows will not be wrapped i don't believe.\nIt will be a few months we haven't broken ground yet.---",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4175 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.560Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kfu3lt5s26tfx3e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.094Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4174 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4174%20Ozark%20Chevy%20New%20Building%20%5BHR%20Constuction%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4174",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4174 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4174 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.625Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cxfzbxr5f8jll6x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.202Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4173 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4173%20Bluegreen%20Falls%20Village%20%5BInnovative%20Construction%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4173",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4173 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4173 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.684Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d7hqpmmucmrrt97",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.314Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4172 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4172%20FCC%20Auditorium%20Reno%20%5BIntegrity%20Development%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4172",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4172 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4172 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.740Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uizqbwqxgrsqfuy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.426Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "2025-08-30 00:00:00.000Z",
+ "Due_Date_Counter": "Passed due",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4171 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4171%20Diggins%20Sanctuary%20Expansion%20%5BIntegrity%20Development%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "4171",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "4171 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Estimating",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "4171 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.801Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "551js4bxk0q4ety",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.541Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Brown",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-05-16 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "Gbrown@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4170 - Mercy Senior Clinic St Roberts - DeWitt",
+ "Has_Attachments": false,
+ "Job_Address": "332 Marshall Drive, St. Robersts, MO 65584",
+ "Job_Codes": "4170 - Mercy Senior Clinic - St Roberts",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4170 - Mercy Senior Clinic St Roberts - DeWitt",
+ "Job_Full_Name": "Mercy Senior Clinic - St Roberts - 332 Marshall Drive, St. Robersts, MO 65584 - DeWitt and Associates",
+ "Job_Name": "Mercy Senior Clinic - St Roberts",
+ "Job_Number": "4170",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4170FXEX - Mercy Senior Clinic - St Roberts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173703895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4170FXEX - Mercy Senior Clinic - St Roberts - 332 Marshall Drive, St. Robersts, MO 65584 - DeWitt and Associates - Greg Brown - 4173703895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.855Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x73l1dncosuq2qs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:22.919Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Terry, Renae",
+ "Contact_Notes": "",
+ "Contact_Person": "Renae Terry ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "485 Buckskin Ridge Rd, Ozark",
+ "Job_Codes": "4169 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4169%20%28485%20Buckskin%20Ridge%20Rd%2C%20Ozark%29%20%28Terry%2C%20Renae%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 485 Buckskin Ridge Rd, Ozark - Terry, Renae",
+ "Job_Name": "N/A",
+ "Job_Number": "4169",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4169 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/15/25 12:53 PM Beth Cardoza Possible CO: delayed pocket doors (2 or 3?) maybe 6 sheets of drywall including something missed in a utility room.\n\nAlso as a side note. Garages and storage area are L3 instead of orange peel---\n08/20/25 11:18 AM Beth Cardoza change orders created. draw for balance submitted---\n08/08/25 9:15 AM Beth Cardoza Possible CO: deduct 300 sqft for walls in storage room that were concrete---\n08/08/25 9:16 AM Beth Cardoza We can give her credit for a few thousand feet just because it was less than what we estimated if we wanted… but nothing seems different from the plans other than that room so we don’t know the reason for the discrepancy---\n08/07/25 7:04 AM david cardoza Stock 21,056\nSecond stock 760\nTotal stock 21,816\nNo leftover---\n07/21/25 2:36 PM Beth Cardoza REW revised count 21,056 7/17/25---\n05/23/25 2:14 PM Beth Cardoza Ready for drywall June 16th---\n05/05/25 2:16 PM Beth Cardoza Should be ready for sheetrock June 1. Please bid the entire house and garage,\nbut not the apartment behind and above garage. Thank you!\n2 story walk out basement. 2800 on each floor plus detached 3 car garage. Approx 6200 tot\n05/05/25 4:04 PM Beth Cardoza Due May 10th\n\n4 way window wraps\nSquare corners---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "7194603278",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4169 - N/A - 485 Buckskin Ridge Rd, Ozark - Terry, Renae - Renae Terry - 7194603278",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.916Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v8dh182t92hzwhk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.770Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bingle, Brian",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Bingle ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "580 S Bradford Ave, Nixa",
+ "Job_Codes": "4168 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4168%20Water%20damage%20%28580%20S%20Bradford%20Ave%2C%20Nixa%29%20%28Bingle%2C%20Brian%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Water damage - 580 S Bradford Ave, Nixa - Bingle, Brian",
+ "Job_Name": "Water damage",
+ "Job_Number": "4168",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4168 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302922",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4168 - Water damage - 580 S Bradford Ave, Nixa - Bingle, Brian - Brian Bingle - 4178302922",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:39.984Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j940t6f6cg088g4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:16.890Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Turnkey Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerrica Wright ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jerrica@1turnkeysolutions.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1701 W. Sunshine, Suite P, Springfield MO 65807",
+ "Job_Codes": "4167 - Edward Jones Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4167%20Edward%20Jones%20Remodel%20Springfield%20%5BTurnkey%20Solutions%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Edward Jones Remodel - 1701 W. Sunshine, Suite P, Springfield MO 65807 - Turnkey Solutions",
+ "Job_Name": "Edward Jones Remodel",
+ "Job_Number": "4167",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4167FX - Edward Jones Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6363644033",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4167FX - Edward Jones Remodel - 1701 W. Sunshine, Suite P, Springfield MO 65807 - Turnkey Solutions - Jerrica Wright - 6363644033",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.044Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "azaik1onzobcfkh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:17.042Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Vaughn",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-05-07 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "admin@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2053 S Waverly Ave, Suite B, Springfield MO 65804",
+ "Job_Codes": "4166 - Malkamus Chiropractic Clinic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4166%20Malkamus%20Chiropractor%20Clinic%20Infill%20%5BOakgrove%20Const%2E%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Malkamus Chiropractic Clinic - 2053 S Waverly Ave, Suite B, Springfield MO 65804 - Oak Grove Construction",
+ "Job_Name": "Malkamus Chiropractic Clinic",
+ "Job_Number": "4166",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4166FX - Malkamus Chiropractic Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4166FX - Malkamus Chiropractic Clinic - 2053 S Waverly Ave, Suite B, Springfield MO 65804 - Oak Grove Construction - Matt Vaughn - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.119Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kirnexxkudr8fhz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:17.227Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Melugin, Kelsey",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelsey Melugin",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4275 E Farm Rd 132, Spfd",
+ "Job_Codes": "4165 - Basement",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement - 4275 E Farm Rd 132, Spfd - Melugin, Kelsey",
+ "Job_Name": "Basement",
+ "Job_Number": "4165",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4165 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178186259",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4165 - Basement - 4275 E Farm Rd 132, Spfd - Melugin, Kelsey - Kelsey Melugin - 4178186259",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.163Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uy07enbqel5qqsv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:17.394Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Huelskamp, Ben",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Huelskamp ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "216 E Broadmoor St, Spfd",
+ "Job_Codes": "4164 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 216 E Broadmoor St, Spfd - Huelskamp, Ben",
+ "Job_Name": "Water damage",
+ "Job_Number": "4164",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4164 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175511449",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4164 - Water damage - 216 E Broadmoor St, Spfd - Huelskamp, Ben - Ben Huelskamp - 4175511449",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.219Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "38pv77jkl9k94bj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:17.555Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jamco",
+ "Contact_Notes": "",
+ "Contact_Person": "Joseph Miller ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "117 Kleier Loop, Seymour",
+ "Job_Codes": "4163 - Lawrence",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4163%20%5BR%5D%20Lawrence%20%28117%20Kleier%20Loop%2C%20Seymour%29%20%28Jamco%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lawrence - 117 Kleier Loop, Seymour - Jamco",
+ "Job_Name": "Lawrence",
+ "Job_Number": "4163",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4163 - Lawrence",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/07/25 12:24 PM Beth Cardoza Just go ahead and price it all, without splitting the garage out. Same finishes in the garage as the house.\n\nWindows will be full drywall wrap. No window casement trims at all.\n\nCorners will be square.\n\nI anticipate that thi",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178308141",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4163 - Lawrence - 117 Kleier Loop, Seymour - Jamco - Joseph Miller - 4178308141",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.301Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vx711ou24qsqp1u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:17.695Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Brown",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "gbrown@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1360 E Chestnut, Springfield, MO 65802",
+ "Job_Codes": "4162 - Comfort Products",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4162%20Comfort%20Product%20%5BDeWitt%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Comfort Products - 1360 E Chestnut, Springfield, MO 65802 - DeWitt and Associates",
+ "Job_Name": "Comfort Products",
+ "Job_Number": "4162",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4162FX - Comfort Products",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173703895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4162FX - Comfort Products - 1360 E Chestnut, Springfield, MO 65802 - DeWitt and Associates - Greg Brown - 4173703895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.359Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "202tkpuvxp4aa54",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:43.486Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "NJ Glass and Metal",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Anagnostis",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-05-13 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "sanagnostis@njgam.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "780 N 18th St, Ozark, MO 65721",
+ "Job_Codes": "4161 - TMobile Ceiling Replacement",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4161%20TMobile%20Ceiling%20Replacement&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "TMobile Ceiling Replacement - 780 N 18th St, Ozark, MO 65721 - NJ Glass and Metal",
+ "Job_Name": "TMobile Ceiling Replacement",
+ "Job_Number": "4161",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4161FX - TMobile Ceiling Replacement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "7323661910",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4161FX - TMobile Ceiling Replacement - 780 N 18th St, Ozark, MO 65721 - NJ Glass and Metal - Steve Anagnostis - 7323661910",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.412Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9mlzq3pze2l742r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:17.922Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Vaughn",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-05-06 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "admin@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4160 - Progressive Office - Oakgrove Const",
+ "Has_Attachments": false,
+ "Job_Address": "4331 S National Ave, Springfield, MO",
+ "Job_Codes": "4160 - Progressive Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4160 - Progressive Office - Oakgrove Const",
+ "Job_Full_Name": "Progressive Office - 4331 S National Ave, Springfield, MO - Oak Grove Construction",
+ "Job_Name": "Progressive Office",
+ "Job_Number": "4160",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4160FX - Progressive Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4160FX - Progressive Office - 4331 S National Ave, Springfield, MO - Oak Grove Construction - Matt Vaughn - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.475Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "chklm4j42d3zrsi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:23.653Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dodd, Leah",
+ "Contact_Notes": "",
+ "Contact_Person": "Leah Dodd ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2907 N 26th St, Ozark",
+ "Job_Codes": "4159 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2907 N 26th St, Ozark - Dodd, Leah",
+ "Job_Name": "Repairs",
+ "Job_Number": "4159",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4159 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178443048",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4159 - Repairs - 2907 N 26th St, Ozark - Dodd, Leah - Leah Dodd - 4178443048",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.536Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jkxyet41gcaefvx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.158Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "381 Stillwood, Branson",
+ "Job_Codes": "4158 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4158%20%28381%20Stillwood%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 381 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "4158",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4158 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/17/25 11:53 AM Beth Cardoza CO: columns being added---\n05/05/25 11:43 AM david cardoza Stock 13,018\nLeftover 144\nHang 12,874---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4158 - N/A - 381 Stillwood, Branson - Still, Mark - Mark Steel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.597Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ot7kj2av9vpnomh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.273Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "371 Stillwood, Branson",
+ "Job_Codes": "4157 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4157%20%28371%20Stillwood%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 371 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "4157",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4157 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/17/25 11:53 AM Beth Cardoza CO: new columns and two round patches---\n05/14/25 4:17 PM david cardoza Stock 13,018\nLeftover 240---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4157 - N/A - 371 Stillwood, Branson - Still, Mark - Mark Steel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.664Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dmtajt4gw6xm8eo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.390Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "268 Hidden Lane, Branson",
+ "Job_Codes": "4156 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 268 Hidden Lane, Branson - Peach Tree",
+ "Job_Name": "Patches",
+ "Job_Number": "4156",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4156 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/25/25 9:56 AM Beth Cardoza CO: More added---\n06/25/25 9:44 AM Beth Cardoza Coming up---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175271095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4156 - Patches - 268 Hidden Lane, Branson - Peach Tree - Chad Meadows - 4175271095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.724Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z020vlvo9lgp8z7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.493Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2847 S Ingram Mill Rd, Spfd",
+ "Job_Codes": "4155 - N/A",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4155%20Cobblestone%20Office%20Reno%20%5BWeber%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 2847 S Ingram Mill Rd, Spfd - Weber, Bryon",
+ "Job_Name": "N/A",
+ "Job_Number": "4155",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4155 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/07/25 9:20 AM Beth Cardoza CO: At cobblestone. \nThere’s gonna be three places we need to sheet rock patch now. When is the small hole in the wall upstairs. The other one is what we already talked about, the window that didn’t work out in the back offic\n06/16/25 10:37 AM Beth Cardoza CO: We just finished texturing there last week, but now they are wanting to do some new things this week. Those will be a change. Should get more info today.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#4155 - N/A - 2847 S Ingram Mill Rd, Spfd - Weber, Bryon - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.780Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0z1dijhzawq8oy1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.602Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Outlaw Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": true,
+ "Estimate_Draft": true,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "486 Dakota Rd, Crane",
+ "Job_Codes": "4154 - Weythman",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4154%20%5BR%5D%20Weythman%20%28Outlaw%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Weythman - - Outlaw Construction",
+ "Job_Name": "Weythman",
+ "Job_Number": "4154",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4154FX - Weythman",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "---09/18/25 7:15 AM Beth Cardoza Yes, there have been several changes we are just now starting the concrete and dirt work, once we get ready for Sheetrock I’ll have you guys come out to measure thanks!---\n06/30/25 2:23 PM Beth Cardoza In May he wrote: this estimate will just be a close rough estimate I won’t hold you to it we are meeting with the land owner June 12th I have already made a temporary stake out of home in order to obtain permits permits have\n05/16/25 2:07 PM Beth Cardoza the corners will be bullnose we will figure 3way wraps on windows, all ceilings wall height will be 9’ except vaulted ceiling it will roughly be 14’ we will figure 1/2” rock stomp knockdown ceiling and orange peel wall text\n04/29/25 4:24 PM Beth Cardoza I created job folder on desktop because I can't access Drive currently.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178273896",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "5",
+ "Scope": "",
+ "Start_Date": "2026-02-08 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4154FX - Weythman - 486 Dakota Rd, Crane - Outlaw Construction - Josh - 4178273896",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.840Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e7vala8clw9pulr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:24.166Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Echo Hollow Rd, Blue Eye",
+ "Job_Codes": "4153 - Clark",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4153%20Clark%20%28Echo%20Hollow%20Rd%2C%20Blue%20Eye%29%20%28Masterpiece%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Clark - Echo Hollow Rd, Blue Eye - Masterpiece",
+ "Job_Name": "Clark",
+ "Job_Number": "4153",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4153 - Clark",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/25 4:59 PM Beth Cardoza It’s on Echo Hollow Drive \nIn Blue Eye off JJ highway---\n05/05/25 3:45 PM Beth Cardoza I sent a draft without Rick approval last week. Told him it may vary a little bit. But I think he just needed bank numbers/preliminary numbers anyway.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173363895",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4153 - Clark - Echo Hollow Rd, Blue Eye - Masterpiece - Tom Caruso - 4173363895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.897Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rajlldd8t06wokl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.829Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hutchinson, David",
+ "Contact_Notes": "",
+ "Contact_Person": "David Hutchison ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "58 Crest Hill Rd, Reeds Spring",
+ "Job_Codes": "4152 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4152%20%20%2858%20Crest%20Hill%20Rd%2C%20Reeds%20Spring%29%20%28Hutchinson%2C%20David%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 58 Crest Hill Rd, Reeds Spring - Hutchinson, David",
+ "Job_Name": "N/A",
+ "Job_Number": "4152",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4152 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178803168",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4152 - N/A - 58 Crest Hill Rd, Reeds Spring - Hutchinson, David - David Hutchison - 4178803168",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:40.965Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jet4jeqqg95bfy6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:18.950Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Miller, Joseph",
+ "Contact_Notes": "",
+ "Contact_Person": "Joseph Miller",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Seymour",
+ "Job_Codes": "4151 - Joseph Miller's sister step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Joseph Miller's sister step thru - Seymour - Miller, Joseph",
+ "Job_Name": "Joseph Miller's sister step thru",
+ "Job_Number": "4151",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4151 - Joseph Miller's sister step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4151 - Joseph Miller's sister step thru - Seymour - Miller, Joseph - Joseph Miller - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.033Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "65piyes3jxwfh21",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:19.067Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Veregy",
+ "Contact_Notes": "",
+ "Contact_Person": "Philip Rogers",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-05-05 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "EOD",
+ "EXT": 0,
+ "Email": "progers@veregy.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4150 - Mt Vernon HS PAC - Veregy",
+ "Has_Attachments": false,
+ "Job_Address": "400 State Hwy 174, Mt Vernon, MO 65712",
+ "Job_Codes": "4150 - Mt Vernon Performing Arts Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4150 - Mt Vernon HS PAC - Veregy",
+ "Job_Full_Name": "Mt Vernon Performing Arts Center - 400 State Hwy 174, Mt Vernon, MO 65712 - Veregy",
+ "Job_Name": "Mt Vernon Performing Arts Center",
+ "Job_Number": "4150",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4150PWEX - Mt Vernon Performing Arts Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173490218",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "2026-03-16 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4150PWEX - Mt Vernon Performing Arts Center - 400 State Hwy 174, Mt Vernon, MO 65712 - Veregy - Philip Rogers - 4173490218",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.097Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lxtobp7liz4s3vi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 15:49:34.971Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "estimating@federalconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "636 N Main Street, Republic, MO 65738",
+ "Job_Codes": "4149 - Republic HS Activity Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4149%20Republic%20HS%20Activity%20Center%20%5BFederal%20Const%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Republic HS Activity Center - 636 N Main Street, Republic, MO 65738 - Federal Construction",
+ "Job_Name": "Republic HS Activity Center",
+ "Job_Number": "4149",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4149PWEX - Republic HS Activity Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178620622",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4149PWEX - Republic HS Activity Center - 636 N Main Street, Republic, MO 65738 - Federal Construction - - 4178620622",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.148Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rc6yuajvqcnmeid",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:44.422Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Crawford Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Unknown",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1709 James River Rd, Ozark, MO 65721",
+ "Job_Codes": "4148 - Edward Jones Ozark",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4148%20Edward%20Jones%20%5BRE%20Crawford%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Edward Jones Ozark - 1709 James River Rd, Ozark, MO 65721 - RE Crawford Construction",
+ "Job_Name": "Edward Jones Ozark",
+ "Job_Number": "4148",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4148FX - Edward Jones Ozark",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9419070010",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4148FX - Edward Jones Ozark - 1709 James River Rd, Ozark, MO 65721 - RE Crawford Construction - Unknown - 9419070010",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.208Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9yr69b5wb8br8gj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:44.547Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "John Carr",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3055 E. Division St, Springfield, MO 65802",
+ "Job_Codes": "4147 - CoC Safe to Sleep Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4147%20Council%20of%20Churches%20Sleep%20Reno%20%5BRE%20Smith%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "CoC Safe to Sleep Reno - 3055 E. Division St, Springfield, MO 65802 - RE Smith Construction",
+ "Job_Name": "CoC Safe to Sleep Reno",
+ "Job_Number": "4147",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4147FX - CoC Safe to Sleep Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173853905",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4147FX - CoC Safe to Sleep Reno - 3055 E. Division St, Springfield, MO 65802 - RE Smith Construction - John Carr - 4173853905",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.276Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "68zk8uxqdb3pm5z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:44.679Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Morelock Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Carson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scasson@morelockbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1350 Tracker Road, Nixa, MO",
+ "Job_Codes": "4146 - Thai Table Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4146%20Thai%20Table%20Infill%20%5BMorelock%20Builders%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Thai Table Infill - 1350 Tracker Road, Nixa, MO - Morelock Builders",
+ "Job_Name": "Thai Table Infill",
+ "Job_Number": "4146",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4146FX - Thai Table Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178646661",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4146FX - Thai Table Infill - 1350 Tracker Road, Nixa, MO - Morelock Builders - Steve Carson - 4178646661",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.341Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s5lkhty6og8w7uw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:19.599Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3002 E. Sunshine Springfield",
+ "Job_Codes": "4145 - Jewelry Store",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4145%20Jewelry%20Store%20%5BOak%20Grove%20Const%2E%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Jewelry Store - 3002 E. Sunshine Springfield - Oakgrove Construction",
+ "Job_Name": "Jewelry Store",
+ "Job_Number": "4145",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4145FX - Jewelry Store",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178405933",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4145FX - Jewelry Store - 3002 E. Sunshine Springfield - Oakgrove Construction - Mike - 4178405933",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.429Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m4rj6z9nz5v6598",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:19.706Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "411-417 West US Hwy 60, Republic, MO",
+ "Job_Codes": "4144 - Kim Seng Retail Remodel - Republic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4144%20Kim%20Seng%20Retail%20Remodel%2DRepublic%20%5BFriga%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kim Seng Retail Remodel - Republic - 411-417 West US Hwy 60, Republic, MO - Friga Construction",
+ "Job_Name": "Kim Seng Retail Remodel - Republic",
+ "Job_Number": "4144",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4144FX - Kim Seng Retail Remodel - Republic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4144FX - Kim Seng Retail Remodel - Republic - 411-417 West US Hwy 60, Republic, MO - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.525Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0t2pl0yysexuq0h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:19.819Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Snyder Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "C. Pope",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "c.pope@syndercg.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 North Street, Nixa, MO 65714",
+ "Job_Codes": "4143 - Nixa Junior High School Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - Snyder Construction",
+ "Job_Name": "Nixa Junior High School Reno",
+ "Job_Number": "4143",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4143PWEX - Nixa Junior High School Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4143PWEX - Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - Snyder Construction - C. Pope - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.604Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "skyjqt594mqjifq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:45.003Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "289 McHaffie, Sparta",
+ "Job_Codes": "4142 - Bath",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 289 McHaffie, Sparta - Concept2Completion",
+ "Job_Name": "Bath",
+ "Job_Number": "4142",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4142 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4142 - Bath - 289 McHaffie, Sparta - Concept2Completion - Tim Schwenke - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.683Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gjbmsellk0rduqh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:20.030Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Straub Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Frank McCoy",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "fmccoy@straubconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 North Street, Nixa, MO 65714",
+ "Job_Codes": "4141 - Nixa Junior High School Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - Straub Construction",
+ "Job_Name": "Nixa Junior High School Reno",
+ "Job_Number": "4141",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4141PWEX - Nixa Junior High School Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9134518828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4141PWEX - Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - Straub Construction - Frank McCoy - 9134518828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.752Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f210skpedra2jh4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:45.211Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas - ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3021 E Cherry St. Springfield, MO 65802",
+ "Job_Codes": "4140 - Tiny Fins Pool Facility",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4140%20Tiny%20Fins%20Pool%20%5BDeWitt%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Tiny Fins Pool Facility - 3021 E Cherry St. Springfield, MO 65802 - DeWitt and Associates",
+ "Job_Name": "Tiny Fins Pool Facility",
+ "Job_Number": "4140",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4140FX - Tiny Fins Pool Facility",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4140FX - Tiny Fins Pool Facility - 3021 E Cherry St. Springfield, MO 65802 - DeWitt and Associates - Kim Lucas - - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.821Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9ijgfoalu6vvsxt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:45.343Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "James Ramsey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5124 S Castlewood Dr, Spfd",
+ "Job_Codes": "4139 - Donna Brown",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4139%20Donna%20Brown%20%28Ravenwood%2C%20Spfd%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Donna Brown - 5124 S Castlewood Dr, Spfd - Weber, Bryon",
+ "Job_Name": "Donna Brown",
+ "Job_Number": "4139",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4139 - Donna Brown",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/13/25 9:59 AM Beth Cardoza Possible CO: patches and repairs in existing in advance---\n09/08/25 3:36 PM Beth Cardoza Phase 1 of patch work in existing is complete as of 9/5/25.\n\nThere may be more to come that goes beyond what we figured for during the addition phase. Eddie will try to keep notes---\n04/22/25 2:26 PM Beth Cardoza Referred to as: Donna Brown, Ravenwood south,---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178441903",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4139 - Donna Brown - 5124 S Castlewood Dr, Spfd - Weber, Bryon - James Ramsey - 4178441903",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.880Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u5lldhn30i9aim6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:20.358Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 North Street, Nixa, MO 65714",
+ "Job_Codes": "4138 - Nixa Junior High School Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - DeWitt and Associates",
+ "Job_Name": "Nixa Junior High School Reno",
+ "Job_Number": "4138",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4138PWEX - Nixa Junior High School Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176550218",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4138PWEX - Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - DeWitt and Associates - Tony Blackstock - 4176550218",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.929Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ygmkntge545pj5f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:45.535Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 North Street, Nixa, MO 65714",
+ "Job_Codes": "4137 - Nixa Junior High School Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - KCI",
+ "Job_Name": "Nixa Junior High School Reno",
+ "Job_Number": "4137",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4137PWEX - Nixa Junior High School Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4137PWEX - Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - KCI - Brady Bowen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:41.985Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ya13ugfab3jkuhb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:45.667Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian & Kim Kilpatrick homehowners ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4685 State Hwy JJ, Hollister",
+ "Job_Codes": "4136 - Room",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Room - 4685 State Hwy JJ, Hollister - Baty Construction",
+ "Job_Name": "Room",
+ "Job_Number": "4136",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4136 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/23/25 4:55 PM Beth Cardoza Assuming TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9726585492",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4136 - Room - 4685 State Hwy JJ, Hollister - Baty Construction - Brian & Kim Kilpatrick homehowners - 9726585492",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.153Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ko4lbhg9asufztw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:20.698Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Linear Fox",
+ "Contact_Notes": "",
+ "Contact_Person": "Cory Breast ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4058 Red Oak Rd, Merriam Woods ",
+ "Job_Codes": "4135 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4135%20%284058%20Red%20Oak%20Rd%2C%20Merriam%20Woods%20%E2%80%8A%29%20%28Linear%20Fox%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 4058 Red Oak Rd, Merriam Woods - Linear Fox",
+ "Job_Name": "N/A",
+ "Job_Number": "4135",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4135 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/17/25 8:48 AM david cardoza Stock 5,792\nSecond stock 1,024\nTotal stock 6,816\nLeftover 952\nHang 5,864---\n05/07/25 9:56 AM Beth Cardoza Probably 6-8 weeks out. Hasn't poured foundation yet.---\n05/07/25 9:55 AM Beth Cardoza Low income housing. Might have a few ready at a time - if so we might consider giving a discount. Also need to clarify texture. We could give a price break for all orange peel, but he might benefit more if we did stomp knockd",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8167872869",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4135 - N/A - 4058 Red Oak Rd, Merriam Woods - Linear Fox - Cory Breast - 8167872869",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.212Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "baxc5n30nf1ddj2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:20.814Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "VCMG LLP",
+ "Contact_Notes": "",
+ "Contact_Person": "N/A",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Battlefield Mall",
+ "Job_Codes": "4134 - Lovesac",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lovesac - Battlefield Mall - VCMG LLP",
+ "Job_Name": "Lovesac",
+ "Job_Number": "4134",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4134FX - Lovesac",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4134FX - Lovesac - Battlefield Mall - VCMG LLP - N/A - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dgwuopocby3gf3u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:45.911Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Northstar Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephanie",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3310 W Sunshine Street, Springfield, MO 65807",
+ "Job_Codes": "4133 - Wendys West Sunshine",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4133%20Wendys%20W%2E%20Sunshine%20%5BNorthstar%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wendys West Sunshine - 3310 W Sunshine Street, Springfield, MO 65807 - Northstar Construction",
+ "Job_Name": "Wendys West Sunshine",
+ "Job_Number": "4133",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4133FX - Wendys West Sunshine",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175820177",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4133FX - Wendys West Sunshine - 3310 W Sunshine Street, Springfield, MO 65807 - Northstar Construction - Stephanie - 4175820177",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.328Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5bre4qfthzvkhcv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:46.043Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Northstar",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Grogan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "883 Ranch Estates Dr, Highlandville",
+ "Job_Codes": "4132 - Grogan",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4132%20Grogan%20%28883%20Ranch%20Estates%20Dr%2C%20Highlandville%29%20%28Northstar%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Grogan - 883 Ranch Estates Dr, Highlandville - Northstar",
+ "Job_Name": "Grogan",
+ "Job_Number": "4132",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4132 - Grogan",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/16/25 1:20 PM Beth Cardoza Please quote with levels 3 and 4, square corners. Windows will be all trimmed out. The soonest this would be ready would be June.---\n04/16/25 11:55 AM Beth Cardoza We are asking for you to bid the entire residence, per plans and then an alternate with the removal of the bedroom, mini master and bath on First Floor West side and corresponding area on 2nd floor.\n\nClass IV Architectural S",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4132 - Grogan - 883 Ranch Estates Dr, Highlandville - Northstar - Mike Grogan - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.384Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gecu1o39pmxiyf2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.126Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "281 Hidden Shores Dr, Reeds Spring",
+ "Job_Codes": "4131 - Moore Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4131%20Moore%20Remodel%20%28281%20Hidden%20Shores%20Dr%2C%20Reeds%20Spring%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Moore Remodel - 281 Hidden Shores Dr, Reeds Spring - Weber, Bryon",
+ "Job_Name": "Moore Remodel",
+ "Job_Number": "4131",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4131 - Moore Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/21/25 11:34 AM Beth Cardoza COs: Add basement garage walls\nUpgrade texture from spray knockdown to skimming out and smooth plaster hand texture.---\n07/21/25 11:40 AM Beth Cardoza WRONG JOB! THIS IS NOT A CHANGE---\n04/16/25 11:47 AM Beth Cardoza 50 minute drive from the office---\n04/16/25 11:46 AM Beth Cardoza This is a home renovation and addition. This is located 5 minutes from the Teeter project off DD Kimberling City.\n\n \n\n281 Hidden Shores Dr\n\nReed Springs, Mo 65737\n\n \n\nI would like you to attend a contractors meeting on site",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4131 - Moore Remodel - 281 Hidden Shores Dr, Reeds Spring - Weber, Bryon - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.445Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ipugkzy446yfzd5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.229Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Outlaw Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh Holden ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10678 N FR 183, Fair Grove",
+ "Job_Codes": "4130 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4130%20%2810678%20N%20FR%20183%2C%20Fair%20Grove%29%20%28Outlaw%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 10678 N FR 183, Fair Grove - Outlaw Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "4130",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4130 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/25 1:27 PM Beth Cardoza Doesn't appear to be awarded. Josh unable to get an answer from homeowner.---\n04/24/25 2:47 PM Beth Cardoza Wants fixed price. Doesn't have good clear or accurate plans. REW to measure...---\n04/23/25 2:59 PM Beth Cardoza Sounds like 2-4 weeks out.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178273896",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4130 - N/A - 10678 N FR 183, Fair Grove - Outlaw Construction - Josh Holden - 4178273896",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.505Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "je7g9ejvc5vs62c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.347Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Harris",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "btharris@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 North Street, Nixa, MO 65714",
+ "Job_Codes": "4129 - Nixa Junior High School Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4129%20Nixa%20Junior%20High%20Reno%20%5BMultiple%20GC%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - Killian Construction",
+ "Job_Name": "Nixa Junior High School Reno",
+ "Job_Number": "4129",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4129PWEX - Nixa Junior High School Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203246",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4129PWEX - Nixa Junior High School Reno - 205 North Street, Nixa, MO 65714 - Killian Construction - Brandon Harris - 4175203246",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.580Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4el0um2zxsfqvbn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:46.339Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Constuction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tracy Norman",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3156 E Sunshine, Springfield, MO",
+ "Job_Codes": "4128 - GM and Sons Auto Ceiling",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GM and Sons Auto Ceiling - 3156 E Sunshine, Springfield, MO - Oak Grove Constuction",
+ "Job_Name": "GM and Sons Auto Ceiling",
+ "Job_Number": "4128",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4128FX - GM and Sons Auto Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4128FX - GM and Sons Auto Ceiling - 3156 E Sunshine, Springfield, MO - Oak Grove Constuction - Tracy Norman - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.641Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mqkbzznf15l93vs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.571Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hostert, Chris",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Hostert",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Silver Sunset Ln, Blue Eye",
+ "Job_Codes": "4127 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4127%20%20%28Kimberling%20City%29%20%28Hostert%2C%20Chris%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Silver Sunset Ln, Blue Eye - Hostert, Chris",
+ "Job_Name": "N/A",
+ "Job_Number": "4127",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4127 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/15/25 4:26 PM Beth Cardoza On April 25th he said he had our quote plugged into his budget and at that point planned to use us.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "7143944684",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4127 - N/A - Silver Sunset Ln, Blue Eye - Hostert, Chris - Chris Hostert - 7143944684",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.700Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ebom845insg42ih",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.679Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vauble, Ivan",
+ "Contact_Notes": "",
+ "Contact_Person": "Ivan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2900 W Jean St, Spfd",
+ "Job_Codes": "4126 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4126%20%5BR%5D%20%20%282900%20W%20Jean%20St%2C%20Spfd%29%20%28Vauble%2C%20Ivan%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 2900 W Jean St, Spfd - Vauble, Ivan",
+ "Job_Name": "N/A",
+ "Job_Number": "4126",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4126 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/11/25 12:41 PM Beth Cardoza Orange peal on walls like a stomp on ceiling\nSquare corners\nWindows will be cased out\nNot sure on time frame\nWant a cost with drywall included\nBasement does not finish but finish down stair way---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4126 - N/A - 2900 W Jean St, Spfd - Vauble, Ivan - Ivan - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.765Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m1piuv4cfo28j9j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.778Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Massey, Larry",
+ "Contact_Notes": "",
+ "Contact_Person": "Larry Massey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2536 Canyonwood Ct, Nixa",
+ "Job_Codes": "4125 - Popcorn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 2536 Canyonwood Ct, Nixa - Massey, Larry",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4125",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4125 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 1:55 PM Beth Cardoza Haven't heard anything back.---\n04/22/25 11:03 AM Beth Cardoza Homeowners are doing part of this themselves. probably a month out and will need to see where it's at and what they want us to do at that point when they do what they are going to do.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172988107",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4125 - Popcorn - 2536 Canyonwood Ct, Nixa - Massey, Larry - Larry Massey - 4172988107",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.817Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4mbg2uxf8iskifj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.882Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "616 W. Pacific St., Branson, MO 65616",
+ "Job_Codes": "4124 - Pacific Tower Office Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4124%20Pacific%20Tower%20Office%20Reno%20%5BDeWitt%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pacific Tower Office Renovation - 616 W. Pacific St., Branson, MO 65616 - DeWitt and Associates",
+ "Job_Name": "Pacific Tower Office Renovation",
+ "Job_Number": "4124",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4124FX - Pacific Tower Office Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "GC mentioned Client wanted a rebid for new numbers",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4124FX - Pacific Tower Office Renovation - 616 W. Pacific St., Branson, MO 65616 - DeWitt and Associates - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.872Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h1r8eo5vv477slp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:21.990Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Link, Todd",
+ "Contact_Notes": "",
+ "Contact_Person": "Todd Link ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Redeemed Books",
+ "Job_Codes": "4123 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - Redeemed Books - Link, Todd",
+ "Job_Name": "Water damage",
+ "Job_Number": "4123",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4123 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/16/25 9:36 AM Beth Cardoza Might need additional work---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178605482",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4123 - Water damage - Redeemed Books - Link, Todd - Todd Link - 4178605482",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.929Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kraobbmxysoqbbb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:22.098Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Coffman, Jeremy",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy Coffman ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "701 E North St, Nixa",
+ "Job_Codes": "4122 - Basement",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4122%20Basement%20%28701%20E%20North%20St%2C%20Nixa%29%20%28Coffman%2C%20Jeremy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 701 E North St, Nixa - Coffman, Jeremy",
+ "Job_Name": "Basement",
+ "Job_Number": "4122",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4122 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178808834",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4122 - Basement - 701 E North St, Nixa - Coffman, Jeremy - Jeremy Coffman - 4178808834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:42.984Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9z57cvrd59njw5f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:22.206Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Veregy",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Cavin, ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "101 Locust Street, Exeter MO 65647",
+ "Job_Codes": "4121 - Exeter High School Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4121%20Exeter%20High%20School%20Addition%20%5BVeregy%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Exeter High School Addition - 101 Locust Street, Exeter MO 65647 - Veregy",
+ "Job_Name": "Exeter High School Addition",
+ "Job_Number": "4121",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4121FX - Exeter High School Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173153479",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4121FX - Exeter High School Addition - 101 Locust Street, Exeter MO 65647 - Veregy - Michael Cavin, - 4173153479",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.044Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "je4z01ltm5eq37l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:46.886Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Yamil Ocamp",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "yamil@ogconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3031 East Bristol Street, Brookline, MO 65619",
+ "Job_Codes": "4120 - Shoot 360",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4120%20Shoot360%20%5BOak%20Grove%20Construction%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Shoot 360 - 3031 East Bristol Street, Brookline, MO 65619 - Oak Grove Construction",
+ "Job_Name": "Shoot 360",
+ "Job_Number": "4120",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4120FX - Shoot 360",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Project uncertain",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4120FX - Shoot 360 - 3031 East Bristol Street, Brookline, MO 65619 - Oak Grove Construction - Yamil Ocamp - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.088Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vd9am9hp33shjcq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:22.422Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Leopardo Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Templeton",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "kltempleton@leopardo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1730 East Republic Road, Suites X/V/W, Springfiled, MO 65804",
+ "Job_Codes": "4119 - Humana Mercy Southgate Clinic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4119%20Humana%20Mercy%20Clinic%20%5BLeopardo%20Constuction%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Humana Mercy Southgate Clinic - 1730 East Republic Road, Suites X/V/W, Springfiled, MO 65804 - Leopardo Construction",
+ "Job_Name": "Humana Mercy Southgate Clinic",
+ "Job_Number": "4119",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4119 - Humana Mercy Southgate Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2243854007",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4119 - Humana Mercy Southgate Clinic - 1730 East Republic Road, Suites X/V/W, Springfiled, MO 65804 - Leopardo Construction - Kyle Templeton - 2243854007",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.140Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gw3meth72dlljfb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:22.534Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cintech Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Thomas Elliott",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-04-22 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "telliott@cintechconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "\\\\NAS\\Operations\\1 Job Pages\\COMMERCIAL\\4118 - Estes Express Line Addition - Cintech Construction",
+ "Has_Attachments": false,
+ "Job_Address": "2121 East Kearney Street, Springfield, MO 65803",
+ "Job_Codes": "4118 - Estes Express Line Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4118 - Estes Express Line Addition - Cintech Construction",
+ "Job_Full_Name": "Estes Express Line Addition - 2121 East Kearney Street, Springfield, MO 65803 - Cintech Construction",
+ "Job_Name": "Estes Express Line Addition",
+ "Job_Number": "4118",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4118FX - Estes Express Line Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5135517191",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4118FX - Estes Express Line Addition - 2121 East Kearney Street, Springfield, MO 65803 - Cintech Construction - Thomas Elliott - 5135517191",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.188Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yvz1nm8k7xysesx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:26.880Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rothwell Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Cantu",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "chris@rothwell-construction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "XXX S. 20th Street, Ozark, MO 65721",
+ "Job_Codes": "4117 - ALDI Store #116 New",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4117%20ALDI%20Store%20%23116%20Ozark%20%5BRothwell%20Construction%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "ALDI Store #116 New - XXX S. 20th Street, Ozark, MO 65721 - Rothwell Construction",
+ "Job_Name": "ALDI Store #116 New",
+ "Job_Number": "4117",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4117 - ALDI Store #116 New",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8162288808",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4117 - ALDI Store #116 New - XXX S. 20th Street, Ozark, MO 65721 - Rothwell Construction - Chris Cantu - 8162288808",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.249Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hvuinf5hx4wg6hz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:47.191Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hall, Jenny",
+ "Contact_Notes": "",
+ "Contact_Person": "Jenny Hall ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "805 E Twin Maple Ct, Nixa",
+ "Job_Codes": "4116 - Step thru",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4116%20Step%20thru%20%28805%20E%20Twin%20Maple%20Ct%2C%20Nixa%29%20%28Hall%2C%20Jenny%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Step thru - 805 E Twin Maple Ct, Nixa - Hall, Jenny",
+ "Job_Name": "Step thru",
+ "Job_Number": "4116",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4116 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/21/25 1:01 PM Beth Cardoza Jenny Hall is scheduled for Wednesday 4/23 at 7:30---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175228199",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4116 - Step thru - 805 E Twin Maple Ct, Nixa - Hall, Jenny - Jenny Hall - 4175228199",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.300Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "smx8hoe732eih2t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:22.846Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elder Jones",
+ "Contact_Notes": "",
+ "Contact_Person": "Rory Pennaz",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "roryp@elderjones.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 S Glenstone Ave #H08L, Springfield, MO 65804",
+ "Job_Codes": "4115 - Lovesac Battlefield Mall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lovesac Battlefield Mall - 2825 S Glenstone Ave #H08L, Springfield, MO 65804 - Elder Jones",
+ "Job_Name": "Lovesac Battlefield Mall",
+ "Job_Number": "4115",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4115 - Lovesac Battlefield Mall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4115 - Lovesac Battlefield Mall - 2825 S Glenstone Ave #H08L, Springfield, MO 65804 - Elder Jones - Rory Pennaz - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.364Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iprij5xmpbb3g38",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:22.954Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "O'Reilly Build",
+ "Contact_Notes": "",
+ "Contact_Person": "Conner Obert",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "N 24th St, Ozark",
+ "Job_Codes": "4114 - Creekside Townhomes",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4114%20%5BR%5D%20Creekside%20Townhomes%20%28N%2024th%20St%2C%20Ozark%29%20%28Ross%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Creekside Townhomes - N 24th St, Ozark - O'Reilly Build",
+ "Job_Name": "Creekside Townhomes",
+ "Job_Number": "4114",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4114 - Creekside Townhomes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/07/25 11:12 AM Beth Cardoza From Ross: Your proposals are due no later than April 11, 2025 03:00 PM .---\n04/07/25 11:07 AM Beth Cardoza From OReilly Build: Good morning! We are anticipating that the Architect of Record will issue answers to our RFI's by Thursday the 3rd. We are therefore resuming the bid process but extending the bid date to 2pm on Tuesday,",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174251150",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4114 - Creekside Townhomes - N 24th St, Ozark - O'Reilly Build - Conner Obert - 4174251150",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.424Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "44unmc8vggqlk0m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.055Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1660 W. Garton Rd. Ozark MO",
+ "Job_Codes": "4113 - Ozarks Rehab Hospital",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4113%20Ozarks%20Rehab%20Hospital%20%5BKCI%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ozarks Rehab Hospital - 1660 W. Garton Rd. Ozark MO - KCI",
+ "Job_Name": "Ozarks Rehab Hospital",
+ "Job_Number": "4113",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4113 - Ozarks Rehab Hospital",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4113 - Ozarks Rehab Hospital - 1660 W. Garton Rd. Ozark MO - KCI - Brady Bowen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.483Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kmu1052vfrx6tct",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.154Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "JRC",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Southern Bank Arena",
+ "Job_Codes": "4112 - JRC Ramp for SMC",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "JRC Ramp for SMC - Southern Bank Arena - JRC",
+ "Job_Name": "JRC Ramp for SMC",
+ "Job_Number": "4112",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4112TM - JRC Ramp for SMC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4112TM - JRC Ramp for SMC - Southern Bank Arena - JRC - JRC - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.544Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "76rbwumdipllafo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.268Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Alysheba Ct, Spfd",
+ "Job_Codes": "4111 - WH 41",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "WH 41 - Alysheba Ct, Spfd - Everlasting Homes",
+ "Job_Name": "WH 41",
+ "Job_Number": "4111",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4111 - WH 41",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/21/25 10:50 AM Beth Cardoza CO?: small repairs---\n04/22/25 11:47 AM david cardoza First stock 11,906\nSecond stock 448\nLeftover 54\nFinal hang 12,300---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4111 - WH 41 - Alysheba Ct, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.593Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jcxkdp1lilugwc0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.382Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Alysheba Ct, Spfd",
+ "Job_Codes": "4110 - WH 40",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "WH 40 - Alysheba Ct, Spfd - Everlasting Homes",
+ "Job_Name": "WH 40",
+ "Job_Number": "4110",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4110 - WH 40",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/25 11:54 AM Beth Cardoza CO: patches---\n05/08/25 4:03 PM Beth Cardoza Estimate waiting on walkthrough---\n04/09/25 8:05 AM david cardoza Stock 11,488\nLeftover 56\nHang 11,432---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4110 - WH 40 - Alysheba Ct, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.640Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xzyzj7bqsqav6w1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.494Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "120 Spyglass, Branson",
+ "Job_Codes": "4109 - Finish",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 120 Spyglass, Branson - Vision Construction",
+ "Job_Name": "Finish",
+ "Job_Number": "4109",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4109 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/14/25 9:28 AM Beth Cardoza At spyglass \n\nshe put a lockbox outside that door with a key and the code is 4693\n\nDo not answer it before 7 o’clock \n\nSpy glass is in Branson Hills so the address is 120 spyglass Hill, Branson \n\nGate code #2222 \n\nEnter subdi\n04/04/25 1:00 PM Beth Cardoza Figuring we'll do cost plus 35% or whatever.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175980828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4109 - Finish - 120 Spyglass, Branson - Vision Construction - Jeremy - 4175980828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.713Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rql84f21zx245n6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.618Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Child Hope",
+ "Contact_Notes": "",
+ "Contact_Person": "Shannon Lyman",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sdlyman@childhopeonline.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3728 W Chestnut Exprswy, Spfd",
+ "Job_Codes": "4108 - Latin America Children's Ministry",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4108%20Latin%20America%20Children%27s%20Ministry%20%28Child%20Hope%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Latin America Children's Ministry - 3728 W Chestnut Exprswy, Spfd - Child Hope",
+ "Job_Name": "Latin America Children's Ministry",
+ "Job_Number": "4108",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4108 - Latin America Children's Ministry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/09/25 11:23 AM Beth Cardoza CO: Labor and material to scabbing studs and replacing a some plywood where it was moldy. Drying out with fans. Spray mold inhibitor. Insulation? Jacob keeping track of extra we are doing for that corner that was wet/moldy.-",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178628500",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4108 - Latin America Children's Ministry - 3728 W Chestnut Exprswy, Spfd - Child Hope - Shannon Lyman - 4178628500",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.779Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e22ttt8gexbbh85",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.738Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "264 Palisade Dr, Forsyth",
+ "Job_Codes": "4107 - N/A",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4107%20%28264%20Palisade%20Dr%2C%20Forsyth%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 264 Palisade Dr, Forsyth - Krueger, Paul",
+ "Job_Name": "N/A",
+ "Job_Number": "4107",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4107 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/20/25 11:44 AM Beth Cardoza Found a lower bid---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4107 - N/A - 264 Palisade Dr, Forsyth - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.840Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5zmlpah3e1y6eey",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.866Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Raley, Greg",
+ "Contact_Notes": "",
+ "Contact_Person": "Brenda",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "535 Watersound Way Hollister",
+ "Job_Codes": "4106 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 535 Watersound Way Hollister - Raley, Greg",
+ "Job_Name": "Repairs",
+ "Job_Number": "4106",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4106 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3166440256",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4106 - Repairs - 535 Watersound Way Hollister - Raley, Greg - Brenda - 3166440256",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.897Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aea6hzf64uf6x8t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:23.982Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Miguel May",
+ "Contact_Notes": "",
+ "Contact_Person": "Miguel May",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "600 West Republic Rd. Springfield MO",
+ "Job_Codes": "4105 - Cindys Beauty Supply",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cindys Beauty Supply - 600 West Republic Rd. Springfield MO - Miguel May",
+ "Job_Name": "Cindys Beauty Supply",
+ "Job_Number": "4105",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4105FX - Cindys Beauty Supply",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4105FX - Cindys Beauty Supply - 600 West Republic Rd. Springfield MO - Miguel May - Miguel May - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:43.957Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yz32advmnwsf2z0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.102Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3210 S. Scenic Ave, Springfield, MO 65807",
+ "Job_Codes": "4104 - nPrint Graphix - New Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4104%20nPrint%20Graphix%20%5BRoss%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "nPrint Graphix - New Building - 3210 S. Scenic Ave, Springfield, MO 65807 - Ross Construction",
+ "Job_Name": "nPrint Graphix - New Building",
+ "Job_Number": "4104",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4104 - nPrint Graphix - New Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4104 - nPrint Graphix - New Building - 3210 S. Scenic Ave, Springfield, MO 65807 - Ross Construction - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.008Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k6wfnaf2s0ch2f7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.234Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spokane",
+ "Job_Codes": "4103 - Baseball",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4103%20Baseball%20%28Spokane%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Baseball - Spokane - Essick, Dusty",
+ "Job_Name": "Baseball",
+ "Job_Number": "4103",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4103 - Baseball",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/25 5:07 PM Beth Cardoza Change of plans: Can you please give me a couple options.\n1) Figure the entire thing with drywall on the walls and upper floor ceiling and then drop ceiling with vinyl tile for the entire lower level ceiling in kitchen and ba",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4103 - Baseball - Spokane - Essick, Dusty - Dusty Essick - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.076Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "86nnv65hw1qsf59",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "MSU Plaster Student Union",
+ "Job_Codes": "4102 - MSU Chick Fil-A Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4102%20MSU%20Chick%20Fil%2DA%20Reno%20%5BFriga%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "MSU Chick Fil-A Renovation - MSU Plaster Student Union - Friga Construction",
+ "Job_Name": "MSU Chick Fil-A Renovation",
+ "Job_Number": "4102",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4102FX - MSU Chick Fil-A Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "No follow up",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4102FX - MSU Chick Fil-A Renovation - MSU Plaster Student Union - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.128Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gvrsz42rwowxrwv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.522Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3535 S National Ave, Springfield, MO 65807",
+ "Job_Codes": "4101 - Cox MORH West Entry Refresh",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4101%20Cox%20MORH%20Entry%20Refresh%20%2D%20%28KCI%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cox MORH West Entry Refresh - 3535 S National Ave, Springfield, MO 65807 - KCI",
+ "Job_Name": "Cox MORH West Entry Refresh",
+ "Job_Number": "4101",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4101 - Cox MORH West Entry Refresh",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175128834",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4101 - Cox MORH West Entry Refresh - 3535 S National Ave, Springfield, MO 65807 - KCI - Stephen Buechler - 4175128834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.192Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0xugh93j3r7k0ik",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.658Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sims, Tim - Hawthorn Bank",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Sims",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tsims@hawthornbank.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "321 W. Battlefield, Springfield, MO 65803",
+ "Job_Codes": "4100 - Hawthorn Bank Ceiling Tile",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4100%20Hawthorn%20Bank&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hawthorn Bank Ceiling Tile - 321 W. Battlefield, Springfield, MO 65803 - Sims, Tim - Hawthorn Bank",
+ "Job_Name": "Hawthorn Bank Ceiling Tile",
+ "Job_Number": "4100",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4100 - Hawthorn Bank Ceiling Tile",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC went another route internally",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8167397139",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4100 - Hawthorn Bank Ceiling Tile - 321 W. Battlefield, Springfield, MO 65803 - Sims, Tim - Hawthorn Bank - Tim Sims - 8167397139",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.241Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ecdxty0g1iunjpl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.778Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "645 State Highway T, Waynesville, MO 65583",
+ "Job_Codes": "4099 - Liberty Elementary School, Waynesville R-VI",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Liberty Elementary School, Waynesville R-VI - 645 State Highway T, Waynesville, MO 65583 - KCI",
+ "Job_Name": "Liberty Elementary School, Waynesville R-VI",
+ "Job_Number": "4099",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4099 - Liberty Elementary School, Waynesville R-VI",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4099 - Liberty Elementary School, Waynesville R-VI - 645 State Highway T, Waynesville, MO 65583 - KCI - Brady Bowen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "28q1slyd5ra7s78",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:24.902Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Myers, David & Gail",
+ "Contact_Notes": "",
+ "Contact_Person": "Gail Myers (417) 840-5159 or David (417) 833-7308",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6767 N Haywire Ln, Strafford",
+ "Job_Codes": "4098 - Shoush",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shoush - 6767 N Haywire Ln, Strafford - Myers, David & Gail",
+ "Job_Name": "Shoush",
+ "Job_Number": "4098",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4098 - Shoush",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178405159",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4098 - Shoush - 6767 N Haywire Ln, Strafford - Myers, David & Gail - Gail Myers (417) 840-5159 or David (417) 833-7308 - 4178405159",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.352Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k9aj8y7cf7tifnq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.022Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elder Jones",
+ "Contact_Notes": "",
+ "Contact_Person": "Rory Pennaz",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "roryp@elderjones.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd #307 Branson, MO 65616",
+ "Job_Codes": "4097 - Buckle - Branson Tanger Outlets",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Buckle - Branson Tanger Outlets - 300 Tanger Blvd #307 Branson, MO 65616 - Elder Jones",
+ "Job_Name": "Buckle - Branson Tanger Outlets",
+ "Job_Number": "4097",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4097 - Buckle - Branson Tanger Outlets",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4097 - Buckle - Branson Tanger Outlets - 300 Tanger Blvd #307 Branson, MO 65616 - Elder Jones - Rory Pennaz - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.404Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o3sosextyfybkzo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.154Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RCS Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jennifer Cornwell",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jcornwell@retailconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd #307 Branson, MO 65616",
+ "Job_Codes": "4096 - Buckle - Branson Tanger Outlets",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Buckle - Branson Tanger Outlets - 300 Tanger Blvd #307 Branson, MO 65616 - RCS Construction",
+ "Job_Name": "Buckle - Branson Tanger Outlets",
+ "Job_Number": "4096",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4096 - Buckle - Branson Tanger Outlets",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6517041773",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4096 - Buckle - Branson Tanger Outlets - 300 Tanger Blvd #307 Branson, MO 65616 - RCS Construction - Jennifer Cornwell - 6517041773",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.465Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ntoin1mpzocoyj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.281Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic, MO",
+ "Job_Codes": "4095 - Walmart Central Infill Republic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4095%20Walmart%20Central%20Infill%20%2D%20Republic%20%28Ross%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Walmart Central Infill Republic - Republic, MO - Ross Construction",
+ "Job_Name": "Walmart Central Infill Republic",
+ "Job_Number": "4095",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4095 - Walmart Central Infill Republic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4095 - Walmart Central Infill Republic - Republic, MO - Ross Construction - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.512Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bl0g2f8n529uepv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.426Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crace, Dan",
+ "Contact_Notes": "",
+ "Contact_Person": "Dan Crace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "731 Meramec Ln, Nixa",
+ "Job_Codes": "4094 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 731 Meramec Ln, Nixa - Crace, Dan",
+ "Job_Name": "Remodel",
+ "Job_Number": "4094",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4094 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/09/25 3:11 PM Beth Cardoza This job is on hold. Other scopes cost more than expected so will see if they can afford it when they get to that part.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178802442",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4094 - Remodel - 731 Meramec Ln, Nixa - Crace, Dan - Dan Crace - 4178802442",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.565Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ps0lux67qhojnl8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.554Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Withers, Rob",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob Withers",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6726 W FR 174, Republic",
+ "Job_Codes": "4093 - Garage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4093%20%5BS%5D%20Garage%20%286726%20W%20FR%20174%2C%20Republic%29%20%28Withers%2C%20Rob%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Garage - 6726 W FR 174, Republic - Withers, Rob",
+ "Job_Name": "Garage",
+ "Job_Number": "4093",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4093 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/23/25 12:30 PM Beth Cardoza Actual footage is pretty minimal even though it has 10' ceilings---\n04/03/25 1:22 PM Beth Cardoza Light splatter on the walls and tree bark on the ceiling like we did on the last one.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178607397",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4093 - Garage - 6726 W FR 174, Republic - Withers, Rob - Rob Withers - 4178607397",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.608Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sowdzkibp4lhrz2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.686Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hayes, Taylor",
+ "Contact_Notes": "",
+ "Contact_Person": "Taylor Hayes ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "207 Scenic Dr, Hollister",
+ "Job_Codes": "4092 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 207 Scenic Dr, Hollister - Hayes, Taylor",
+ "Job_Name": "Remodel",
+ "Job_Number": "4092",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4092 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/24/25 3:18 PM Beth Cardoza had lower bids---\n03/18/25 9:26 AM Beth Cardoza Eddie to see this 8:30 Wednesday morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172687475",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4092 - Remodel - 207 Scenic Dr, Hollister - Hayes, Taylor - Taylor Hayes - 4172687475",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.667Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o564zy062iuiqzd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.806Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Younger Flooring & Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Shane Younger ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Summersville",
+ "Job_Codes": "4091 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4091%20%28Summersville%29%20%28Younger%20Flooring%20%26%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Summersville - Younger Flooring & Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "4091",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4091 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/04/25 12:27 PM Beth Cardoza CO: per Rick we need to credit this job for the scrapping. They had their own guys scrap it out.---\n04/02/25 1:07 PM Beth Cardoza CO: Credit mud. I think they will send a receipt?---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172477262",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4091 - N/A - Summersville - Younger Flooring & Construction - Shane Younger - 4172477262",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.723Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0e9shlyrwykews8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:25.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burman Companies",
+ "Contact_Notes": "",
+ "Contact_Person": "Howard ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1432 W Mt Vernon, Nixa",
+ "Job_Codes": "4090 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4090%20%281432%20W%20Mt%20Vernon%2C%20Nixa%29%20%28Burman%20Companies%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1432 W Mt Vernon, Nixa - Burman Companies",
+ "Job_Name": "N/A",
+ "Job_Number": "4090",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4090 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/20/25 10:17 AM david cardoza Stock 8,160\nSecond stock 2,896\nTotal stock 11,056\nLeftover 64\nHang 10,992\n\nAlso material stocked BY BURMAN:\n2 boxes screws\n8 rolls 500' drywall tape\n40 boxes freeman lite---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667499",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4090 - N/A - 1432 W Mt Vernon, Nixa - Burman Companies - Howard - 4177667499",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.837Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ttzqklpz6umiw6a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.018Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burman Companies",
+ "Contact_Notes": "",
+ "Contact_Person": "Howard ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "230 Rainbow Valley Dr, Highlandville",
+ "Job_Codes": "4089 - ICF",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4089UP%20ICF%20%28230%20Rainbow%20Valley%20Dr%2C%20Highlandville%29%20%28Burman%20Companies%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "ICF - 230 Rainbow Valley Dr, Highlandville - Burman Companies",
+ "Job_Name": "ICF",
+ "Job_Number": "4089",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4089 - ICF",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/25 3:35 PM Beth Cardoza Figure out materials - supplied by client partial or all... we took 21 boxes of mud back to the shop. Need to find out if those were charged to us or client---\n04/22/25 4:31 PM Beth Cardoza Gate code\n\n9832---\n03/20/25 10:16 AM david cardoza Stock\nMain level/ Garage 14,758\nBasement 6,444\n\nHouse in highlandville leftovers \n23-12\"\n6-8\"\n1-54×12\"\nTotal leftover 1,350\nHang 19,852---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667499",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4089 - ICF - 230 Rainbow Valley Dr, Highlandville - Burman Companies - Howard - 4177667499",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.885Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nmkwh6s0mvryqmw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.125Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ogden, Dean",
+ "Contact_Notes": "",
+ "Contact_Person": "Dean Ogden ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1546 S Jameston Rd, Spfd",
+ "Job_Codes": "4088 - Popcorn",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4088%20Popcorn%20%281546%20S%20Jameston%20Rd%2C%20Spfd%29%20%28Ogden%2C%20Dean%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Popcorn - 1546 S Jameston Rd, Spfd - Ogden, Dean",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4088",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4088 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173437990",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4088 - Popcorn - 1546 S Jameston Rd, Spfd - Ogden, Dean - Dean Ogden - 4173437990",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.944Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lh2608tts17p6fa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.247Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4087 - Royal Vista Bld 6 Unit 609",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 6 Unit 609 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 6 Unit 609",
+ "Job_Number": "4087",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4087 - Royal Vista Bld 6 Unit 609",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4087 - Royal Vista Bld 6 Unit 609 - - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:44.992Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ojf8kl6nxpb224t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.367Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4086 - Royal Vista Bld 6 Unit 612",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 6 Unit 612 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 6 Unit 612",
+ "Job_Number": "4086",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4086 - Royal Vista Bld 6 Unit 612",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4086 - Royal Vista Bld 6 Unit 612 - - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.053Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jhzrza2sn3np63i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.474Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3525 S Campbell Ave, Springfield MO, 65807",
+ "Job_Codes": "4085 - Kia Auto",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4085%20Kia%20Auto%20%28A2D%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kia Auto - 3525 S Campbell Ave, Springfield MO, 65807 - A2D Construction",
+ "Job_Name": "Kia Auto",
+ "Job_Number": "4085",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4085 - Kia Auto",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4085 - Kia Auto - 3525 S Campbell Ave, Springfield MO, 65807 - A2D Construction - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.113Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hs0aqojiz6om36w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.582Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harber, Jon & Edna",
+ "Contact_Notes": "",
+ "Contact_Person": "Edna Harber ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4731 S St. George Ct, Spfd",
+ "Job_Codes": "4084 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 4731 S St. George Ct, Spfd - Harber, Jon & Edna",
+ "Job_Name": "Water damage",
+ "Job_Number": "4084",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4084 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177555912",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4084 - Water damage - 4731 S St. George Ct, Spfd - Harber, Jon & Edna - Edna Harber - 4177555912",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.165Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7cwhsn9xfc19tei",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.694Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Brown",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "gbrown@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "94 Main Street, Cassville, MO 65625",
+ "Job_Codes": "4083 - Mercy Cassville ED Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4083%20Mercy%20Cassville%20ED%20Remodel%20%28DeWitt%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Mercy Cassville ED Remodel - 94 Main Street, Cassville, MO 65625 - DeWitt and Associates",
+ "Job_Name": "Mercy Cassville ED Remodel",
+ "Job_Number": "4083",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4083 - Mercy Cassville ED Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173703895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4083 - Mercy Cassville ED Remodel - 94 Main Street, Cassville, MO 65625 - DeWitt and Associates - Greg Brown - 4173703895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.217Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ilqcyt5lzf0jtku",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:49.614Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "SMWilson",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Kutz",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "greg.kutz@smwilson.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "645 State Highway T, Waynesville, MO 65583",
+ "Job_Codes": "4082 - Liberty Elementary School, Waynesville R-VI",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4082%20Liberty%20Elementary%20School%20Waynesville%20%28SM%20Wilson%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Liberty Elementary School, Waynesville R-VI - 645 State Highway T, Waynesville, MO 65583 - SMWilson",
+ "Job_Name": "Liberty Elementary School, Waynesville R-VI",
+ "Job_Number": "4082",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4082 - Liberty Elementary School, Waynesville R-VI",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3146459595",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4082 - Liberty Elementary School, Waynesville R-VI - 645 State Highway T, Waynesville, MO 65583 - SMWilson - Greg Kutz - 3146459595",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.274Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xqcz359w74i1bq7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:26.922Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "907 West Mount Vernon Blvd, Mount Vernon, MO 65712",
+ "Job_Codes": "4081 - ITB New Mechanic Shop Blevins",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4081%20ITB%20New%20Mechanic%20Shop%20Blevins%20%28A2D%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "ITB New Mechanic Shop Blevins - 907 West Mount Vernon Blvd, Mount Vernon, MO 65712 - A2D Construction",
+ "Job_Name": "ITB New Mechanic Shop Blevins",
+ "Job_Number": "4081",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4081 - ITB New Mechanic Shop Blevins",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4081 - ITB New Mechanic Shop Blevins - 907 West Mount Vernon Blvd, Mount Vernon, MO 65712 - A2D Construction - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.324Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2n80d79fn4jldcp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:27.094Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Clint Walton",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "201 S. Verbryck Ave., Carl Junction, MO",
+ "Job_Codes": "4080 - Carl Junction OT-PT Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4080%20Carl%20Junction%20School&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Carl Junction OT-PT Infill - 201 S. Verbryck Ave., Carl Junction, MO - RE Smith Construction",
+ "Job_Name": "Carl Junction OT-PT Infill",
+ "Job_Number": "4080",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4080 - Carl Junction OT-PT Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176234545",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4080 - Carl Junction OT-PT Infill - 201 S. Verbryck Ave., Carl Junction, MO - RE Smith Construction - Clint Walton - 4176234545",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.385Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ll7w9cmik2y9quj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:27.211Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "504 E Norton Rd, Springfield, MO 65803",
+ "Job_Codes": "4079 - Good Samaritan Office and Warehouse",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4079%20Good%20Samaritan%20%28A2D%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Good Samaritan Office and Warehouse - 504 E Norton Rd, Springfield, MO 65803 - A2D Construction",
+ "Job_Name": "Good Samaritan Office and Warehouse",
+ "Job_Number": "4079",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4079 - Good Samaritan Office and Warehouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4079 - Good Samaritan Office and Warehouse - 504 E Norton Rd, Springfield, MO 65803 - A2D Construction - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.453Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gqjroyjx1l1kqqy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:27.319Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ledbetter",
+ "Contact_Notes": "",
+ "Contact_Person": "Wes ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "wesledbetter95@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mountain View",
+ "Job_Codes": "4078 - Valencia",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4078%20Valencia%20%28Mountain%20View%29%20%28Ledbetter%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Valencia - Mountain View - Ledbetter",
+ "Job_Name": "Valencia",
+ "Job_Number": "4078",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4078 - Valencia",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4078 - Valencia - Mountain View - Ledbetter - Wes - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.521Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "eyrznirerwvqwbt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:27.419Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pridgen, Jake",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5763 Morning Glory Ln, Battlefield",
+ "Job_Codes": "4077 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4077%20%5BS%5D%20Remodel%20%285763%20Morning%20Glory%20Ln%2C%20Battlefield%29%20%28Pridgen%2C%20Jake%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 5763 Morning Glory Ln, Battlefield - Pridgen, Jake",
+ "Job_Name": "Remodel",
+ "Job_Number": "4077",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4077 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/26/25 12:02 PM Beth Cardoza Possible CO: patch behind a vanity. may 3'x6'. No texture needed---\n03/12/25 3:44 PM Beth Cardoza Eddie to view Monday morning, 17th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5733386025",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4077 - Remodel - 5763 Morning Glory Ln, Battlefield - Pridgen, Jake - Jake - 5733386025",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6x7ie7g7j5mxngw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:27.527Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wright Construction Services",
+ "Contact_Notes": "",
+ "Contact_Person": "Holly Plummer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "HPlummer@wrightconstruct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "417 West Lynn St, Springfield, MO 65802",
+ "Job_Codes": "4076 - Pipkin Middle School Project",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - Wright Construction Services",
+ "Job_Name": "Pipkin Middle School Project",
+ "Job_Number": "4076",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4076 - Pipkin Middle School Project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362206850",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4076 - Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - Wright Construction Services - Holly Plummer - 6362206850",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.637Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ch2rgkynzs92v0f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:27.631Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Veregy",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Cavin",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "131 Lentz St, Stella, MO 64867",
+ "Job_Codes": "4075 - Triway Campus Storm Shelter",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4075%20Triway%20Campus%20Storm%20Shelter%20%28Veregy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Triway Campus Storm Shelter - 131 Lentz St, Stella, MO 64867 - Veregy",
+ "Job_Name": "Triway Campus Storm Shelter",
+ "Job_Number": "4075",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4075 - Triway Campus Storm Shelter",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173153479",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4075 - Triway Campus Storm Shelter - 131 Lentz St, Stella, MO 64867 - Veregy - Michael Cavin - 4173153479",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.688Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m5hnn5tiwkf9zew",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:50.151Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Veregy",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Cavin",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "440 E High St, Granby, MO 64844",
+ "Job_Codes": "4074 - Granby Intermediate School Storm Shelter",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4074%20Granby%20Intermediate%20Storm%20Shelter%20%28Veregy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Granby Intermediate School Storm Shelter - 440 E High St, Granby, MO 64844 - Veregy",
+ "Job_Name": "Granby Intermediate School Storm Shelter",
+ "Job_Number": "4074",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4074 - Granby Intermediate School Storm Shelter",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173153479",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4074 - Granby Intermediate School Storm Shelter - 440 E High St, Granby, MO 64844 - Veregy - Michael Cavin - 4173153479",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.749Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4hyk41v9xb5ade3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:50.275Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Veregy",
+ "Contact_Notes": "",
+ "Contact_Person": "Philip Rogers",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "901 S Grand Ave, El Dorado Springs, MO 64744",
+ "Job_Codes": "4073 - Eldorado Springs R-II Add On",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4073%20El%20Dorado%20Springs%20R%2DII%20Addition%20%28Veregy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Eldorado Springs R-II Add On - 901 S Grand Ave, El Dorado Springs, MO 64744 - Veregy",
+ "Job_Name": "Eldorado Springs R-II Add On",
+ "Job_Number": "4073",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4073 - Eldorado Springs R-II Add On",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173490218",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4073 - Eldorado Springs R-II Add On - 901 S Grand Ave, El Dorado Springs, MO 64744 - Veregy - Philip Rogers - 4173490218",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.849Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "af0y8epf6140ado",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:50.407Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whitham, Dave",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave Whitham",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1223 N 10th Ave, Ozark",
+ "Job_Codes": "4072 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4072%20Patches%20%281223%20N%2010th%20Ave%2C%20Ozark%29%20%28Whitham%2C%20Dave%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Patches - 1223 N 10th Ave, Ozark - Whitham, Dave",
+ "Job_Name": "Patches",
+ "Job_Number": "4072",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4072 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177666606",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4072 - Patches - 1223 N 10th Ave, Ozark - Whitham, Dave - Dave Whitham - 4177666606",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.909Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9dtw15u1i9iag7d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.055Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4071 - Lot 6",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4071%20Lot%206%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lot 6 - - Everlasting Homes",
+ "Job_Name": "Lot 6",
+ "Job_Number": "4071",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4071 - Lot 6",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/20/25 7:19 AM david cardoza Stock 14,080\nLeftover 32\nHang 14,048---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4071 - Lot 6 - - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:45.970Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tm30rh78w27rb28",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.162Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "391 Stillwood, Branson",
+ "Job_Codes": "4070 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4070%20%20%28391%20Stillwood%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 391 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "4070",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4070 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/25/25 7:31 AM david cardoza Stock 13,018\nLeftover 80\nHang 12,938---\n03/11/25 5:00 PM Beth Cardoza Estimate waiting on walkthrough---\n03/20/25 5:51 PM Beth Cardoza Same as job 4025---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4070 - N/A - 391 Stillwood, Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.032Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ee8txp0yqyjgavu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.271Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "324 N Massey Blvd, Nixa MO 65714",
+ "Job_Codes": "4069 - Code Ninjas Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4069%20Code%20Ninjas%20Infill%20%28Friga%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Code Ninjas Infill - 324 N Massey Blvd, Nixa MO 65714 - Friga Construction",
+ "Job_Name": "Code Ninjas Infill",
+ "Job_Number": "4069",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4069 - Code Ninjas Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4069 - Code Ninjas Infill - 324 N Massey Blvd, Nixa MO 65714 - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b4elddgsssmgxh9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:50.747Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hardesty Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Gwynne Anderson - ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "gwynne@hardestyassociates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd #307 Branson, MO 65616",
+ "Job_Codes": "4068 - Buckle - Branson Tanger Outlets",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4068%20Buckle%20Tanger%20Outlet%20%28Hardesty%20Associates%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Buckle - Branson Tanger Outlets - 300 Tanger Blvd #307 Branson, MO 65616 - Hardesty Associates",
+ "Job_Name": "Buckle - Branson Tanger Outlets",
+ "Job_Number": "4068",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4068 - Buckle - Branson Tanger Outlets",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9497232231",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4068 - Buckle - Branson Tanger Outlets - 300 Tanger Blvd #307 Branson, MO 65616 - Hardesty Associates - Gwynne Anderson - - 9497232231",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.144Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "20fj0zfiok01rpv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.543Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "joe@nesbittconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Unknown, Hwy PP, Cabool MO",
+ "Job_Codes": "4067 - Merica Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4067%20Merica%20Dental%20%28Nesbit%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Merica Dental - Unknown, Hwy PP, Cabool MO - Nesbitt Construction",
+ "Job_Name": "Merica Dental",
+ "Job_Number": "4067",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4067 - Merica Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178666199",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4067 - Merica Dental - Unknown, Hwy PP, Cabool MO - Nesbitt Construction - Joe Jackson - 4178666199",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.205Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "udpcekoyw7v0563",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:50.938Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King Built",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan Gettinger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4066 - Finely River Flats",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4066%20%5BR%5D%20Finely%20River%20Flats%20%28%29%20%28King%20Built%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Finely River Flats - - King Built",
+ "Job_Name": "Finely River Flats",
+ "Job_Number": "4066",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4066 - Finely River Flats",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/27/25 11:21 AM Beth Cardoza Notes from looking at plans: 5/8\". \n7/8 RC channel on ceilings 18 oc \nWindow wraps\ndouble layer 5/8\" on stairways---\n08/27/25 11:34 AM Beth Cardoza Smooth? Ceilings are anyway. I'm going to guess walls are too---\n08/27/25 11:19 AM Beth Cardoza Asking for a bid again---\n03/24/25 1:43 PM Beth Cardoza Didn't have time to bid---\n03/04/25 2:07 PM Beth Cardoza We are planning a fall timeline for breaking ground. Attached are the plans and specs. Ideally I need this back by week of the 24th.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177550469",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4066 - Finely River Flats - - King Built - Dylan Gettinger - 4177550469",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.261Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "97xpyp8vvwnegr8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.770Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King Built",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan Gettinger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "4065 - Valley Trail Lot 10",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4065%20%5BR%5D%20Valley%20Trail%20Lot%2010%20%28Republic%29%20%28King%20Built%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Valley Trail Lot 10 - Republic - King Built",
+ "Job_Name": "Valley Trail Lot 10",
+ "Job_Number": "4065",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4065 - Valley Trail Lot 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/04/25 2:08 PM Beth Cardoza No wood sills. Square corners. I need them back by the 19th if possible. Homes are dug now and will be starting foundations soon.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177550469",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4065 - Valley Trail Lot 10 - Republic - King Built - Dylan Gettinger - 4177550469",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.304Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "419cz2tbefs9ah6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.871Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King Built",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan Gettinger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "4064 - Valley Trail Lot 3",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4064%20%5BR%5D%20Valley%20Trail%20Lot%203%20%28Republic%29%20%28King%20Built%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Valley Trail Lot 3 - Republic - King Built",
+ "Job_Name": "Valley Trail Lot 3",
+ "Job_Number": "4064",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4064 - Valley Trail Lot 3",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/04/25 2:08 PM Beth Cardoza No wood sills. Square corners. I need them back by the 19th if possible. Homes are dug now and will be starting foundations soon.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177550469",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4064 - Valley Trail Lot 3 - Republic - King Built - Dylan Gettinger - 4177550469",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.360Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n4y72kfk1itexb8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:28.981Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "417 West Lynn St, Springfield, MO 65802",
+ "Job_Codes": "4063 - Pipkin Middle School Project",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - KCI",
+ "Job_Name": "Pipkin Middle School Project",
+ "Job_Number": "4063",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4063 - Pipkin Middle School Project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4063 - Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - KCI - Brady Bowen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.408Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v7ip4ozb0q3pgow",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.091Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nonnweiler, Randy",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3660 Cromwell Ln, Spfd",
+ "Job_Codes": "4062 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3660 Cromwell Ln, Spfd - Nonnweiler, Randy",
+ "Job_Name": "Patches",
+ "Job_Number": "4062",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4062 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/24/25 3:24 PM Beth Cardoza No response. Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4062 - Patches - 3660 Cromwell Ln, Spfd - Nonnweiler, Randy - Randy - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.457Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xqbiq7085vgpzhe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.215Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cburke@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "417 West Lynn St, Springfield, MO 65802",
+ "Job_Codes": "4061 - Pipkin Middle School Project",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4061%20Pipkin%20Middle%20School%20Project%20%28KCI%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - DeWitt and Associates",
+ "Job_Name": "Pipkin Middle School Project",
+ "Job_Number": "4061",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4061 - Pipkin Middle School Project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179885787",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4061 - Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - DeWitt and Associates - Chris Burke - 4179885787",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7c3dw1nxz0kir66",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.327Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gurian, Rita",
+ "Contact_Notes": "",
+ "Contact_Person": "Mr Gurian",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5043 S Glenhaven",
+ "Job_Codes": "4060 - Cracks",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 5043 S Glenhaven - Gurian, Rita",
+ "Job_Name": "Cracks",
+ "Job_Number": "4060",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4060 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/02/25 11:21 AM Beth Cardoza Starts 4/7---\n03/04/25 12:02 PM Beth Cardoza Eddie walking it 9:30 3/6---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178801909",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4060 - Cracks - 5043 S Glenhaven - Gurian, Rita - Mr Gurian - 4178801909",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.552Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3i9ad57k4a5h9pz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.443Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Netwatch - Cardoza, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Cardoza, ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jcardoza@netwatchip.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Off NN in Ozark",
+ "Job_Codes": "4059 - Netwatch New Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4059%20Netwatch%20New%20Build%20%28Self%20GC%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Netwatch New Building - Off NN in Ozark - Netwatch - Cardoza, Jason",
+ "Job_Name": "Netwatch New Building",
+ "Job_Number": "4059",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4059 - Netwatch New Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178447094",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4059 - Netwatch New Building - Off NN in Ozark - Netwatch - Cardoza, Jason - Jason Cardoza, - 4178447094",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.617Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zehv8joui4valqv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:51.542Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "651 Little Aunts Creek, Kim City",
+ "Job_Codes": "4058 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 651 Little Aunts Creek, Kim City - Peach Tree",
+ "Job_Name": "Remodel",
+ "Job_Number": "4058",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4058 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175271095",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4058 - Remodel - 651 Little Aunts Creek, Kim City - Peach Tree - Chad Meadows - 4175271095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.672Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nlvp3pbm0zov2fx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.675Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cauley, Jonathan",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1095 Montague Rd, Highlandville",
+ "Job_Codes": "4057 - Garage repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage repair - 1095 Montague Rd, Highlandville - Cauley, Jonathan",
+ "Job_Name": "Garage repair",
+ "Job_Number": "4057",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4057 - Garage repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/04/25 3:14 PM Beth Cardoza No this is not one crack, plus there’s Sheetrock missing. Supposed to look at it tomorrow -Eddie---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173536893",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4057 - Garage repair - 1095 Montague Rd, Highlandville - Cauley, Jonathan - - 4173536893",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.721Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ks500bqzh2o8vqh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.806Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3435 N. 21st St. Ozark, MO",
+ "Job_Codes": "4056 - Arcstar Warehouse New Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4056%20Arcstar%20Warehouse%20New%20Building%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Arcstar Warehouse New Building - 3435 N. 21st St. Ozark, MO - Construct",
+ "Job_Name": "Arcstar Warehouse New Building",
+ "Job_Number": "4056",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4056 - Arcstar Warehouse New Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4056 - Arcstar Warehouse New Building - 3435 N. 21st St. Ozark, MO - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.775Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cd8ednhu6i2dw82",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:29.934Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2215 W Chesterfield St. Suite 21 Springfield, MO 65807",
+ "Job_Codes": "4055 - Auxon Capital Office Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4055%20Auxon%20Capital%20Office%20Infill%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Auxon Capital Office Infill - 2215 W Chesterfield St. Suite 21 Springfield, MO 65807 - Construct",
+ "Job_Name": "Auxon Capital Office Infill",
+ "Job_Number": "4055",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4055 - Auxon Capital Office Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4055 - Auxon Capital Office Infill - 2215 W Chesterfield St. Suite 21 Springfield, MO 65807 - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.824Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8b18pi6bqpksbkb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.038Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Unknown",
+ "Job_Codes": "4054 - Dorman Products Interior Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4054%20Dorman%20Interior%20Renovation%20%28Friga%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Dorman Products Interior Renovation - Unknown - Friga Construction",
+ "Job_Name": "Dorman Products Interior Renovation",
+ "Job_Number": "4054",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4054 - Dorman Products Interior Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4054 - Dorman Products Interior Renovation - Unknown - Friga Construction - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.868Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rr6zxg9r54h06n9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.147Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Probst, Derrick",
+ "Contact_Notes": "",
+ "Contact_Person": "Derrick Probst",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4086 S FR 99, Republic",
+ "Job_Codes": "4053 - Texture",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture - 4086 S FR 99, Republic - Probst, Derrick",
+ "Job_Name": "Texture",
+ "Job_Number": "4053",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4053 - Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176931476",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "S#4053 - Texture - 4086 S FR 99, Republic - Probst, Derrick - Derrick Probst - 4176931476",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.920Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sp6h366smba7dcn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.254Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holtz Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Wilant",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "mwilant@holtzbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "15XX South Jefferson, Lebanon, MO 65536",
+ "Job_Codes": "4052 - Lebanon Strip Mall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4052%20Lebanon%20Strip%20Mall%20%20%28Holtz%20Builders%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lebanon Strip Mall - 15XX South Jefferson, Lebanon, MO 65536 - Holtz Builders",
+ "Job_Name": "Lebanon Strip Mall",
+ "Job_Number": "4052",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4052 - Lebanon Strip Mall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2623659590",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4052 - Lebanon Strip Mall - 15XX South Jefferson, Lebanon, MO 65536 - Holtz Builders - Matt Wilant - 2623659590",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:46.960Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kmbc5psar09yros",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.363Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Duesenberry, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Duesenberry ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1436 W Whiteside, Spfd",
+ "Job_Codes": "4051 - Remodel",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1436 W Whiteside, Spfd - Duesenberry, Steve",
+ "Job_Name": "Remodel",
+ "Job_Number": "4051",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4051 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/25 2:42 PM Beth Cardoza Assumed not awarded---\n02/26/25 11:36 AM Beth Cardoza Eddie Meeting him Friday morning 830---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178300720",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4051 - Remodel - 1436 W Whiteside, Spfd - Duesenberry, Steve - Steve Duesenberry - 4178300720",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.008Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lojvmw4q03a0d77",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.479Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Arrowsmith, Greg",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Arrowsmith ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2121 N 21st St, Ozark",
+ "Job_Codes": "4050 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4050%20Repairs%20%282121%20N%2021st%20St%2C%20Ozark%29%20%28Arrowsmith%2C%20Greg%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 2121 N 21st St, Ozark - Arrowsmith, Greg",
+ "Job_Name": "Repairs",
+ "Job_Number": "4050",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4050 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/03/25 3:09 PM Beth Cardoza CO: adding two small header cracks---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2484442683",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4050 - Repairs - 2121 N 21st St, Ozark - Arrowsmith, Greg - Greg Arrowsmith - 2484442683",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.060Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fof5wha9ca9h2oh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.594Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Buechler, Stephen",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1236 S FR 25, Bois D'Arc",
+ "Job_Codes": "4049 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4049%20%5BR%5D%20%20%281236%20S%20FR%2025%2C%20Bois%20D%27Arc%29%20%28Buechler%2C%20Stephen%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1236 S FR 25, Bois D'Arc - Buechler, Stephen",
+ "Job_Name": "N/A",
+ "Job_Number": "4049",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4049 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/25/25 4:15 PM Beth Cardoza Standard flat trusses at 16ft Above finished floor in garage---\n02/25/25 3:11 PM Beth Cardoza Can you send pricing by 2/28? I am anticipating drywall mid June. Assume level 4 at all locations. Give me an add to put drywall ceiling at garage.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178943506",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4049 - N/A - 1236 S FR 25, Bois D'Arc - Buechler, Stephen - Stephen Buechler - 4178943506",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.117Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sfmv1cfz6241vng",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.699Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "967 E Evergreen St, Strafford, MO 65757",
+ "Job_Codes": "4048 - FGE Trucking New Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4048%20FGE%20Trucking%20New%20Building%20%28A2D%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "FGE Trucking New Building - 967 E Evergreen St, Strafford, MO 65757 - A2D Construction",
+ "Job_Name": "FGE Trucking New Building",
+ "Job_Number": "4048",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4048 - FGE Trucking New Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4048 - FGE Trucking New Building - 967 E Evergreen St, Strafford, MO 65757 - A2D Construction - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.177Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1ea2rgtig86looy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:52.343Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brink, Per",
+ "Contact_Notes": "",
+ "Contact_Person": "Mr Brink",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1049 E Siler Parkway, Spfd",
+ "Job_Codes": "4047 - Repairs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1049 E Siler Parkway, Spfd - Brink, Per",
+ "Job_Name": "Repairs",
+ "Job_Number": "4047",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4047 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/07/25 2:37 PM Beth Cardoza He's scheduled for Monday---\n03/05/25 12:20 PM Beth Cardoza add paint?---\n02/24/25 3:28 PM Beth Cardoza Eddie viewing tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172340314",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4047 - Repairs - 1049 E Siler Parkway, Spfd - Brink, Per - Mr Brink - 4172340314",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.225Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "afnm8bvl7t09d56",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:30.914Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken Kroll ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rogersville",
+ "Job_Codes": "4046 - Sports barn",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4046%20%5BR%5D%20Sports%20barn%20%28Rogersville%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Sports barn - Rogersville - Construct",
+ "Job_Name": "Sports barn",
+ "Job_Number": "4046",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4046 - Sports barn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/28/25 12:16 PM Beth Cardoza Possible CO: added some work Aaron’s a doorway. See voxer---\n08/12/25 8:57 AM Beth Cardoza Possible COs:\n- change door widths (2)\n- frame new window arch to wrap---\n08/27/25 1:41 PM Beth Cardoza No need for change orders. Doing fine on job.---\n08/07/25 7:44 AM david cardoza Stock 7,676\nSecond stock 720\nTotal stock 8,396\nNo Leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735296601",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4046 - Sports barn - Rogersville - Construct - Ken Kroll - 5735296601",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.275Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d3k6eh0lqqlf0nl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.039Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna Morris ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Farm Rd 113, Willard",
+ "Job_Codes": "4045 - Nothum",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4045%20Nothum%20%28Farm%20Rd%20113%2C%20Willard%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nothum - Farm Rd 113, Willard - Construct",
+ "Job_Name": "Nothum",
+ "Job_Number": "4045",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4045 - Nothum",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/03/25 5:25 PM Beth Cardoza Please plan to provide the materials & labor. Give an option for 5/8” gyp, 3 way window wrap, 4 way window wrap upgrade, level 4 wall finish, level 5 finish upgrade, and tear away bead.---\n02/25/25 9:46 AM Beth Cardoza Safe room yes [drywall]. Elevator shaft, please list separately as an option. Yes, decorative beams will be in prior to drywall.\n\n \n\nIf you need a couple of days next week, that is fine.---\n02/24/25 3:30 PM Beth Cardoza need the quotes by February 28, 2025, by 3pm.---\n02/21/25 11:13 AM Beth Cardoza 33 minutes from the office---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172984455",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4045 - Nothum - Farm Rd 113, Willard - Construct - Johanna Morris - 4172984455",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.357Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "02qhvwbyhhs5zyd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.187Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cole, Fred",
+ "Contact_Notes": "",
+ "Contact_Person": "Fred Cole",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2325 W Camino Alto, Spfd",
+ "Job_Codes": "4044 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 2325 W Camino Alto, Spfd - Cole, Fred",
+ "Job_Name": "Patches",
+ "Job_Number": "4044",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4044 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175692259",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4044 - Patches - 2325 W Camino Alto, Spfd - Cole, Fred - Fred Cole - 4175692259",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.428Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "945fh8y4rbw87c4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.319Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Harris",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "btharris@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "417 West Lynn St, Springfield, MO 65802",
+ "Job_Codes": "4043 - Pipkin Middle School",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pipkin Middle School - 417 West Lynn St, Springfield, MO 65802 - Killian Construction",
+ "Job_Name": "Pipkin Middle School",
+ "Job_Number": "4043",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4043 - Pipkin Middle School",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC lost bid to Crossland due to Crossland having an expedited schedule offer---02/20/25 11:16 AM Regina McClain Pre Meeting and Tour scheduled for 2.20.25 at 10AM---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203246",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4043 - Pipkin Middle School - 417 West Lynn St, Springfield, MO 65802 - Killian Construction - Brandon Harris - 4175203246",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.484Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2cb5euyh63htki1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.459Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "54 Beardsley Creek Dr, Blue Eye",
+ "Job_Codes": "4042 - Doornbos",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F4042%20Doornbos%20%2854%20Beardsley%20Creek%20Dr%2C%20Blue%20Eye%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Doornbos - 54 Beardsley Creek Dr, Blue Eye - Pitts, Doug",
+ "Job_Name": "Doornbos",
+ "Job_Number": "4042",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4042 - Doornbos",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/25 2:14 PM Beth Cardoza Just started framing. Assuming ready for drywall at beginning of December---\n03/10/25 8:44 AM Beth Cardoza Lets assume level 4 on main level important areas.\nSquare corners\nNo wrapped windows…trim all around.\nReady mid-summer---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4042 - Doornbos - 54 Beardsley Creek Dr, Blue Eye - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.544Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q6j2msbru7h2qc6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.607Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8203 SE Outer Rd, Branson",
+ "Job_Codes": "4041 - Native Signs",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Native Signs - 8203 SE Outer Rd, Branson - Baty Construction",
+ "Job_Name": "Native Signs",
+ "Job_Number": "4041",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4041 - Native Signs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/14/25 3:14 PM Beth Cardoza Eddie viewing Wednesday 8:30 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371169",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4041 - Native Signs - 8203 SE Outer Rd, Branson - Baty Construction - Gary Baty - 4173371169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.596Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gt6yjw0u30r33m4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.715Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Thousand Hills wallpaper",
+ "Job_Codes": "4040 - #2",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#2 - Thousand Hills wallpaper - Baty Construction",
+ "Job_Name": "#2",
+ "Job_Number": "4040",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4040 - #2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371169",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4040 - #2 - Thousand Hills wallpaper - Baty Construction - Gary Baty - 4173371169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.645Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zjbm7pqdn8csc0m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.826Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Music Capital Inn",
+ "Contact_Notes": "",
+ "Contact_Person": "Joy Brown GM ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "joy@bwmcinn.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3257 Shepard of the Hills Expy. Branson MO 65616",
+ "Job_Codes": "4039 - Music Capital Inn",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Music Capital Inn - 3257 Shepard of the Hills Expy. Branson MO 65616 - Music Capital Inn",
+ "Job_Name": "Music Capital Inn",
+ "Job_Number": "4039",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4039 - Music Capital Inn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Not awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173341774",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4039 - Music Capital Inn - 3257 Shepard of the Hills Expy. Branson MO 65616 - Music Capital Inn - Joy Brown GM - 4173341774",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.718Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0m5k5m328wcoc9q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:31.946Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bird, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Bird ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "143 Island View Way, Hollister",
+ "Job_Codes": "4038 - Repair",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 143 Island View Way, Hollister - Bird, Scott",
+ "Job_Name": "Repair",
+ "Job_Number": "4038",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4038 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3033194780",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4038 - Repair - 143 Island View Way, Hollister - Bird, Scott - Scott Bird - 3033194780",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.772Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "26q9k4l8z07agiz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.067Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "O'Reilly Build",
+ "Contact_Notes": "",
+ "Contact_Person": "Brennan Bagwell ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "N Old Castle Rd & E Tracker Rd, Nixa",
+ "Job_Codes": "4037 - Wicklow Apartments",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4037%20Wicklow%20Apartments%20%28N%20Old%20Castle%20Rd%20%26%20E%20Tracker%20Rd%2C%20Nixa%29%20%28O%27Reilly%20Build%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wicklow Apartments - N Old Castle Rd & E Tracker Rd, Nixa - O'Reilly Build",
+ "Job_Name": "Wicklow Apartments",
+ "Job_Number": "4037",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4037 - Wicklow Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/11/25 4:46 PM Beth Cardoza Only sent bid package1. Didn't have time to complete the other ones.---\n03/10/25 6:56 AM Beth Cardoza Looks like all orange peel except in Clubhouse there's some areas for wall coverings to be L4 smooth.---\n02/25/25 9:48 AM Beth Cardoza Bids due March 11---\n02/24/25 3:26 PM Beth Cardoza RFI's Due Tuesday the 25th by noon\nIt appears that RC1 or RC2 are allowable to meet the required UL 522 - so yes, you can bid RC1 - please be sure that drywall is secured to RC per notes on the plans.\n\nUnit ceilings are 9' an\n02/21/25 12:39 PM Beth Cardoza Wall and ceiling assembly types are indicated on G001. basically 5/8\" over RC on all ceilings in apartments.\n\nWe will submit an RFI next Tuesday for the ceiling finishes. thanks for bidding this!---\n02/21/25 12:39 PM Beth Cardoza I'd guess around December for drywall start. I'm not finding any indication of finish, will add this to our RFI list and keep you posted.---\n02/19/25 3:54 PM Beth Cardoza Bid Form & Scope Sheet\nGood morning, please see the bid form attached & uploaded into the files tab of your bid package. This is what we expect your bids to be submitted on, as well as your typical bid form with all inclusion",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5014229866",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4037 - Wicklow Apartments - N Old Castle Rd & E Tracker Rd, Nixa - O'Reilly Build - Brennan Bagwell - 5014229866",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.825Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ak0vdxu3zbm7wrf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.199Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeJager Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Everin",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scotte@dejagerd.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd #305 Branson, MO 65616",
+ "Job_Codes": "4036 - Famous Footwear #1176 Remodel - Night",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4036%20Famous%20Footwear%20Remodel%20Tanger%20Outlets%20%28DeJager%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Famous Footwear #1176 Remodel - Night - 300 Tanger Blvd #305 Branson, MO 65616 - DeJager Construction",
+ "Job_Name": "Famous Footwear #1176 Remodel - Night",
+ "Job_Number": "4036",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4036 - Famous Footwear #1176 Remodel - Night",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4036 - Famous Footwear #1176 Remodel - Night - 300 Tanger Blvd #305 Branson, MO 65616 - DeJager Construction - Scott Everin - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.925Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gfozd95klcsbjhl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:53.078Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Trent Cowherd",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "788 Rene, Nixa",
+ "Job_Codes": "4035 - Water damage",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 788 Rene, Nixa - Cowherd",
+ "Job_Name": "Water damage",
+ "Job_Number": "4035",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4035 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4035 - Water damage - 788 Rene, Nixa - Cowherd - Trent Cowherd - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:47.977Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0u3nm529zvc15ag",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.434Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "4034 - Casey",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4034%20%5BR%5D%20Casey%20%28Ozark%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Casey - Ozark - Essick, Dusty",
+ "Job_Name": "Casey",
+ "Job_Number": "4034",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4034 - Casey",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/10/25 4:38 PM Beth Cardoza Basement is unfinished---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4034 - Casey - Ozark - Essick, Dusty - Dusty Essick - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.032Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uxji66wrwq6lc63",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.555Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1111 North Robertson Ave., Springfield, MO 65802",
+ "Job_Codes": "4033 - Greene County Juvenile Facility Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4033%20Greene%20County%20Juvenile%20Facility%20Reno%20%28DeWitt%20and%20Associates%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Greene County Juvenile Facility Reno - 1111 North Robertson Ave., Springfield, MO 65802 - DeWitt and Associates",
+ "Job_Name": "Greene County Juvenile Facility Reno",
+ "Job_Number": "4033",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4033 - Greene County Juvenile Facility Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid ---02/21/25 11:36 AM Regina McClain We are not bidding---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4033 - Greene County Juvenile Facility Reno - 1111 North Robertson Ave., Springfield, MO 65802 - DeWitt and Associates - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2svzdu45cgmnowz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.654Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Linear Fox",
+ "Contact_Notes": "",
+ "Contact_Person": "Corey Brest",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Merriam Woods",
+ "Job_Codes": "4032 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4032%20%5BR%5D%20%20%28Merriam%20Woods%29%20%28Linear%20Fox%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Merriam Woods - Linear Fox",
+ "Job_Name": "N/A",
+ "Job_Number": "4032",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4032 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/10/25 1:59 PM Beth Cardoza 45 minute drive?---\n02/10/25 1:59 PM Beth Cardoza May be under Redbud Developements?---\n02/10/25 1:56 PM Beth Cardoza Has 3 houses, same plan. Budgeting---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8167872869",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4032 - N/A - Merriam Woods - Linear Fox - Corey Brest - 8167872869",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.136Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ys07wcs2as39c65",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.762Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Dowell ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Walnut Springs Dr, Cape Fair",
+ "Job_Codes": "4031 - Mack",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4031%20%5BR%5D%20Mack%20%28Walnut%20Springs%20Dr%2C%20Cape%20Fair%29%20%28Dowell%2C%20Kyle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Mack - Walnut Springs Dr, Cape Fair - Dowell, Kyle",
+ "Job_Name": "Mack",
+ "Job_Number": "4031",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4031 - Mack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/11/25 4:07 PM Beth Cardoza *Drywall- Tree bark textured ceiling, orange peel knockdown on the walls. 90 degree corners\nthroughout, window will all be cased and picture framed (no corners on windows.)---\n02/10/25 3:37 PM Beth Cardoza No drywall in the basement other than the stairwell leading down to the basement. The ceilings will be 9ft through the entire home and then trayed up to 10ft. In The living area and master bedroom. - Kyle---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178603628",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4031 - Mack - Walnut Springs Dr, Cape Fair - Dowell, Kyle - Kyle Dowell - 4178603628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.196Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n8btigqml963x1m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:32.878Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric (homeowner to schedule)",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "920 Shawnee Rd, Sparta",
+ "Job_Codes": "4030 - Patch",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 920 Shawnee Rd, Sparta - Solar Solutions",
+ "Job_Name": "Patch",
+ "Job_Number": "4030",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4030 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9033273910",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4030 - Patch - 920 Shawnee Rd, Sparta - Solar Solutions - Eric (homeowner to schedule) - 9033273910",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.248Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jho80ber607db5k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.011Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz",
+ "Contact_Notes": "",
+ "Contact_Person": "Frank Schaffer ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "frank.schaffer@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "417 West Lynn St, Springfield, MO 65802",
+ "Job_Codes": "4029 - Pipkin Middle School Project",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - Nabholz",
+ "Job_Name": "Pipkin Middle School Project",
+ "Job_Number": "4029",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4029 - Pipkin Middle School Project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC lost bid to Crossland due to Crossland having an expedited schedule offer---02/10/25 11:31 AM Regina McClain This job is Prevailing wage and Tax Exempt---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172252514",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4029 - Pipkin Middle School Project - 417 West Lynn St, Springfield, MO 65802 - Nabholz - Frank Schaffer - 4172252514",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.304Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yv93qinaxzbxduu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.123Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1610 N. Broadway, Springfield, MO 65803",
+ "Job_Codes": "4028 - Victory Hub",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4028%20Victory%20Hub%20%28DeWitt%20and%20Associates%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Victory Hub - 1610 N. Broadway, Springfield, MO 65803 - DeWitt and Associates",
+ "Job_Name": "Victory Hub",
+ "Job_Number": "4028",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4028 - Victory Hub",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were late in turning our bid - did not get awarded---02/10/25 11:32 AM Regina McClain This job is Tax Exempt---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4028 - Victory Hub - 1610 N. Broadway, Springfield, MO 65803 - DeWitt and Associates - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.357Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gd38zjeqgilnief",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.246Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey, Kent",
+ "Contact_Notes": "",
+ "Contact_Person": "Kent Bailey ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "514 N Fremont Ave, Spfd",
+ "Job_Codes": "4027 - Yarbrough equipment",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2FSmall%20jobs%2F4027%20%5BC%5D%20Yarbrough%20equipment%20%28514%20N%20Fremont%20Ave%2C%20Spfd%29%20%28Bailey%2C%20Kent%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Yarbrough equipment - 514 N Fremont Ave, Spfd - Bailey, Kent",
+ "Job_Name": "Yarbrough equipment",
+ "Job_Number": "4027",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4027 - Yarbrough equipment",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176899719",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4027 - Yarbrough equipment - 514 N Fremont Ave, Spfd - Bailey, Kent - Kent Bailey - 4176899719",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.408Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hu5t7h7llhoiykr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.406Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2306 W Phelps Street, Springfield, MO 65802",
+ "Job_Codes": "4026 - Mueller Building 8 North Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4026%20Mueller%20Building%208%20Addition%20%28Ross%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Mueller Building 8 North Addition - 2306 W Phelps Street, Springfield, MO 65802 - Ross Construction",
+ "Job_Name": "Mueller Building 8 North Addition",
+ "Job_Number": "4026",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4026 - Mueller Building 8 North Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "We were not low bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4026 - Mueller Building 8 North Addition - 2306 W Phelps Street, Springfield, MO 65802 - Ross Construction - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.464Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ktaioa5kjn4wb38",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.519Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Steel",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "401 Stillwood, Branson",
+ "Job_Codes": "4025 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4025%20%28401%20Stillwood%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 401 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "4025",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4025 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/25 5:21 PM Beth Cardoza CO: Small repair on lower stairwell wall. Maybe 16” square\n Also 2’ square patch where dishwasher goes.---\n02/24/25 8:02 AM david cardoza Stock 13,114\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4025 - N/A - 401 Stillwood, Branson - Still, Mark - Mark Steel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.517Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sm0b37r6csze88j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.631Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hopkins, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Hopkins ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1727 W Winchester, Spfd",
+ "Job_Codes": "4024 - Popcorn",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 1727 W Winchester, Spfd - Hopkins, John",
+ "Job_Name": "Popcorn",
+ "Job_Number": "4024",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4024 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/07/25 12:13 PM Beth Cardoza Eddie to walk Monday 9-930---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178443000",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4024 - Popcorn - 1727 W Winchester, Spfd - Hopkins, John - John Hopkins - 4178443000",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u0sznbb5anepzlq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.755Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Johnson, Jeremiah",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremiah Johnson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4023 - Repairs",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - - Johnson, Jeremiah",
+ "Job_Name": "Repairs",
+ "Job_Number": "4023",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4023 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/21/25 2:04 PM Beth Cardoza Never heard back---\n02/06/25 1:45 PM Beth Cardoza 2000 sqft of popcorn to scrape---\n02/06/25 1:45 PM Beth Cardoza He closes on the house in about 2 weeks. Will call to schedule a time to walk it at that time. Didn't have the address on hand when he was talking to Eddie.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175761300",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4023 - Repairs - - Johnson, Jeremiah - Jeremiah Johnson - 4175761300",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.637Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f8jqo2o5cncl6d2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.870Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Signature Home Comfort",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Funk homeowner to schedule, Justin Kellogg client to bill",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5493 W Skyler Dr, Spfd",
+ "Job_Codes": "4022 - Repair",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 5493 W Skyler Dr, Spfd - Signature Home Comfort",
+ "Job_Name": "Repair",
+ "Job_Number": "4022",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4022 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "7204258439",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4022 - Repair - 5493 W Skyler Dr, Spfd - Signature Home Comfort - Eric Funk homeowner to schedule, Justin Kellogg client to bill - 7204258439",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.696Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t0ho54v0789z9tp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:33.991Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary King ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3006 S FR 203, Spfd",
+ "Job_Codes": "4021 - Water damage",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 3006 S FR 203, Spfd - King, Gary",
+ "Job_Name": "Water damage",
+ "Job_Number": "4021",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4021 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/11/25 1:09 PM Beth Cardoza Eddie to view Friday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178401000",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4021 - Water damage - 3006 S FR 203, Spfd - King, Gary - Gary King - 4178401000",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.740Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4hkvpy0oeo63yp1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:34.150Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga, ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "501 W Chestnut Expy, Springfield, MO 65802",
+ "Job_Codes": "4020 - Total Point Urgent Care",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4020%20Total%20Point%20Urgent%20Care%20%28501%20W%20Chestnut%20Expy%29%20%28Friga%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Total Point Urgent Care - 501 W Chestnut Expy, Springfield, MO 65802 - Friga Construction",
+ "Job_Name": "Total Point Urgent Care",
+ "Job_Number": "4020",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4020 - Total Point Urgent Care",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded---02/21/25 11:35 AM Regina McClain Spoke to Eric, he went with our numbers but is still waiting to hear back on a few things from Owner regarding the job. This job had a prior GC that had no permits with the city and took half his payment and left town.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4020 - Total Point Urgent Care - 501 W Chestnut Expy, Springfield, MO 65802 - Friga Construction - Eric Friga, - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.789Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3sj8l9i1ktos4pp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:34.346Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2200 W Republic Road, Springfield MO 65807",
+ "Job_Codes": "4019 - St. Elizabeth Ann Seton Parish Hall Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/4019 - St. Elizabeth Ann Seton Parish Hall Reno - Nabholz",
+ "Job_Full_Name": "St. Elizabeth Ann Seton Parish Hall Renovation - 2200 W Republic Road, Springfield MO 65807 - Nabholz",
+ "Job_Name": "St. Elizabeth Ann Seton Parish Hall Renovation",
+ "Job_Number": "4019",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4019FXEX - St. Elizabeth Ann Seton Parish Hall Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4019FXEX - St. Elizabeth Ann Seton Parish Hall Renovation - 2200 W Republic Road, Springfield MO 65807 - Nabholz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.848Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "adpzc3peco73sj0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:33.967Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RLKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick or Beth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "648 W Nichols",
+ "Job_Codes": "4018 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 648 W Nichols - RLKC",
+ "Job_Name": "N/A",
+ "Job_Number": "4018",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4018 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4018 - N/A - 648 W Nichols - RLKC - Rick or Beth - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.892Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2e49sxps2bmd5ic",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:34.702Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Harms",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "4017 - South Wall between Youth restroom & maintenance",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "South Wall between Youth restroom & maintenance - - JRC",
+ "Job_Name": "South Wall between Youth restroom & maintenance",
+ "Job_Number": "4017",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4017 - South Wall between Youth restroom & maintenance",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/04/25 2:43 PM Beth Cardoza Never heard back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173404403",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4017 - South Wall between Youth restroom & maintenance - - JRC - Jeff Harms - 4173404403",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.944Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ed3mhnmntdvpgdl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:34.826Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6059 S Clay St, Spfd",
+ "Job_Codes": "4016 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4016%20%5BR%5D%20%20%286059%20S%20Clay%20St%2C%20Spfd%29%20%28Colton%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 6059 S Clay St, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "4016",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4016 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/02/25 12:51 PM Beth Cardoza CO: Has two lights covered\nAnd he’s moved a wall. Big hurry. Needs it done before Wednesday. I’ll go look at it. One sheet Drywall is there.---\n02/09/25 8:57 AM david cardoza Stock 12,552\nLeftover 296\nHang 12,256\nAdjusted leftover was 336 ft. (per Eddie)---\n02/03/25 10:31 AM Beth Cardoza Appears to be same house plan as Job 3084 at 5924 S Dollison. Assuming that, I've used that estimate and updated it (that was done in 2023). Waiting to confirm if same areas do not get drywall as last time or if everything g",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172992407",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4016 - N/A - 6059 S Clay St, Spfd - Colton, Jim - Jim Colton - 4172992407",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:48.993Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7f30dp0wd5c78g0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:34.946Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Alysheba Ct, Spfd",
+ "Job_Codes": "4015 - WH 39",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4015%20WH%2039%20%28Alysheba%20Ct%2C%20Spfd%29%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 39 - Alysheba Ct, Spfd - Everlasting Homes",
+ "Job_Name": "WH 39",
+ "Job_Number": "4015",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4015 - WH 39",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/29/25 7:41 AM david cardoza Final hang 12,094\nNo leftover---\n05/08/25 4:03 PM Beth Cardoza Stocks on Wednesday---\n05/08/25 4:02 PM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4015 - WH 39 - Alysheba Ct, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.040Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2hd3iw3y462ji9r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.062Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Alysheba Ct, Spfd",
+ "Job_Codes": "4014 - WH 37",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4014%20WH%2037%20%28Alysheba%20Ct%2C%20Spfd%29%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 37 - Alysheba Ct, Spfd - Everlasting Homes",
+ "Job_Name": "WH 37",
+ "Job_Number": "4014",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4014 - WH 37",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/15/25 9:50 AM Beth Cardoza CO: repairs---\n04/09/25 8:04 AM david cardoza Stock 11,784---\n03/26/25 2:05 PM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4014 - WH 37 - Alysheba Ct, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.101Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aexfa12p7szqfni",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.182Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mid South Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tanner Gray ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5782 N FR 171, Spfd",
+ "Job_Codes": "4013 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 5782 N FR 171, Spfd - Mid South Construction",
+ "Job_Name": "Patches",
+ "Job_Number": "4013",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4013 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178138867",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4013 - Patches - 5782 N FR 171, Spfd - Mid South Construction - Tanner Gray - 4178138867",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.164Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lf3owavuma4tccg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.294Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Unbridled, Spfd",
+ "Job_Codes": "4012 - WH 47",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4012%20WH%2047%20%28Unbridled%2C%20Spfd%29%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 47 - Unbridled, Spfd - Everlasting Homes",
+ "Job_Name": "WH 47",
+ "Job_Number": "4012",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4012 - WH 47",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/16/25 10:04 AM Beth Cardoza CO: small repairs---\n03/31/25 9:06 AM david cardoza Stock 11,688\nNo leftover---\n01/31/25 10:12 AM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4012 - WH 47 - Unbridled, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.216Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g3tx0w1szgmmu76",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.418Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Alysheba Ct, Spfd",
+ "Job_Codes": "4011 - WH 38",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F4011%20WH%2038%20%28Alysheba%20Ct%2C%20Spfd%29%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 38 - Alysheba Ct, Spfd - Everlasting Homes",
+ "Job_Name": "WH 38",
+ "Job_Number": "4011",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4011 - WH 38",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/04/25 7:59 AM david cardoza Stock 12,744\nLeftover 32\nHang 12,712---\n01/31/25 10:12 AM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4011 - WH 38 - Alysheba Ct, Spfd - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.260Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4e0cc4u0yjtnuqy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.538Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "440 South Market Avenue, Springfield, MO 65806",
+ "Job_Codes": "4010 - Lakeland Health East Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4010%20Lakeland%20Health%20East%20Addition%20%28Nabholz%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lakeland Health East Addition - 440 South Market Avenue, Springfield, MO 65806 - Nabholz",
+ "Job_Name": "Lakeland Health East Addition",
+ "Job_Number": "4010",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4010 - Lakeland Health East Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid ---02/25/25 10:20 AM Regina McClain Not Bidding---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4010 - Lakeland Health East Addition - 440 South Market Avenue, Springfield, MO 65806 - Nabholz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.316Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5nbg2ph142yok2r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.662Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Blanks, David",
+ "Contact_Notes": "",
+ "Contact_Person": "David Blanks",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3045 E Elm St, Spfd",
+ "Job_Codes": "4009 - Patches",
+ "Job_Division": "S#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2FSmall%20jobs%2F4009%20Patches%20%283045%20E%20Elm%20St%2C%20Spfd%29%20%28Blanks%2C%20David%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Patches - 3045 E Elm St, Spfd - Blanks, David",
+ "Job_Name": "Patches",
+ "Job_Number": "4009",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "S#4009 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173797713",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "S#4009 - Patches - 3045 E Elm St, Spfd - Blanks, David - David Blanks - 4173797713",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.366Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r5p1py96od0eq4g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.783Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cisse, Maimouna",
+ "Contact_Notes": "",
+ "Contact_Person": "Maimouna ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2914 W Trevor, Ozark",
+ "Job_Codes": "4008 - Patch",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2914 W Trevor, Ozark - Cisse, Maimouna",
+ "Job_Name": "Patch",
+ "Job_Number": "4008",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4008 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178946846",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4008 - Patch - 2914 W Trevor, Ozark - Cisse, Maimouna - Maimouna - 4178946846",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.424Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wpnu14ai2vks4f9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:35.898Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schaeffer, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Schaeffer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Willard",
+ "Job_Codes": "4007 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4007%20%5BR%5D%20%20%28Willard%29%20%28Schaeffer%2C%20Brandon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Willard - Schaeffer, Brandon",
+ "Job_Name": "N/A",
+ "Job_Number": "4007",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4007 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/31/25 11:05 AM Beth Cardoza I’m looking to get a drywall quote on the attached plans. Building in Willard. Looking to be ready for drywall in April.\n\n \n\nStandard orange peel finish on walls,\n\nStandard stamp / knock down on Ceilings\n\nSquare corners\n\nD",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175218093",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#4007 - N/A - Willard - Schaeffer, Brandon - Brandon Schaeffer - 4175218093",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.473Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xhvvg48asusftb1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.026Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt and Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Brown",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "gbrown@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3801 S National Ave, Springfield, MO 65807",
+ "Job_Codes": "4006 - CoxHealth Core Lab Expansion",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4006%20CoxHealth%20Core%20Lab%20Expansion%20%28Dewitt%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "CoxHealth Core Lab Expansion - 3801 S National Ave, Springfield, MO 65807 - DeWitt and Associates",
+ "Job_Name": "CoxHealth Core Lab Expansion",
+ "Job_Number": "4006",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4006 - CoxHealth Core Lab Expansion",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded---02/12/25 12:28 PM Regina McClain Spoke to Chris at DeWitt, numbers are in but they have not heard back yet if they received the project.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173703895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4006 - CoxHealth Core Lab Expansion - 3801 S National Ave, Springfield, MO 65807 - DeWitt and Associates - Greg Brown - 4173703895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.524Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pzbbmh7lfmm19rp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.162Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q& Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Adam Parks",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "adamparks@qandcompanyllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4109 S National Ave, SPFD, MO 65807",
+ "Job_Codes": "4005 - Arlo Bank Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4005%20Arlo%20Bank%20Remodel%20%28Q%26Company%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Arlo Bank Remodel - 4109 S National Ave, SPFD, MO 65807 - Q& Company",
+ "Job_Name": "Arlo Bank Remodel",
+ "Job_Number": "4005",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4005 - Arlo Bank Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Not awarded due to Bank felt it was a risk factor for how low our numbers came in at. ---02/06/25 9:50 AM Regina McClain Original bid due date 02.07.25 - new plans came out allowing an extension to 02.12.25 now.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4005 - Arlo Bank Remodel - 4109 S National Ave, SPFD, MO 65807 - Q& Company - Adam Parks - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.588Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sv79cdpi5btv30f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.278Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1032 Trout Rd, Ozark",
+ "Job_Codes": "4004 - Johnson",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F4004%20%5BR%5D%20Johnson%20%281032%20Trout%20Rd%2C%20Ozark%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Johnson - 1032 Trout Rd, Ozark - Essick, Dusty",
+ "Job_Name": "Johnson",
+ "Job_Number": "4004",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#4004 - Johnson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#4004 - Johnson - 1032 Trout Rd, Ozark - Essick, Dusty - Dusty Essick - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.640Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sdmzi8gzc9qjy50",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.406Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "J.E Foster Building Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Hrdlicka",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "MHrdlicka@JEfoster.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3801 W University St., SPFD, MO 65807",
+ "Job_Codes": "4003 - Chick Fil A",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4003%20Chick%20Fil%20A%20%28West%20University%29%20%28J%2EE%20Foster%20Building%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Chick Fil A - 3801 W University St., SPFD, MO 65807 - J.E Foster Building Company",
+ "Job_Name": "Chick Fil A",
+ "Job_Number": "4003",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4003 - Chick Fil A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Second email sent on 03.04.25 - No response---02/20/25 10:34 AM Regina McClain Received word from Mark and bids are still pending.---\n02/20/25 8:59 AM Regina McClain Called Jake, he is no longer with JE Foster. Sent follow up email to Mark Hrdlicka. 02.20.25---\n02/17/25 3:36 PM Regina McClain Sent email to Jake following up on bid submission. 02.14.2025---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4003 - Chick Fil A - 3801 W University St., SPFD, MO 65807 - J.E Foster Building Company - Mark Hrdlicka - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.692Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bzqehe3qnpaoh8e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.542Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "2025-01-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2215 W Chesterfield BLVD Suite 01, SPFD, MO, 65807",
+ "Job_Codes": "4002 - Kinetic Designs Expansion (Chesterfield)",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4002%20Kinetic%20Designs%20Expansion%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kinetic Designs Expansion (Chesterfield) - 2215 W Chesterfield BLVD Suite 01, SPFD, MO, 65807 - Construct",
+ "Job_Name": "Kinetic Designs Expansion (Chesterfield)",
+ "Job_Number": "4002",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4002FX - Kinetic Designs Expansion (Chesterfield)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Project uncertain---02/13/25 3:25 PM Regina McClain Seth stated that the bids are in preliminary pricing stages, there is more to do with the designing and the project is a few months out from any decisions---\n02/07/25 12:10 PM Regina McClain Spoke to Seth, still pending review, preliminary numbers look good but they are still waiting on confirmation of Construct winning the job.---",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4002FX - Kinetic Designs Expansion (Chesterfield) - 2215 W Chesterfield BLVD Suite 01, SPFD, MO, 65807 - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.740Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "no5zihedy9inayv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.710Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JeDunn Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Camryn Gatzemeyer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "camryn.gatzemeyer@jedunn.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1149 E Bear Blvd, SPFD, MO 65807",
+ "Job_Codes": "4001 - MSU Advancement Center - ITB",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4001%20MSU%20Advancement%20Center%20%28JE%20Dunn%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "MSU Advancement Center - ITB - 1149 E Bear Blvd, SPFD, MO 65807 - JeDunn Construction",
+ "Job_Name": "MSU Advancement Center - ITB",
+ "Job_Number": "4001",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4001 - MSU Advancement Center - ITB",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Did not bid",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8166058692",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4001 - MSU Advancement Center - ITB - 1149 E Bear Blvd, SPFD, MO 65807 - JeDunn Construction - Camryn Gatzemeyer - 8166058692",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.793Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m5ybszxs7aiefu4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 03:29:55.355Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga, ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "611 E 7th St. Carthage, MO",
+ "Job_Codes": "4000 - Carthage Crosslines Building Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F4000%20Carthage%20Crosslines%20Addition%20%28Friga%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Carthage Crosslines Building Addition - 611 E 7th St. Carthage, MO - Friga Construction",
+ "Job_Name": "Carthage Crosslines Building Addition",
+ "Job_Number": "4000",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#4000 - Carthage Crosslines Building Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "GC not awarded---02/21/25 11:36 AM Regina McClain Spoke to Eric, he went with our numbers for this bid. He has to wait on a concrete submittal before his final numbers are submitted to review.---\n02/12/25 12:21 PM Regina McClain Steve spoke to Eric - estimate looked good but waiting to hear back on if Friga gets the bid or not.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#4000 - Carthage Crosslines Building Addition - 611 E 7th St. Carthage, MO - Friga Construction - Eric Friga, - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.844Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rgs81zcedzx8rz0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:36.962Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bryon Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1781 S. Royal Dr.",
+ "Job_Codes": "3999 - Meadowood Lot 40",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3999%20Weber%20Home%20and%20Land%20Lot%2040&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Meadowood Lot 40 - 1781 S. Royal Dr. - Bryon Weber",
+ "Job_Name": "Meadowood Lot 40",
+ "Job_Number": "3999",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3999FX - Meadowood Lot 40",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3999FX - Meadowood Lot 40 - 1781 S. Royal Dr. - Bryon Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.901Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5etlzqjnepp1pi3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.066Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bryon Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1781 S. Royal Dr.",
+ "Job_Codes": "3998 - Meadowood Lot 39",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3998%20Weber%20Home%20and%20Land%20Lot%2039&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Meadowood Lot 39 - 1781 S. Royal Dr. - Bryon Weber",
+ "Job_Name": "Meadowood Lot 39",
+ "Job_Number": "3998",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3998FX - Meadowood Lot 39",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3998FX - Meadowood Lot 39 - 1781 S. Royal Dr. - Bryon Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:49.952Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "55wu1obvukrnr5r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.182Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "South Nixa",
+ "Job_Codes": "3997 - Trantham",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3997%20%5BR%5D%20Trantham%20%28South%20Nixa%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Trantham - South Nixa - Concept2Completion",
+ "Job_Name": "Trantham",
+ "Job_Number": "3997",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3997 - Trantham",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/24/25 12:42 PM Beth Cardoza Job is in Christian county \nMain level and garage only basement unfinished\nWe will put a door at bottom of staircase so that is the stopping point. Light orange peel walls and stomp knock down on ceilings---\n01/24/25 3:30 PM Beth Cardoza No window wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3997 - Trantham - South Nixa - Concept2Completion - Tim Schwenke - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.012Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f34oh2biyfjhmth",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.302Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Woodley, Dalton",
+ "Contact_Notes": "",
+ "Contact_Person": "Dalton ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "100 E Main St, Willow Springs",
+ "Job_Codes": "3996.2 - Apartments",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Apartments - 100 E Main St, Willow Springs - Woodley, Dalton",
+ "Job_Name": "Apartments",
+ "Job_Number": "3996.2",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#3996.2 - Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/02/25 9:59 AM Beth Cardoza That brings us to a total of 19,578 sqft.\n\nDo you have how much of that is the double layer? That will be needed to pay tapers, texture, etc..\n\nThis job needs re-estimated by Rick due to changes---\n03/21/25 2:47 PM Beth Cardoza 10' 9\" ceiling height\nThe dividing walls between the apartments will need a double layer of 5/8 on both sides for a 2hr fire break\nThere are alot of brick walls that will not get sheetrock\nWhen we get closer to drywall I can",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172527186",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#3996.2 - Apartments - 100 E Main St, Willow Springs - Woodley, Dalton - Dalton - 4172527186",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.060Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iz3ycvgreic1514",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Woodley, Dalton",
+ "Contact_Notes": "",
+ "Contact_Person": "Dalton ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "100 E Main St, Willow Springs",
+ "Job_Codes": "3996.1 - Apartments",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Apartments - 100 E Main St, Willow Springs - Woodley, Dalton",
+ "Job_Name": "Apartments",
+ "Job_Number": "3996.1",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#3996.1 - Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/10/25 6:16 AM Beth Cardoza CO: Add prime. Approx 3 man days and a half for masking and cleanup---\n01/27/25 1:08 PM Beth Cardoza We will provide and stock the board if you want to give me a list of sizes u want.\nWindows will be trimmed out with wood.\nFinish will be a light knockdown on walls medium knockdown on ceilings.---\n01/27/25 10:55 AM Beth Cardoza The address is 100 E Main Street Willow Springs MO 65793\nThe only section you can not see in the drawing is the main floor entry area to the stairwell. The added sq ft of the stairwell you can not see on the drawings will be",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172527186",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "R#3996.1 - Apartments - 100 E Main St, Willow Springs - Woodley, Dalton - Dalton - 4172527186",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.112Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f4qbefy5yfos27y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.554Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cope, Caroline & Howard",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8326 Shinnecock Dr, Nixa",
+ "Job_Codes": "3995 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 8326 Shinnecock Dr, Nixa - Cope, Caroline & Howard",
+ "Job_Name": "Crack",
+ "Job_Number": "3995",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3995 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5733681486",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3995 - Crack - 8326 Shinnecock Dr, Nixa - Cope, Caroline & Howard - - 5733681486",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.165Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o7ztc9k99oe45ja",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.667Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tiggemann, Blake",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Tggemann ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "303 N Cheyanne Valley Rd, Nixa",
+ "Job_Codes": "3994 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 303 N Cheyanne Valley Rd, Nixa - Tiggemann, Blake",
+ "Job_Name": "Patches",
+ "Job_Number": "3994",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3994 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175217590",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3994 - Patches - 303 N Cheyanne Valley Rd, Nixa - Tiggemann, Blake - Blake Tggemann - 4175217590",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.216Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "11e3jjc5uzi2pm4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.774Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1781 Royal Dr, Spfd",
+ "Job_Codes": "3993 - Meadowood Lot 39",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Meadowood Lot 39 - 1781 Royal Dr, Spfd - Weber, Bryon",
+ "Job_Name": "Meadowood Lot 39",
+ "Job_Number": "3993",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3993 - Meadowood Lot 39",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Duplicate",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3993 - Meadowood Lot 39 - 1781 Royal Dr, Spfd - Weber, Bryon - Bryon Weber - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.268Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a2afb0sl58cetax",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:37.902Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3992 - Thousand Hills wallpaper",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Thousand Hills wallpaper - - Baty Construction",
+ "Job_Name": "Thousand Hills wallpaper",
+ "Job_Number": "3992",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3992 - Thousand Hills wallpaper",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371169",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3992 - Thousand Hills wallpaper - - Baty Construction - Gary Baty - 4173371169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.320Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k1v0f100vla7eq4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.014Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "James Ramsey ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5440 N Willow Rd, Ozark",
+ "Job_Codes": "3991 - Piddington Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3991%20%5BR%5D%20Piddington%20Addition%20%285440%20N%20Willow%20Rd%2C%20Ozark%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Piddington Addition - 5440 N Willow Rd, Ozark - Weber, Bryon",
+ "Job_Name": "Piddington Addition",
+ "Job_Number": "3991",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3991 - Piddington Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/04/25 10:07 AM Beth Cardoza Possible CO??: Eddie wrote today: Needs a finisher next couple of days that had a issue kitchen side that needs addressed so trim and painting can be completed in existing part of the house---\n06/04/25 1:51 PM Beth Cardoza Not warranty, per Eddie---\n06/04/25 10:06 AM Beth Cardoza Job not complete. We haven't done the addition yet, however, job has been billed complete!---\n01/21/25 11:11 AM Beth Cardoza Walk through Wednesday at 10 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178441903",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3991 - Piddington Addition - 5440 N Willow Rd, Ozark - Weber, Bryon - James Ramsey - 4178441903",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.376Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l1e6ntuoc1wznae",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.131Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett, Jerry",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "N FR 75, Bois D'Arc",
+ "Job_Codes": "3990 - Wiliams",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3990%20Wiliams%20%28N%20FR%2075%2C%20Bois%20D%27Arc%29%20%28Burnett%2C%20Jerry%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wiliams - N FR 75, Bois D'Arc - Burnett, Jerry",
+ "Job_Name": "Wiliams",
+ "Job_Number": "3990",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3990 - Wiliams",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/20/25 11:36 AM Beth Cardoza Basic stuff with window wraps.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3990 - Wiliams - N FR 75, Bois D'Arc - Burnett, Jerry - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.432Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e3ljgvgbmhqjg5y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.254Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Harms",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N 19th St, Ozark",
+ "Job_Codes": "3989 - Youth door frame repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Youth door frame repair - 6100 N 19th St, Ozark - JRC",
+ "Job_Name": "Youth door frame repair",
+ "Job_Number": "3989",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3989 - Youth door frame repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173404403",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3989 - Youth door frame repair - 6100 N 19th St, Ozark - JRC - Jeff Harms - 4173404403",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.484Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6fk7vp2t4mbolpq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.374Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "215 Pebble Beach Dr, Branson",
+ "Job_Codes": "3988 - Butler",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3988%20%5BR%5D%20Butler%20%28215%20Pebble%20Beach%20Dr%2C%20Branson%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Butler - 215 Pebble Beach Dr, Branson - Krueger, Paul",
+ "Job_Name": "Butler",
+ "Job_Number": "3988",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3988 - Butler",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/25/25 10:38 AM Beth Cardoza in plan review---\n01/20/25 1:15 PM Beth Cardoza Same specs i do on most every house. Make a note....\nOP walls, stomp KD ceiling, square corner bead, no window wraps ever.\nJune/July drywall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3988 - Butler - 215 Pebble Beach Dr, Branson - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.536Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "czfywng4mfegphk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.494Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Woolfenden, Jake",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake Woolfenden ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3347 W Valley Ct, Spfd",
+ "Job_Codes": "3987 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3347 W Valley Ct, Spfd - Woolfenden, Jake",
+ "Job_Name": "Patches",
+ "Job_Number": "3987",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3987 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/20/25 1:52 PM Beth Cardoza TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173433200",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3987 - Patches - 3347 W Valley Ct, Spfd - Woolfenden, Jake - Jake Woolfenden - 4173433200",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.592Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x2cvpkfv1ghb8hj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.618Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Oldfield",
+ "Job_Codes": "3986 - Ramey",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3986%20Ramey%20%28Oldfield%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ramey - Oldfield - Krueger, Paul",
+ "Job_Name": "Ramey",
+ "Job_Number": "3986",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3986 - Ramey",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:41 PM Beth Cardoza Krueger lost this one.---\n04/25/25 10:34 AM Beth Cardoza Starts framing Monday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3986 - Ramey - Oldfield - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.644Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ykal7sil35583st",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.730Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Greenaway, Chuck",
+ "Contact_Notes": "",
+ "Contact_Person": "Chuck Greenaway ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3985 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - Ozark - Greenaway, Chuck",
+ "Job_Name": "Repairs",
+ "Job_Number": "3985",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3985 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/20/25 12:58 PM Beth Cardoza Eddie to walk tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6622424640",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3985 - Repairs - Ozark - Greenaway, Chuck - Chuck Greenaway - 6622424640",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.696Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "80t8d40kda03jug",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.846Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Medley, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Medley",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rivercut",
+ "Job_Codes": "3984 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - Rivercut - Medley, Jim",
+ "Job_Name": "Repairs",
+ "Job_Number": "3984",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3984 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/29/25 2:55 PM Beth Cardoza Duplicate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3984 - Repairs - Rivercut - Medley, Jim - Jim Medley - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.741Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qr2mxgnkt1ykowh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:38.966Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Battaglia, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew Battaglia ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1501 Treehouse Ln, Branson",
+ "Job_Codes": "3983 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3983%20%5BR%5D%20Remodel%20%281501%20Treehouse%20Ln%2C%20Branson%29%20%28Battaglia%2C%20Andrew%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 1501 Treehouse Ln, Branson - Battaglia, Andrew",
+ "Job_Name": "Remodel",
+ "Job_Number": "3983",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3983 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/14/25 3:20 PM Beth Cardoza 830 Thursday morning for walk through---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175596077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3983 - Remodel - 1501 Treehouse Ln, Branson - Battaglia, Andrew - Andrew Battaglia - 4175596077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.804Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8yhr5cer81bh3rg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cburke@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "609 E Cherry St",
+ "Job_Codes": "3982 - MSU Phase 2 Kampeter Hal",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3982%20DeWitt%20%28MSU%20Kemper%20Hall%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "MSU Phase 2 Kampeter Hal - 609 E Cherry St - DeWitt",
+ "Job_Name": "MSU Phase 2 Kampeter Hal",
+ "Job_Number": "3982",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3982 - MSU Phase 2 Kampeter Hal",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179885787",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3982 - MSU Phase 2 Kampeter Hal - 609 E Cherry St - DeWitt - Chris Burke - 4179885787",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.856Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "atza11hfpwvjjlv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.194Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "SRC Addition at FR 123",
+ "Job_Codes": "3981 - SRC",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3981 - SRC - Ross",
+ "Job_Full_Name": "SRC - SRC Addition at FR 123 - Ross",
+ "Job_Name": "SRC",
+ "Job_Number": "3981",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3981FX - SRC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "3",
+ "Scope": "",
+ "Start_Date": "2026-02-01 00:00:00.000Z",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3981FX - SRC - SRC Addition at FR 123 - Ross - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.917Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b64o8a0vqqov93b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:36.795Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett, Jerry",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3980 - Own",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3980%20%5BR%5D%20Own%20%28Burnett%2C%20Jerry%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Own - - Burnett, Jerry",
+ "Job_Name": "Own",
+ "Job_Number": "3980",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3980 - Own",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/13/25 12:43 PM Beth Cardoza Wild horse houses are RR/OP---\n01/13/25 12:42 PM Beth Cardoza [finish]Similar to wild horse houses. No window wrap. Due it by piece.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3980 - Own - - Burnett, Jerry - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:50.969Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y0uwms1hatjva1d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.430Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Drinkall, Danny",
+ "Contact_Notes": "",
+ "Contact_Person": "Danny Drinkall",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "117 South St, Rogersville",
+ "Job_Codes": "3979 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 117 South St, Rogersville - Drinkall, Danny",
+ "Job_Name": "N/A",
+ "Job_Number": "3979",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3979 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3979 - N/A - 117 South St, Rogersville - Drinkall, Danny - Danny Drinkall - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.024Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "grjybj4x4ef6svp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.550Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "680 Emerald Point Dr Bld 4, 4th floor #7",
+ "Job_Codes": "3978 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 680 Emerald Point Dr Bld 4, 4th floor #7 - Baty Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "3978",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3978 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371169",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3978 - Repairs - 680 Emerald Point Dr Bld 4, 4th floor #7 - Baty Construction - Gary Baty - 4173371169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.077Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y4p3h9zx57cpb46",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.667Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "745 Dixie Heights Rd, Kirbyville",
+ "Job_Codes": "3977 - Baer",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3977%20Baer%20%28North%20Branson%29%20%28Ozark%20Mountain%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Baer - 745 Dixie Heights Rd, Kirbyville - Ozark Mountain",
+ "Job_Name": "Baer",
+ "Job_Number": "3977",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3977 - Baer",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/10/25 10:42 AM Beth Cardoza The vault looks like a 12:12, ceilings are 9' on the main level and 8' in the bonus room. If we could do the basement area as an option, I am not sure if we are finishing that with drywall or not. Three way window wrap with",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176691303",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3977 - Baer - 745 Dixie Heights Rd, Kirbyville - Ozark Mountain - David Herd - 4176691303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.128Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4twjd7yfotki0pg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.783Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DMP",
+ "Contact_Notes": "",
+ "Contact_Person": "Phil Vandyne",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3976 - DMP",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "DMP - Spfd - DMP",
+ "Job_Name": "DMP",
+ "Job_Number": "3976",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3976FX - DMP",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "---01/30/25 11:24 AM Regina McClain Follow up email sent on 01.30.2025 to Robert Buller---",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3976FX - DMP - Spfd - DMP - Phil Vandyne - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.184Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6hbu848k91kcwdx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.886Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "REZ Management LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Pearson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3975 - Starbucks",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3975%20Starbucks&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Starbucks - - REZ Management LLC",
+ "Job_Name": "Starbucks",
+ "Job_Number": "3975",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3975 - Starbucks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2089231043",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3975 - Starbucks - - REZ Management LLC - Ben Pearson - 2089231043",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.236Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bjay4lpys85y6xl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:39.991Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4580 W. Calhoun Springfield",
+ "Job_Codes": "3974 - APAC",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3974%20APAC&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "APAC - 4580 W. Calhoun Springfield - RKC",
+ "Job_Name": "APAC",
+ "Job_Number": "3974",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3974 - APAC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3974 - APAC - 4580 W. Calhoun Springfield - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.289Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1a2p5q3cyvbpyyj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.099Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3973 - WH 35",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3973UP%20WH%2035%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WH 35 - - Everlasting Homes",
+ "Job_Name": "WH 35",
+ "Job_Number": "3973",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3973 - WH 35",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/04/25 6:44 AM david cardoza Stock 20,104\nSecond stock 666\nTotal stock 20,680---\n02/18/25 1:11 PM Beth Cardoza 20,104 +666= 20,770---\n01/07/25 5:28 PM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3973 - WH 35 - - Everlasting Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.337Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bmzg61cy4csujq2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.202Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Harms",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N 19th St, Ozark",
+ "Job_Codes": "3972 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 6100 N 19th St, Ozark - JRC",
+ "Job_Name": "Cracks",
+ "Job_Number": "3972",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3972 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178306592",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3972 - Cracks - 6100 N 19th St, Ozark - JRC - Jeff Harms - 4178306592",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.396Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lqg62m99nhik3ab",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.310Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1351 Loblolly Rd, Highlandville",
+ "Job_Codes": "3971 - Gilliland",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3971%20%5BR%5D%20Gilliland%20%28Loblolly%20Ln%2C%20Highlandville%29%20%28Ozark%20Mountain%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Gilliland - 1351 Loblolly Rd, Highlandville - Ozark Mountain",
+ "Job_Name": "Gilliland",
+ "Job_Number": "3971",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3971 - Gilliland",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/18/25 2:03 PM Beth Cardoza Revised plan for the GIlliland project. The left side of the house and main room/kitchen have not changed. On the right, the shrunk the garage and rooms to make the house 2123 sw ft with a 630 sq ft garage. They are 9' cei\n01/10/25 5:06 PM Beth Cardoza The vault is 5:12. Three way window wrap with standard texture and square corners.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3971 - Gilliland - 1351 Loblolly Rd, Highlandville - Ozark Mountain - David Herd - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.449Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h0746elturizorj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.418Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McCully, Jerrod",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry McCully ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "305 Deanna Ln, Nixa",
+ "Job_Codes": "3970 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 305 Deanna Ln, Nixa - McCully, Jerrod",
+ "Job_Name": "Bath",
+ "Job_Number": "3970",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3970 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/15/25 10:59 AM Beth Cardoza Eddie to view this Friday morning 830---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175511529",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3970 - Bath - 305 Deanna Ln, Nixa - McCully, Jerrod - Jerry McCully - 4175511529",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.576Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vu09f1nx4uzlehu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.518Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "326 Pinewood Dr, Kim City",
+ "Job_Codes": "3969 - Honadel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3969%20Honadel%20%28326%20Pinewood%20Dr%2C%20Kim%20City%29%20%28Sutherland%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Honadel - 326 Pinewood Dr, Kim City - Sutherland Construction",
+ "Job_Name": "Honadel",
+ "Job_Number": "3969",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3969 - Honadel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/07/25 4:57 PM Beth Cardoza If we can get as soon as possible. Probably around July -August start.---\n01/06/25 3:40 PM Beth Cardoza 326 Pinewood Dr Kimberling City\n8' walls unfinished basement\n40x28. Square corners, no window wrap, knock down on ceiling and walls---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175368445",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3969 - Honadel - 326 Pinewood Dr, Kim City - Sutherland Construction - Angel Sutherland - 4175368445",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.633Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vmjqvjvbxxcoqz7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.622Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "CJ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "250 Bronco Ln, Billings",
+ "Job_Codes": "3968 - touchups",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "touchups - 250 Bronco Ln, Billings - Cowherd",
+ "Job_Name": "touchups",
+ "Job_Number": "3968",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3968 - touchups",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3968 - touchups - 250 Bronco Ln, Billings - Cowherd - CJ - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.684Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ueiuivks8d3l4kv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.731Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hamon, Chris",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Hammon",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1283 Bear Creek Rd, Walnut Shade",
+ "Job_Codes": "3967 - Pool house",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3967%20Pool%20house%201283%20Bear%20Creek%20Rd%2C%20Walnut%20Shade%20%28Hamon%2C%20Chris%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pool house - 1283 Bear Creek Rd, Walnut Shade - Hamon, Chris",
+ "Job_Name": "Pool house",
+ "Job_Number": "3967",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3967 - Pool house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/23/25 7:32 AM david cardoza stock 2,864\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3967 - Pool house - 1283 Bear Creek Rd, Walnut Shade - Hamon, Chris - Chris Hammon - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.732Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cnhbsiq7cfevqk0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.839Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Suiter, Darron",
+ "Contact_Notes": "",
+ "Contact_Person": "Darron Suiter ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1007 N 22nd Ave, Ozark",
+ "Job_Codes": "3966 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1007 N 22nd Ave, Ozark - Suiter, Darron",
+ "Job_Name": "Patch",
+ "Job_Number": "3966",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3966 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/25 1:40 PM Beth Cardoza Assuming not awarded---\n01/17/25 2:19 PM Beth Cardoza Waiting for client to send photos---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176931531",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3966 - Patch - 1007 N 22nd Ave, Ozark - Suiter, Darron - Darron Suiter - 4176931531",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.781Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s50lrowanetvmtf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:40.942Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bottoms, Pilar",
+ "Contact_Notes": "",
+ "Contact_Person": "Pilar ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lot 2 Millridge Ct, Nixa",
+ "Job_Codes": "3965 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3965%20%28Lot%202%20Millridge%20Ct%2C%20Nixa%29%20%28Bottoms%2C%20Pilar%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Lot 2 Millridge Ct, Nixa - Bottoms, Pilar",
+ "Job_Name": "N/A",
+ "Job_Number": "3965",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3965 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/08/25 12:35 PM Beth Cardoza The window to be drywall on 3 sides & the texture we are thinking of the stomp knockdown on ceilings & walls.\n\nHe found us on the internet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "3039296590",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3965 - N/A - Lot 2 Millridge Ct, Nixa - Bottoms, Pilar - Pilar - 3039296590",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.837Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oa64qcog50w1ws6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.042Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rosenthal, Monica",
+ "Contact_Notes": "",
+ "Contact_Person": "Monica Rosenthal ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4505 Irish Ivy, Spfd",
+ "Job_Codes": "3964 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2FSmall%20jobs%2F3964%20Bath%20%284505%20Irish%20Ivy%2C%20Spfd%29%20%28Rosenthal%2C%20Monica%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bath - 4505 Irish Ivy, Spfd - Rosenthal, Monica",
+ "Job_Name": "Bath",
+ "Job_Number": "3964",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3964 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/18/25 11:06 AM Beth Cardoza Assumed not awarded. She has not been responsive to our attempts to follow up.---\n01/08/25 12:34 PM Beth Cardoza Bad weather delayed Eddie from viewing it. Walk has not yet been rescheduled---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178386445",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3964 - Bath - 4505 Irish Ivy, Spfd - Rosenthal, Monica - Monica Rosenthal - 4178386445",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.900Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ch0alxvsdjckay1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.154Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3110 E Cherry St. Springfield, MO 65802",
+ "Job_Codes": "3963 - Bark Yard",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3963%20Bark%20Yard%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bark Yard - 3110 E Cherry St. Springfield, MO 65802 - Construct",
+ "Job_Name": "Bark Yard",
+ "Job_Number": "3963",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3963 - Bark Yard",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "Custom Interiors won the bid---02/07/25 12:11 PM Regina McClain Spoke to Seth // Construct won the job // We did not win the bid.---\n01/30/25 11:28 AM Regina McClain Follow up email sent to Seth on 01.30.2025.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3963 - Bark Yard - 3110 E Cherry St. Springfield, MO 65802 - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:51.949Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qyt5llltjl07d4w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.271Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6083 S Clay, Spfd",
+ "Job_Codes": "3962 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3962%20%5BR%5D%20%20%286083%20S%20%20Clay%2C%20Spfd%29%20%28Colton%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 6083 S Clay, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3962",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3962 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/02/25 12:22 PM Beth Cardoza CO: Lite over kitchen isle moved\n\nBedroom ceiling small hole---\n01/14/25 8:41 AM david cardoza 11,672 sf\nSecond stock 288\nNo leftover\nHang 11,960---\n01/08/25 12:12 PM Beth Cardoza My take off from plans does not match material yard board count. Might wait till after hang to send quote?---\n12/27/24 6:41 PM Beth Cardoza Ready next week or so? Just got plans today, but haven't had a chance to create a quote. footage is in voxer job chat.---\n12/27/24 12:17 PM Beth Cardoza The back patio ceiling will be sheetrocked as well. We have enclosed the patio. Bill took measurements. I should be getting inspections next week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172992407",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3962 - N/A - 6083 S Clay, Spfd - Colton, Jim - Jim Colton - 4172992407",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.005Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "016a60ho1y47fm0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.382Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1111 McIntosh Circle, Joplin, MO 64804.",
+ "Job_Codes": "3961 - Freeman Professional Development Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3961%20Freeman%20PDR&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Freeman Professional Development Renovation - 1111 McIntosh Circle, Joplin, MO 64804. - DeWitt",
+ "Job_Name": "Freeman Professional Development Renovation",
+ "Job_Number": "3961",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3961 - Freeman Professional Development Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3961 - Freeman Professional Development Renovation - 1111 McIntosh Circle, Joplin, MO 64804. - DeWitt - Kim Lucas - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.065Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ap5m0yowoashvim",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.490Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Kelsey",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelsey Smith ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4648 S Warren, Sp",
+ "Job_Codes": "3960 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3960%20Patch%20%284648%20S%20Warren%2C%20Sp%29%20%28Smith%2C%20Kelsey%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Patch - 4648 S Warren, Sp - Smith, Kelsey",
+ "Job_Name": "Patch",
+ "Job_Number": "3960",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3960 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177711301",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3960 - Patch - 4648 S Warren, Sp - Smith, Kelsey - Kelsey Smith - 4177711301",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.124Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jmz2g04mmd10anm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.602Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highland Springs",
+ "Job_Codes": "3959 - Lough",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3959%20%5BR%5D%20Lough%20%28Highland%20Springs%29%20%28Weber%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lough - Highland Springs - Weber",
+ "Job_Name": "Lough",
+ "Job_Number": "3959",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3959 - Lough",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "09/18/25 12:44 PM Beth Cardoza CO: 18 linear ft of quite rock in basement between living area and pool room---\n09/26/25 2:48 PM Beth Cardoza From Brian at FBM regarding pricing quiet rock:\n\nI can get it, but it is very difficult. Is this for the Thompson quick lube? If it is everyone else is bidding national Gypsum sound break. It meets all the same specs. That wi\n09/18/25 12:43 PM Beth Cardoza To update on window wraps: 625' tearaway. Didn't see beams though---\n09/15/25 1:33 PM Beth Cardoza CO: They are now saying that they want Drywall returns on all the windows and possibly they are going to want the smaller radius bullnose on everything instead of regular bull nuts. Presents a couple questions that I have to \n09/12/25 1:25 PM david cardoza Coldwall stock 1,524\nLeftover after coldwall Y712\n13-12’ sheets\nRemainder of the stock 26,552---\n09/11/25 8:18 AM david cardoza Phil measured 26,552---\n08/13/25 10:38 AM Beth Cardoza Estimate needs confirming and sending---\n01/02/25 7:41 AM Beth Cardoza Need price for 5/8\" everywhere. Deadline Jan 6th---\n01/17/25 2:18 PM Beth Cardoza Rick gave a verbal approximate price over the phone. I've created an estimate to match but have not sent. needs review---\n12/20/24 1:04 PM Beth Cardoza The finish will be the same as Teeter job. Bullnose all corners no transitions. Hand texture like Teeter. Let me know if you need more information. \n\nThanks.\nBryon Weber---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3959 - Lough - Highland Springs - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.181Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6swftgo72uwfl0z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.723Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McConnell reference",
+ "Contact_Notes": "",
+ "Contact_Person": "?",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3958 - Smooth House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Smooth House - - McConnell reference",
+ "Job_Name": "Smooth House",
+ "Job_Number": "3958",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3958 - Smooth House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "03/Y71404/25 4:15 PM Beth Cardoza Never came through that I'm aware of---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3958 - Smooth House - - McConnell reference - ? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.240Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h3eai8iwvms5zmf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.831Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Cowherd",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2759 Meadowlark, Spfd",
+ "Job_Codes": "3957 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3957%20%20%282759%20Meadowlark%2C%20Spfd%29%20%28Cowherd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 2759 Meadowlark, Spfd - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3957",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3957 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/18/25 9:17 AM david cardoza Prestock for firewall in attic ?\n( figure 448 ft per side actual hang\n448 x 2 sides= 896)\n\nRegular stock 15,344---\n02/18/25 1:03 PM Beth Cardoza 14-8' x 5/8\" = 448 sqft of 5/8\" \n\nYour walkthrough notes said this was the total stock for attic firewall.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3957 - N/A - 2759 Meadowlark, Spfd - Cowherd - Cowherd - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.293Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mgevtqbap1ckogs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:41.937Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "400 S. Bus. 65 Branson",
+ "Job_Codes": "3956 - Central Bank",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3956%20Central%20Bank&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Central Bank - 400 S. Bus. 65 Branson - A2D",
+ "Job_Name": "Central Bank",
+ "Job_Number": "3956",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3956 - Central Bank",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3956 - Central Bank - 400 S. Bus. 65 Branson - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.348Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tvi7bony6v62ed9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.130Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ethridge, Tucker",
+ "Contact_Notes": "",
+ "Contact_Person": "Tucker",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1721 S State Hwy 125, Rogersville",
+ "Job_Codes": "3955 - Popcorn",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 1721 S State Hwy 125, Rogersville - Ethridge, Tucker",
+ "Job_Name": "Popcorn",
+ "Job_Number": "3955",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3955 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/08/25 11:47 AM Beth Cardoza Assuming not interested since he didn't respond---\n12/27/24 6:38 PM Beth Cardoza Sent an email mentioning a price range and that it would be a little while before we could get to it to find out if he was still interested. Haven't heard back yet.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178615746",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3955 - Popcorn - 1721 S State Hwy 125, Rogersville - Ethridge, Tucker - Tucker - 4178615746",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "on7xg6y49rvc5dr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.229Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Linear Fox",
+ "Contact_Notes": "",
+ "Contact_Person": "Corey ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4022 S Loan Pine Ave, Spfd",
+ "Job_Codes": "3954 - Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office - 4022 S Loan Pine Ave, Spfd - Linear Fox",
+ "Job_Name": "Office",
+ "Job_Number": "3954",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3954 - Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8167872869",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3954 - Office - 4022 S Loan Pine Ave, Spfd - Linear Fox - Corey - 8167872869",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.456Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zky8l3h5m7qlq31",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.329Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Randy",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy Smith ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3953 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - - Smith, Randy",
+ "Job_Name": "Repair",
+ "Job_Number": "3953",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3953 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/11/25 1:05 PM Beth Cardoza Haven't been able to re-connect---\n01/08/25 12:32 PM Beth Cardoza Supposed to call in January and planned to give address at that time. No hurry. So just waiting for a call back.---\n01/08/25 11:46 AM Beth Cardoza I can't get comment on what is going on with this job. It was TM, ready now job December 13th and never got on the calendar and never got an address or communication other than Eddie turning it in at that time.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178608174",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3953 - Repair - - Smith, Randy - Randy Smith - 4178608174",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.508Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ki4u5gs5oye4uwy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.446Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cahill",
+ "Contact_Notes": "",
+ "Contact_Person": "Andy Keener ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "akeener@cahillconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 South Glenstone Battlefield Mall",
+ "Job_Codes": "3952 - Offline",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3952%20Offline%20%28Battlefield%20Mall%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Offline - 2825 South Glenstone Battlefield Mall - Cahill",
+ "Job_Name": "Offline",
+ "Job_Number": "3952",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3952 - Offline",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6144428570",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3952 - Offline - 2825 South Glenstone Battlefield Mall - Cahill - Andy Keener - 6144428570",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.556Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7e0h5kevz8b5w8p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.558Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Sunrise Cove Ln, Lampe",
+ "Job_Codes": "3951 - Rob & Jacque Pitts",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3951%20Rob%20%26%20Jacque%20Pitts%20%28Sunrise%20Cove%20Ln%2C%20Lampe%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Rob & Jacque Pitts - Sunrise Cove Ln, Lampe - Pitts, Doug",
+ "Job_Name": "Rob & Jacque Pitts",
+ "Job_Number": "3951",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3951 - Rob & Jacque Pitts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Hold",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/25 2:13 PM Beth Cardoza on hold---\n12/12/24 1:46 PM Beth Cardoza Classic hand with little texture or smooth texture. (orange in storage, closets, ect.)\n\nSquare corners.\n\nWindows will have trim around them.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3951 - Rob & Jacque Pitts - Sunrise Cove Ln, Lampe - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.604Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xjicqrg850oqyp1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:38.952Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ann",
+ "Contact_Notes": "",
+ "Contact_Person": "Ann ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3950 - Men's Center Nursing Station",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2FSmall%20jobs%2F3950%20%5BC%5D%20Men%27s%20Center%20Nursing%20Station%20%5BAnn%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Men's Center Nursing Station - - Ann",
+ "Job_Name": "Men's Center Nursing Station",
+ "Job_Number": "3950",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3950 - Men's Center Nursing Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174967472",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3950 - Men's Center Nursing Station - - Ann - Ann - 4174967472",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.652Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7dbc6t5lxy7g2gg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.794Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cburke@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3805 S. Kansas Expressway, Unit B,",
+ "Job_Codes": "3949 - CoxHealth Chesterfield Clinic Expansion",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3949%20Cox%20Health%20Chesterfield%20Clinic%20Expansion&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "CoxHealth Chesterfield Clinic Expansion - 3805 S. Kansas Expressway, Unit B, - DeWitt",
+ "Job_Name": "CoxHealth Chesterfield Clinic Expansion",
+ "Job_Number": "3949",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3949 - CoxHealth Chesterfield Clinic Expansion",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/12/25 12:27 PM Regina McClain Not awarded - DeWitt did not win the bid. Dynamic Construction came in lower.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179885787",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3949 - CoxHealth Chesterfield Clinic Expansion - 3805 S. Kansas Expressway, Unit B, - DeWitt - Chris Burke - 4179885787",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.700Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ynvnbtg5xhqkt1e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:42.918Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Southren Brothers Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Crystal Eubanks",
+ "Docs_Uploaded": true,
+ "Due_Date": "2024-12-20 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "crystal.eubanks@sobroco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3530 W Republic Rd, Spfd",
+ "Job_Codes": "3948 - Repulic Road Townhomes",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3948%20Republic%20Road%20Townhomes%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repulic Road Townhomes - 3530 W Republic Rd, Spfd - Southren Brothers Construct",
+ "Job_Name": "Repulic Road Townhomes",
+ "Job_Number": "3948",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3948FX - Repulic Road Townhomes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "---12/18/24 10:17 AM Beth Cardoza Orange peel walls and ceilings.---\n12/18/24 9:33 AM Beth Cardoza Due 12/20 4pm---\n12/17/24 12:49 PM Beth Cardoza A2D is also bidding on this---",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3948FX - Repulic Road Townhomes - 3530 W Republic Rd, Spfd - Southren Brothers Construct - Crystal Eubanks - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.751Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zfzzibkllbimpvz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.054Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5106 State Hwy Y, Galena",
+ "Job_Codes": "3947 - Miller",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3947%20%5BR%5D%20Miller%20%285106%20State%20Hwy%20Y%2C%20Galena%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Miller - 5106 State Hwy Y, Galena - Pitts, Doug",
+ "Job_Name": "Miller",
+ "Job_Number": "3947",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3947 - Miller",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/25 2:13 PM Beth Cardoza decided not to build---\n12/12/24 1:45 PM Beth Cardoza Lets assume:\nWhat ever you would do in a “builders grade” house on walls and ceilings.\n\nSquare corners\n\nDrywall wrap 3 sides with wood sill.---\n12/09/24 2:57 PM Beth Cardoza Floor Footages:\nConditioned Space: 3419\n\nGarage: 903\n\nStorage: 593---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3947 - Miller - 5106 State Hwy Y, Galena - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.808Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rjywre2jnnkzkiq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.230Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Care Ave & Gregg Rd, Nixa",
+ "Job_Codes": "3946 - Nixa Townhomes",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3946%20%5BR%5D%20Nixa%20Townhomes%20%28Care%20Ave%20%26%20Gregg%20Rd%2C%20Nixa%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixa Townhomes - Care Ave & Gregg Rd, Nixa - Construct",
+ "Job_Name": "Nixa Townhomes",
+ "Job_Number": "3946",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3946 - Nixa Townhomes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/12/25 9:54 AM Beth Cardoza Re-bid plans received the other day---\n12/17/24 6:13 PM Beth Cardoza I expect it being ready for drywall around late July.\n\nI asked about texture, but I would assume a smooth level 4.\n\nThese are all new construction\n\nFrom the partition types it appears the single layer of 5/8” rock on party wa",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3946 - Nixa Townhomes - Care Ave & Gregg Rd, Nixa - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.864Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ve1mcws6czv05mw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.398Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sinclair, Laura",
+ "Contact_Notes": "",
+ "Contact_Person": "Laura Sinclair ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Gaslight Dr, Spfd",
+ "Job_Codes": "3945 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - Gaslight Dr, Spfd - Sinclair, Laura",
+ "Job_Name": "Repair",
+ "Job_Number": "3945",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3945 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/13/24 11:51 AM Beth Cardoza Eddie viewing Tuesday 12/17---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177736445",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3945 - Repair - Gaslight Dr, Spfd - Sinclair, Laura - Laura Sinclair - 4177736445",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.908Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8zx1yghyisdunbt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.566Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Epps, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark (417) 350-4452 Julie (417) 350-4453",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3605 E Stanford St, Spfd",
+ "Job_Codes": "3944 - Ceiling Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling Patch - 3605 E Stanford St, Spfd - Epps, Mark",
+ "Job_Name": "Ceiling Patch",
+ "Job_Number": "3944",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3944 - Ceiling Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3944 - Ceiling Patch - 3605 E Stanford St, Spfd - Epps, Mark - Mark (417) 350-4452 Julie (417) 350-4453 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:52.960Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6g3jbz8dd534lvl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.738Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Garwood, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Garwood ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1271 E Sunset Ct, Spfd",
+ "Job_Codes": "3943 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1271 E Sunset Ct, Spfd - Garwood, John",
+ "Job_Name": "Repairs",
+ "Job_Number": "3943",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3943 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/15/25 2:50 PM Beth Cardoza Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173437498",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3943 - Repairs - 1271 E Sunset Ct, Spfd - Garwood, John - John Garwood - 4173437498",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.020Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nvuoh41zmrwnz4n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.866Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holliday, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Holliday ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3 Willow Ln, Kimberling City",
+ "Job_Codes": "3942 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3942%20%283%20Willow%20Ln%2C%20Kimberling%20City%29%20%28Holliday%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 3 Willow Ln, Kimberling City - Holliday, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3942",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3942 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/06/24 9:28 AM Beth Cardoza the ceiling in the great room and the entire garage area does not get drywall.---\n12/06/24 9:27 AM Beth Cardoza This shop house has about 2000 floor sqft and then a bonus room above with another 1500+ sqft. It will be ready in a couple of weeks. Smooth, 4 way window wraps, bullnose. He has plans for the main floor but not the bonus roo\n12/06/24 9:27 AM Beth Cardoza Ann Ferguson reference---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175931765",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3942 - N/A - 3 Willow Ln, Kimberling City - Holliday, Jim - Jim Holliday - 4175931765",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.080Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h7he8egvidahjvp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:43.989Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hoey Homebuilders",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1442 E Powell St, Spfd",
+ "Job_Codes": "3941 - Popcorn",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3941%20%5BR%5D%20Popcorn%20%281442%20E%20Powell%20St%2C%20Spfd%29%20%28Hoey%20Homebuilders%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Popcorn - 1442 E Powell St, Spfd - Hoey Homebuilders",
+ "Job_Name": "Popcorn",
+ "Job_Number": "3941",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3941 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173004001",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3941 - Popcorn - 1442 E Powell St, Spfd - Hoey Homebuilders - Bill Hoey - 4173004001",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.132Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fwmzei6jnz45mp5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.098Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Wayne",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "304 Warner Rd, Galena",
+ "Job_Codes": "3940 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 304 Warner Rd, Galena - Weber",
+ "Job_Name": "Repair",
+ "Job_Number": "3940",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3940 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3940 - Repair - 304 Warner Rd, Galena - Weber - Wayne - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.185Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "obe2d2s9rq02m3o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.206Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brooks, Lydia",
+ "Contact_Notes": "",
+ "Contact_Person": "Lydia Brooks ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1098 N Pebble Creek Dr, Nixa",
+ "Job_Codes": "3939 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1098 N Pebble Creek Dr, Nixa - Brooks, Lydia",
+ "Job_Name": "Repairs",
+ "Job_Number": "3939",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3939 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176932120",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3939 - Repairs - 1098 N Pebble Creek Dr, Nixa - Brooks, Lydia - Lydia Brooks - 4176932120",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.236Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hlkhu96tsnaows5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.309Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Terry Pearce ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3938 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Spfd - Temple Remodeling",
+ "Job_Name": "Remodel",
+ "Job_Number": "3938",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3938 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/13/24 11:49 AM Beth Cardoza Eddie to walk on the 18th or 19th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178669965",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3938 - Remodel - Spfd - Temple Remodeling - Terry Pearce - 4178669965",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.285Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bj710xmtjfuif7h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.410Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "411 Stillwood, Branson",
+ "Job_Codes": "3937 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3937%20%5BR%5D%20%20%28411%20Stillwood%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 411 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3937",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3937 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/11/24 10:28 AM david cardoza Stock 9,124\nLeftover 192\nHang 8,932---\n12/03/24 5:18 PM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3937 - N/A - 411 Stillwood, Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.333Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xs4wr0b36t67aqo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.518Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ellington, Dave",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave Ellington",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "702 S 11th Ave, Ozark",
+ "Job_Codes": "3936 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 702 S 11th Ave, Ozark - Ellington, Dave",
+ "Job_Name": "Remodel",
+ "Job_Number": "3936",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3936 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/15/25 2:37 PM Beth Cardoza Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173535637",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3936 - Remodel - 702 S 11th Ave, Ozark - Ellington, Dave - Dave Ellington - 4173535637",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.384Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u7wemdgel56lunw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.623Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Touche Design",
+ "Contact_Notes": "",
+ "Contact_Person": "Touche",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3935 - JRC Fireplace",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "JRC Fireplace - - Touche Design",
+ "Job_Name": "JRC Fireplace",
+ "Job_Number": "3935",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3935FXEX - JRC Fireplace",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3935FXEX - JRC Fireplace - - Touche Design - Touche - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.440Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gdr8hwucn2s99xm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.738Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Christensen, Adam",
+ "Contact_Notes": "",
+ "Contact_Person": "Adam Christensen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5455 S Franklin Ave, Spfd",
+ "Job_Codes": "3934 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2FSmall%20jobs%2F3934%20%5BR%5D%20Cracks%20%285455%20S%20Franklin%20Ave%2C%20Spfd%29%20%28Christensen%2C%20Adam%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cracks - 5455 S Franklin Ave, Spfd - Christensen, Adam",
+ "Job_Name": "Cracks",
+ "Job_Number": "3934",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3934 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3145666895",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3934 - Cracks - 5455 S Franklin Ave, Spfd - Christensen, Adam - Adam Christensen - 3145666895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.492Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "269bsf1y2clrthq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:44.840Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": true,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "930 Millwood Dr, Reeds Spring",
+ "Job_Codes": "3933 - Teeter",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3933%20%5BR%5D%20Teeter%20%28930%20Millwood%20Dr%2C%20Reeds%20Spring%29%20%28Weber%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Teeter - 930 Millwood Dr, Reeds Spring - Weber",
+ "Job_Name": "Teeter",
+ "Job_Number": "3933",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3933 - Teeter",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/23/25 10:59 AM Beth Cardoza CO: extra for can lights---\n08/15/25 10:33 AM Beth Cardoza Regarding the mud rings around all the can lights\nWe do not have to install those now. Apparently the electrician will do it or somebody else. But we still have to mud them and finish them.---\n08/27/25 1:39 PM Beth Cardoza I just figured $12 per light. We seem to be doing fine on the job.---\n09/15/25 4:33 PM Beth Cardoza Decided we didn't need to charge extra---\n08/13/25 8:09 AM david cardoza Stock 21,308\nSecond stock 760\nTotal Stock 22,068\nLeftover 852\nHang 21,216---\n07/21/25 11:46 AM Beth Cardoza Ready in a couple of weeks---\n12/02/24 2:08 PM Beth Cardoza There is no vault in the master bath or the kitchen. There is going to be a vault in the living room, but it is not designed yet. As a place holder you can figure 8/12 pitch going up to flat. See attached pic. There are no ar",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3933 - Teeter - 930 Millwood Dr, Reeds Spring - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.542Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8xgfedas6brdw6a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:40.216Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3303 W. Division Spfd",
+ "Job_Codes": "3932 - Animal Shelter",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3932%20A2D%20Animal%20Shelter%20Spfd&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Animal Shelter - 3303 W. Division Spfd - A2D",
+ "Job_Name": "Animal Shelter",
+ "Job_Number": "3932",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3932 - Animal Shelter",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3932 - Animal Shelter - 3303 W. Division Spfd - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.600Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r2a6ica67pyoatu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.054Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan?",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2555 E Livingston, Spfd",
+ "Job_Codes": "3931 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2555 E Livingston, Spfd - A2D",
+ "Job_Name": "N/A",
+ "Job_Number": "3931",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3931 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3931 - N/A - 2555 E Livingston, Spfd - A2D - Nathan? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.659Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "eifnop7gtte78ru",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.174Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "263 Buccaneer Blvd, Branson",
+ "Job_Codes": "3930 - Branson Junior High Activity Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3930%20Nabholtz%20%28Branson%20Junior%20High%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Junior High Activity Center - 263 Buccaneer Blvd, Branson - Nabholtz",
+ "Job_Name": "Branson Junior High Activity Center",
+ "Job_Number": "3930",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3930 - Branson Junior High Activity Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/31/25 8:52 AM Regina McClain Received response - Out Bid, Not awarded.---\n01/30/25 11:32 AM Regina McClain Follow Up email sent to Jarrett on 01.30.2025.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3930 - Branson Junior High Activity Center - 263 Buccaneer Blvd, Branson - Nabholtz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.712Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h6u1nuohwgi5qrd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.279Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3929 - Duplicate",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Duplicate - - Weber",
+ "Job_Name": "Duplicate",
+ "Job_Number": "3929",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3929 - Duplicate",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3929 - Duplicate - - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.756Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lxeyi3u2xjzpxx6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.399Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Assemblies of God",
+ "Contact_Notes": "",
+ "Contact_Person": "Sam Wassam",
+ "Docs_Uploaded": true,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "swassam@ag.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1445 N. Boonville Springfield",
+ "Job_Codes": "3928 - Prayer Center - Office/Warehouse",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3928 - Prayer Center Office",
+ "Job_Full_Name": "Prayer Center - Office/Warehouse - 1445 N. Boonville Springfield - Assemblies of God",
+ "Job_Name": "Prayer Center - Office/Warehouse",
+ "Job_Number": "3928",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3928FXEX - Prayer Center - Office/Warehouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178444007",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3928FXEX - Prayer Center - Office/Warehouse - 1445 N. Boonville Springfield - Assemblies of God - Sam Wassam - 4178444007",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.804Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b3cz3ypjprc6jqe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:40.623Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cooper, Deni",
+ "Contact_Notes": "",
+ "Contact_Person": "Deni Cooper ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7262 E State Hwy D, Rogersville",
+ "Job_Codes": "3927 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2FSmall%20jobs%2F3927%20%5BR%5D%20Rehab%20%287262%20E%20State%20Hwy%20D%2C%20Rogersville%29%20%28Cooper%2C%20Deni%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Rehab - 7262 E State Hwy D, Rogersville - Cooper, Deni",
+ "Job_Name": "Rehab",
+ "Job_Number": "3927",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3927 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/16/24 10:46 AM Beth Cardoza Job start Monday 12/23---\n11/20/24 10:18 AM Beth Cardoza Eddie viewing Monday morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173505937",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3927 - Rehab - 7262 E State Hwy D, Rogersville - Cooper, Deni - Deni Cooper - 4173505937",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.861Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0f4075bgv8p97qs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.627Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Schaefer Dr, Branson",
+ "Job_Codes": "3926 - The Falls",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3926%20%5BC%5D%20The%20Falls%20%28300%20Schaefer%20Dr%2C%20Branson%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Falls - 300 Schaefer Dr, Branson - Construct",
+ "Job_Name": "The Falls",
+ "Job_Number": "3926",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3926 - The Falls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/20/25 4:43 PM Beth Cardoza CO: See Voxes from Rick 3/20/25---\n02/11/25 12:53 PM Beth Cardoza CO: added patches see voxer photos 2/11---\n01/30/25 2:01 PM Beth Cardoza Possible COs: added wall, added patches later, but touch up instead of skim smooth some areas too. Decide at the end if we need to charge extra---\n01/07/25 5:12 PM Beth Cardoza Lockbox on the railing to the right of the door: 4998---\n01/03/25 4:31 PM Beth Cardoza Needs re-bid. Rick viewing Monday or maybe Tuesday.---\n12/19/24 4:10 PM Beth Cardoza Likely awarded. working on schedule but looking at grid 1/7 for 6 days and start drywall 1/20 for 10 days.---\n11/21/24 2:31 PM Beth Cardoza will receive new hardlid ceilings with smooth finish. I believe The Falls is 10’. will have the existing celings demoed completely. The falls is a drop ceilings so it would need a gyp-grid to attach the new ceilings to.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3926 - The Falls - 300 Schaefer Dr, Branson - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.912Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pmtd1syxnfn1gw4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.743Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Schaefer Dr, Branson",
+ "Job_Codes": "3925 - Schaefer Ridge",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3925%20Schaefer%20Ridge%20%28300%20Schaefer%20Dr%2C%20Branson%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Schaefer Ridge - 300 Schaefer Dr, Branson - Construct",
+ "Job_Name": "Schaefer Ridge",
+ "Job_Number": "3925",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3925 - Schaefer Ridge",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/19/24 4:09 PM Beth Cardoza Not currently awarded to Construct, but may come back up in the future---\n11/21/24 2:32 PM Beth Cardoza will receive new hardlid ceilings with smooth finish. Schaefer is 8’ and will have the existing celings demoed completely. Schaefer has existing wood joists to re-attach to.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3925 - Schaefer Ridge - 300 Schaefer Dr, Branson - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:53.972Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4tx7sszspr9ifle",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.859Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5538 S FR 181, Spfd",
+ "Job_Codes": "3924 - Anya OReilly spa",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3924%20%5BR%5D%20Anya%20OReilly%20spa%20%28%29%20%28Weber%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Anya OReilly spa - 5538 S FR 181, Spfd - Weber",
+ "Job_Name": "Anya OReilly spa",
+ "Job_Number": "3924",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3924 - Anya OReilly spa",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/25 1:36 PM Beth Cardoza CO: Dave I am ready to have the sheet rock patched in the basement at Anya O’Reilly’s---\n03/05/25 10:10 AM Beth Cardoza CO: Well the guys had to bust out this corner to fit the tub in at Anya O’Reilly’s. Do you think there’s any way to get this small piece of corner bead and sheet rock patched today or in the morning by any chance?\nWayne---\n01/14/25 2:54 PM Beth Cardoza Possible COs?: have to hand pack drywall. Area behind bar counter on hold---\n01/14/25 2:52 PM Beth Cardoza Code to gate At fr 181\n\n#1010\n\nLockbox code to enter basement \n2424---\n11/19/24 1:40 PM Beth Cardoza Wood frame, 8 foot ceiling, wet board around shower, tub, vanity and toilet. There is a soffit over the tub covering duct work. I have a site meeting Wednesday at 1 pm if you want to stop in and have a look. \nThanks Bryon---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3924 - Anya OReilly spa - 5538 S FR 181, Spfd - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.032Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vvau81tlxh0vl6t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:45.982Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "TDS Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Teamchris@tdsconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3308 S. Glenstone",
+ "Job_Codes": "3923 - Total Wine and More",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3923%20TDS%20Total%20Wine%20and%20More&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Total Wine and More - 3308 S. Glenstone - TDS Construction",
+ "Job_Name": "Total Wine and More",
+ "Job_Number": "3923",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3923 - Total Wine and More",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9417956100",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3923 - Total Wine and More - 3308 S. Glenstone - TDS Construction - - 9417956100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.079Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kbxms86p5pdyygm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.098Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Struthers, Todd",
+ "Contact_Notes": "",
+ "Contact_Person": "Todd Struthers",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "874 E Celtic Ct, Nixa",
+ "Job_Codes": "3922 - Dormer",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3922%20Dormer%20%28874%20E%20Celtic%20Ct%2C%20Nixa%29%20%28Struthers%2C%20Todd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Dormer - 874 E Celtic Ct, Nixa - Struthers, Todd",
+ "Job_Name": "Dormer",
+ "Job_Number": "3922",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3922 - Dormer",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3922 - Dormer - 874 E Celtic Ct, Nixa - Struthers, Todd - Todd Struthers - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.133Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o1x4u9e0n6iowf2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.210Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nixa Schools",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3921 - Building 2",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3921%20Building%202%20%28%29%20%28Nixa%20Schools%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Building 2 - - Nixa Schools",
+ "Job_Name": "Building 2",
+ "Job_Number": "3921",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3921 - Building 2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177246390",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3921 - Building 2 - - Nixa Schools - Robert - 4177246390",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.184Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bq8th45l4usx8jf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.330Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "True North",
+ "Contact_Notes": "",
+ "Contact_Person": "Brittany Porter ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "brittanyp@truenorthgc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2500 Lusk Drive, Suite 102, Neosho, MO 64850",
+ "Job_Codes": "3920 - Pizza Hut",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3920%20%20True%20North%20%28Pizza%20Hut%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pizza Hut - 2500 Lusk Drive, Suite 102, Neosho, MO 64850 - True North",
+ "Job_Name": "Pizza Hut",
+ "Job_Number": "3920",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3920 - Pizza Hut",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3145903158",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3920 - Pizza Hut - 2500 Lusk Drive, Suite 102, Neosho, MO 64850 - True North - Brittany Porter - 3145903158",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.237Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2tb726mv72ie6q0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.450Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Schaefer Drive Branson, MO 65616 and 3140 Falls Parkway Branson, MO 65616",
+ "Job_Codes": "3919 - Schaefer Ridge and Thrive at The Falls",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3919%20Construct%20%28Thrive%20Communities%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Schaefer Ridge and Thrive at The Falls - 300 Schaefer Drive Branson, MO 65616 and 3140 Falls Parkway Branson, MO 65616 - Construct",
+ "Job_Name": "Schaefer Ridge and Thrive at The Falls",
+ "Job_Number": "3919",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3919 - Schaefer Ridge and Thrive at The Falls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3919 - Schaefer Ridge and Thrive at The Falls - 300 Schaefer Drive Branson, MO 65616 and 3140 Falls Parkway Branson, MO 65616 - Construct - Seth - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.284Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nn6pib924b9s7tz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.569Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove",
+ "Contact_Notes": "",
+ "Contact_Person": "David",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Cape Fair",
+ "Job_Codes": "3918 - Tbar",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Tbar - Cape Fair - Oak Grove",
+ "Job_Name": "Tbar",
+ "Job_Number": "3918",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3918 - Tbar",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178384170",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3918 - Tbar - Cape Fair - Oak Grove - David - 4178384170",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.336Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j1xjlnfmlun68r7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.686Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kim City",
+ "Job_Codes": "3917 - Kerr Lake",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3917%20Kerr%20Lake%20%28%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kerr Lake - Kim City - Krueger, Paul",
+ "Job_Name": "Kerr Lake",
+ "Job_Number": "3917",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3917 - Kerr Lake",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/25 11:57 AM Beth Cardoza Paul's update: bid approval & start up pending---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3917 - Kerr Lake - Kim City - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.385Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vr4nuw5shqt3vgj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.790Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3916 - Addotta",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3916%20Addotta%20%28%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Addotta - - Krueger, Paul",
+ "Job_Name": "Addotta",
+ "Job_Number": "3916",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3916 - Addotta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/25 11:56 AM Beth Cardoza Paul's update: bid approval & start up pending---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3916 - Addotta - - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.436Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1ub6vimiehbwwhl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:46.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Edwards, Tiana",
+ "Contact_Notes": "",
+ "Contact_Person": "Tiana Edwards 417-598-9566 or 417-739-4367",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4 Rockdale Rd",
+ "Job_Codes": "3915.2 - Downstairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Downstairs - 4 Rockdale Rd - Edwards, Tiana",
+ "Job_Name": "Downstairs",
+ "Job_Number": "3915.2",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3915.2 - Downstairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/13/24 5:03 PM Beth Cardoza Will need estimate in the Spring---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3915.2 - Downstairs - 4 Rockdale Rd - Edwards, Tiana - Tiana Edwards 417-598-9566 or 417-739-4367 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.484Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aoyc0wovpcls9q3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.017Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Edwards, Tiana",
+ "Contact_Notes": "",
+ "Contact_Person": "Tiana Edwards 417-598-9566 or 417-739-4367",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4 Rockdale Rd",
+ "Job_Codes": "3915.1 - Upstairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Upstairs - 4 Rockdale Rd - Edwards, Tiana",
+ "Job_Name": "Upstairs",
+ "Job_Number": "3915.1",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3915.1 - Upstairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/05/25 10:52 AM Beth Cardoza project canceled. Decided they didn't have enough in the budget.---\n11/25/24 1:39 PM Beth Cardoza Gate code to Shinnecock is #2222---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3915.1 - Upstairs - 4 Rockdale Rd - Edwards, Tiana - Tiana Edwards 417-598-9566 or 417-739-4367 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.541Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qc8fet5ri64gfmu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.122Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ferguson, Ann",
+ "Contact_Notes": "",
+ "Contact_Person": "Ann Ferguson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "23 Midview Dr, Kim City",
+ "Job_Codes": "3914 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3914%20Basement%20%2823%20Midview%20Dr%2C%20Kim%20City%29%20%28Ferguson%2C%20Ann%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 23 Midview Dr, Kim City - Ferguson, Ann",
+ "Job_Name": "Basement",
+ "Job_Number": "3914",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3914 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178300175",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3914 - Basement - 23 Midview Dr, Kim City - Ferguson, Ann - Ann Ferguson - 4178300175",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.592Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m1aavlg65zsywco",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.238Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2171 S Hillside Dr, Spfd",
+ "Job_Codes": "3913 - Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3913%20Room%20%282171%20S%20Hillside%20Dr%2C%20Spfd%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Room - 2171 S Hillside Dr, Spfd - Concept2Completion",
+ "Job_Name": "Room",
+ "Job_Number": "3913",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3913 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/12/24 6:28 AM david cardoza Stock 912\nleftover 32\nHang 880---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3913 - Room - 2171 S Hillside Dr, Spfd - Concept2Completion - Tim Schwenke - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.640Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zkhlctcrnpfjy5q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.345Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Northstar Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephanie",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "stephanie@northstar.build",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "South Campbell",
+ "Job_Codes": "3912 - Wendys Spfd",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3912%20Wendys%20%28S%2E%20Campbell%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wendys Spfd - South Campbell - Northstar Construction",
+ "Job_Name": "Wendys Spfd",
+ "Job_Number": "3912",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3912 - Wendys Spfd",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175820177",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3912 - Wendys Spfd - South Campbell - Northstar Construction - Stephanie - 4175820177",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.693Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hd7myldybgbuxyc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.450Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Stonebridge Village, Branson",
+ "Job_Codes": "3911 - Wurtz",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3911%20Wurtz%20%28Stonebridge%20Village%2C%20Branson%29%20%28Ozark%20Mountain%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wurtz - Stonebridge Village, Branson - Ozark Mountain",
+ "Job_Name": "Wurtz",
+ "Job_Number": "3911",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3911 - Wurtz",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/11/24 3:54 PM Beth Cardoza This will be located in Stonebridge Village. The vault in the living room is detailed on the main floor plan section but there will be a soffit extending from the bottom of the vault along the fireplace wall that will need d",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3911 - Wurtz - Stonebridge Village, Branson - Ozark Mountain - David Herd - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.741Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jpifkuu6htzqj5p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.546Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbowen@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1000 North Boonville Ave",
+ "Job_Codes": "3910 - Greene County Courts Expansion",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3910%20Greene%20County%20Court%20Expansion&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Greene County Courts Expansion - 1000 North Boonville Ave - KCI",
+ "Job_Name": "Greene County Courts Expansion",
+ "Job_Number": "3910",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3910 - Greene County Courts Expansion",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3910 - Greene County Courts Expansion - 1000 North Boonville Ave - KCI - Brady Bowen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.809Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jm5xe95621owecp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.653Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zwicky, Holly",
+ "Contact_Notes": "",
+ "Contact_Person": "Holly ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4025 Keystone Rd, Reeds Spring",
+ "Job_Codes": "3909 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3909%20%20%284025%20Keystone%20Rd%2C%20Branson%20West%29%20%28Zwicky%2C%20Holly%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 4025 Keystone Rd, Reeds Spring - Zwicky, Holly",
+ "Job_Name": "N/A",
+ "Job_Number": "3909",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3909 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172949614",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3909 - N/A - 4025 Keystone Rd, Reeds Spring - Zwicky, Holly - Holly - 4172949614",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.868Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ladvshxo1owp23v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Quest Company",
+ "Contact_Notes": "",
+ "Contact_Person": "John Hood",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3081 FR 1160, Verona",
+ "Job_Codes": "3908 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3081 FR 1160, Verona - Quest Company",
+ "Job_Name": "Patches",
+ "Job_Number": "3908",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3908 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172990533",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3908 - Patches - 3081 FR 1160, Verona - Quest Company - John Hood - 4172990533",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.917Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3gheawlmoziihoa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.869Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Quest Company",
+ "Contact_Notes": "",
+ "Contact_Person": "John Hood ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "264 Greentown Rd, Buffalo",
+ "Job_Codes": "3907 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 264 Greentown Rd, Buffalo - Quest Company",
+ "Job_Name": "Remodel",
+ "Job_Number": "3907",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3907 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/15/25 2:41 PM Beth Cardoza Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172990533",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3907 - Remodel - 264 Greentown Rd, Buffalo - Quest Company - John Hood - 4172990533",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:54.969Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5lgo4pxp3o5o5nu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:47.974Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Kelsey",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelsey Smith ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7017 W Farm Road 124 Spfd",
+ "Job_Codes": "3906 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3906%20%5BS%5D%20Remodel%20%287017%20W%20Farm%20Road%20124%20%20Spfd%29%20%28Smith%2C%20Kelsey%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 7017 W Farm Road 124 Spfd - Smith, Kelsey",
+ "Job_Name": "Remodel",
+ "Job_Number": "3906",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3906 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/13/24 10:41 AM Beth Cardoza CO: added some additional items. See voxer notes/video Thursday 12/12---\n11/07/24 3:46 PM Beth Cardoza Going to meet Kelsey around 9:30-10 tomorrow and I’m meeting -Eddie---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177711301",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3906 - Remodel - 7017 W Farm Road 124 Spfd - Smith, Kelsey - Kelsey Smith - 4177711301",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.020Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "elpsw763vlgx0hx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.082Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kings Way, Branson",
+ "Job_Codes": "3905 - Smith",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3905%20Smith%20%28Kings%20Way%2C%20Branson%29%20%28Ozark%20Mountain%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Smith - Kings Way, Branson - Ozark Mountain",
+ "Job_Name": "Smith",
+ "Job_Number": "3905",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3905 - Smith",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/29/25 4:20 PM Beth Cardoza Job was held up with permitting but moving forward now!---\n11/06/24 5:58 PM Beth Cardoza THis will have 9' ceilings on all three floors, three way window wrap and square corners. Standard texture. On the sloped ceilings, let's figure those at a 4/12 pitch. The house is located on Kings Way in Branson.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3905 - Smith - Kings Way, Branson - Ozark Mountain - David Herd - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.069Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4xr6w4bkqgp93oq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.202Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "42 Buck Rd, Reeds Spring",
+ "Job_Codes": "3904 - Lorimore Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3904%20Lorimore%20Garage%20%2842%20Buck%20Rd%2C%20Reeds%20Spring%29%20%28Sutherland%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lorimore Garage - 42 Buck Rd, Reeds Spring - Sutherland Construction",
+ "Job_Name": "Lorimore Garage",
+ "Job_Number": "3904",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3904 - Lorimore Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/06/24 5:50 PM Beth Cardoza Orange peel on all of it. Just doing the estimate right now. If confirmed it will be in April\nWe will trim the windows out in wood---\n11/06/24 9:57 AM Beth Cardoza 45 minute drive. 30x38' garage with a bunch of windows.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175368445",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3904 - Lorimore Garage - 42 Buck Rd, Reeds Spring - Sutherland Construction - Angel Sutherland - 4175368445",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.128Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "txjacfc00g0o7q5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.314Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sheperd, Jerry",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Sheperd ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Saddlebrook",
+ "Job_Codes": "3903 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Saddlebrook - Sheperd, Jerry",
+ "Job_Name": "N/A",
+ "Job_Number": "3903",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3903 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9287130649",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3903 - N/A - Saddlebrook - Sheperd, Jerry - Jerry Sheperd - 9287130649",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.176Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z77azgc6up6d0s6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.438Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stacie Ramos ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark, MO",
+ "Job_Codes": "3902 - Ozarks Rehabilitation Hospital (BP5 - Building Shell)",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3902%20KCI%20Ozarks%20Rehabilition%20Hospital&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ozarks Rehabilitation Hospital (BP5 - Building Shell) - Ozark, MO - KCI",
+ "Job_Name": "Ozarks Rehabilitation Hospital (BP5 - Building Shell)",
+ "Job_Number": "3902",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3902 - Ozarks Rehabilitation Hospital (BP5 - Building Shell)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177202753",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3902 - Ozarks Rehabilitation Hospital (BP5 - Building Shell) - Ozark, MO - KCI - Stacie Ramos - 4177202753",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.224Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zwc240tuaghvv12",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.546Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Polk County",
+ "Job_Codes": "3901 - Hill",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3901%20Hill%20%28Polk%20County%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hill - Polk County - Concept2Completion",
+ "Job_Name": "Hill",
+ "Job_Number": "3901",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3901 - Hill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/31/24 1:58 PM Beth Cardoza Polk county 6 miles north of Willard---\n10/31/24 1:54 PM Beth Cardoza Please bid this out all interior orange peel wall. Window wraps. stomp ceiling. metal square corner. Thank you\nIs it possible to get this back by next Tuesday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3901 - Hill - Polk County - Concept2Completion - Tim Schwenke - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.276Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "41v7oinu1p2svjy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.654Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "119 Shinnecock Hills, Branson",
+ "Job_Codes": "3900 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3900%20%28119%20Shinnecock%20Hills%2C%20Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 119 Shinnecock Hills, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3900",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3900 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/05/25 10:08 AM Beth Cardoza One more patch---\n02/26/25 10:38 AM Beth Cardoza CO\n\nJob 3900\nOn Shinnecock \n\nThere’s about 1/2 dozen small patches biggest one being a double gang outlet. Custom texture. \nReady now.---\n11/13/24 8:22 AM david cardoza Stock 17,888\nAdditional stock for pocket doors 240\nTotal stock 18,128\nLeftover 96 (5/8\")\nLeftover 48 x 1/2\"\nHang to Angel ftg = 17,650---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3900 - N/A - 119 Shinnecock Hills, Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.325Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m8wuiv461fjfiu9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.759Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen McMillin",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "80 Artist Ln, Galena",
+ "Job_Codes": "3899 - ",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/3%20In%20Progress%20Residential/3899%20Paris-Eddy%20(Galena)%20(McMillin,%20Allen)?csf=1&web=1&e=xqNKwj",
+ "Job_Full_Name": " - 80 Artist Ln, Galena - McMillin, Allen",
+ "Job_Name": "",
+ "Job_Number": "3899",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3899 - ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/31/24 1:46 PM Beth Cardoza All square corners, sheetrock return all windows. Ceiling go's from 8' to 14' from front to back.---\n10/31/24 1:46 PM Beth Cardoza Location is Hideaway area Table Rock. Light texture. Should be ready in about three months.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3899 - - 80 Artist Ln, Galena - McMillin, Allen - Allen McMillin - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.385Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "60jq6n3sq7qkyhp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:42.901Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Victoria Ramsey",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "720 W Rivendale, Spfd",
+ "Job_Codes": "3898 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 720 W Rivendale, Spfd - Weber",
+ "Job_Name": "Repair",
+ "Job_Number": "3898",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3898 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3898 - Repair - 720 W Rivendale, Spfd - Weber - Victoria Ramsey - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.432Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "je163fzjvrxmhsj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:48.979Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Klement, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew Klement",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "375 Whisky Ridge Ln, Sparta",
+ "Job_Codes": "3897 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3897%20%20%28375%20Whisky%20Ridge%20Ln%2C%20Sparta%29%20%28Klement%2C%20Andrew%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 375 Whisky Ridge Ln, Sparta - Klement, Andrew",
+ "Job_Name": "N/A",
+ "Job_Number": "3897",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3897 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/25/25 9:48 AM Beth Cardoza Possible CO: 7 more door wraps with bullnose\nPossible CO: -$200 credit for no bullnose on the windows.---\n04/07/25 12:09 PM Beth Cardoza We quoted $50 per door verbally. We are sticking with it. I need a final count (apparently there may have been more added)---\n04/14/25 4:41 PM Beth Cardoza Total of 5 wraps. so 4 extra.---\n03/20/25 10:31 AM david cardoza Stock 9,568\nSecond stock 320\nFinal stock 560\nTotal stock 10,448\nNo Leftover---\n10/28/24 1:02 PM Beth Cardoza orange peel walls and knockdown orange peel ceilings with rounded corners and sheetrock wrapped windows. \n\nAttached are the plans but there are 2 modifications: First is we are building with 10 foot ceilings and not 9. Secon",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3897 - N/A - 375 Whisky Ridge Ln, Sparta - Klement, Andrew - Andrew Klement - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.476Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4wp1dt47nijc3du",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.086Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Donco3",
+ "Contact_Notes": "",
+ "Contact_Person": "Aaron York ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "aaron@donco3.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1035 Schoolview Drive",
+ "Job_Codes": "3896 - Donco3 Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3896%20Donco3%20Office%20%28Marshfield%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Donco3 Office - 1035 Schoolview Drive - Donco3",
+ "Job_Name": "Donco3 Office",
+ "Job_Number": "3896",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3896 - Donco3 Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3896 - Donco3 Office - 1035 Schoolview Drive - Donco3 - Aaron York - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.541Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qv5zi3jaj4iihom",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.198Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3600 Center Street Rolla MO 65401",
+ "Job_Codes": "3895 - Havely Restaurant",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3895%20Havely%20Restaurant&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Havely Restaurant - 3600 Center Street Rolla MO 65401 - A2D",
+ "Job_Name": "Havely Restaurant",
+ "Job_Number": "3895",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3895 - Havely Restaurant",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3895 - Havely Restaurant - 3600 Center Street Rolla MO 65401 - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.589Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dyt8lzxm2c8r1t2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.314Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "nesbitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "JOE@nesbittconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1845 E Chestnut exprswy",
+ "Job_Codes": "3894 - The Kitchen",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3894%20Nesbitt%20%28The%20Kitchen%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Kitchen - 1845 E Chestnut exprswy - nesbitt",
+ "Job_Name": "The Kitchen",
+ "Job_Number": "3894",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3894 - The Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178666199",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3894 - The Kitchen - 1845 E Chestnut exprswy - nesbitt - Joe Jackson - 4178666199",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.645Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sebbiwqedwi5eu1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.438Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dunkel, Chad",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Dunkel ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Cddn@nouonordisk.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1512 W Porterfield Dr, Nixa",
+ "Job_Codes": "3893 - Step Thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step Thru - 1512 W Porterfield Dr, Nixa - Dunkel, Chad",
+ "Job_Name": "Step Thru",
+ "Job_Number": "3893",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3893 - Step Thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3893 - Step Thru - 1512 W Porterfield Dr, Nixa - Dunkel, Chad - Chad Dunkel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.705Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8tk5f64ytsaklv5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.550Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oak Grove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2130 E Hamilton St, Republic",
+ "Job_Codes": "3892 - Oak Court Apartments",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3892%20Oak%20Court%20Apartments%20%282130%20E%20Hamilton%20St%2C%20Republic%29%20%28Oak%20Grove%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Oak Court Apartments - 2130 E Hamilton St, Republic - Oak Grove Construction",
+ "Job_Name": "Oak Court Apartments",
+ "Job_Number": "3892",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3892 - Oak Court Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/28/24 11:26 AM Beth Cardoza L4-walls and stomp knockdown on ceilings is fine.---\n10/25/24 12:45 PM Beth Cardoza I was wanting to give the bid to our customer by November 1st for a spring start date.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178875465",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3892 - Oak Court Apartments - 2130 E Hamilton St, Republic - Oak Grove Construction - Matt - 4178875465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.752Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rpmqjt7dpnxm0ei",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.654Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Khanna, Manish & Kathy",
+ "Contact_Notes": "",
+ "Contact_Person": "Kathy (417) 860-5767 Manish (417) 522-3838",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3301 E Chattanooga Ct, Spfd",
+ "Job_Codes": "3891 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 3301 E Chattanooga Ct, Spfd - Khanna, Manish & Kathy",
+ "Job_Name": "Water damage",
+ "Job_Number": "3891",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3891 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/28/24 10:25 AM Beth Cardoza Probably will do TM, not to exceed price, but Bob is going to cut out a piece to check what it is like on the inside to get a better idea of what needs to be done.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3891 - Water damage - 3301 E Chattanooga Ct, Spfd - Khanna, Manish & Kathy - Kathy (417) 860-5767 Manish (417) 522-3838 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.805Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2vme5p4thkbpcwi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "11716 Lawrence 1195, Mt Vernon",
+ "Job_Codes": "3890 - Step Thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3890%20Step%20Thru%20%2811716%20Lawrence%201195%2C%20Mt%20Vernon%29%20%28Solar%20Solutions%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Step Thru - 11716 Lawrence 1195, Mt Vernon - Solar Solutions",
+ "Job_Name": "Step Thru",
+ "Job_Number": "3890",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3890 - Step Thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172098635",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3890 - Step Thru - 11716 Lawrence 1195, Mt Vernon - Solar Solutions - Tim - 4172098635",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.865Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8fvp9xv6cxfzfge",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.870Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ackerman, Brian",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Ackerman ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "850 Cobble Creek Blvd, Nixa",
+ "Job_Codes": "3889 - Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture - 850 Cobble Creek Blvd, Nixa - Ackerman, Brian",
+ "Job_Name": "Texture",
+ "Job_Number": "3889",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3889 - Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/01/24 10:18 AM Beth Cardoza No call back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9728044245",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3889 - Texture - 850 Cobble Creek Blvd, Nixa - Ackerman, Brian - Brian Ackerman - 9728044245",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.924Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qhswy5yrpstuy8g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:49.987Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cowherd",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "483 Wise Hill Rd, Republic",
+ "Job_Codes": "3888 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3888%20%20%28483%20Wise%20Hill%20Rd%2C%20Republic%29%20%28Cowherd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 483 Wise Hill Rd, Republic - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3888",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3888 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/07/24 6:11 AM david cardoza Stock 11,360\nConcrete board ftg?\nConcrete board installed?\nNo leftover---\n10/21/24 10:09 AM Beth Cardoza Estimate waiting on walkthrough notes---\n10/21/24 10:09 AM Beth Cardoza Should be ready to hang around 10/28---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172344451",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3888 - N/A - 483 Wise Hill Rd, Republic - Cowherd - Brandon Cowherd - 4172344451",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:55.980Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2inam9zngxeo793",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.111Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "E Sunshine",
+ "Job_Codes": "3887.2 - Unit H ceilings",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Unit H ceilings - E Sunshine - Weber",
+ "Job_Name": "Unit H ceilings",
+ "Job_Number": "3887.2",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3887.2 - Unit H ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/01/24 10:17 AM Beth Cardoza Will verify price once job is complete---\n10/24/24 5:13 PM Beth Cardoza Suite H our new temp office---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3887.2 - Unit H ceilings - E Sunshine - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.028Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n1c84p0gxbvj2s5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.222Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "E Sunshine",
+ "Job_Codes": "3887.1 - Personal office unit D",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Personal office unit D - E Sunshine - Weber",
+ "Job_Name": "Personal office unit D",
+ "Job_Number": "3887.1",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3887.1 - Personal office unit D",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3887.1 - Personal office unit D - E Sunshine - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.076Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zr9ous9x2s8kcmm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.350Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RE Smith",
+ "Contact_Notes": "",
+ "Contact_Person": "Darian",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "darian@resmithconst.com or estimating@resmithconst.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Clever",
+ "Job_Codes": "3886 - Clever Schools",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3886%20Clever%20School&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Clever Schools - Clever - RE Smith",
+ "Job_Name": "Clever Schools",
+ "Job_Number": "3886",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3886 - Clever Schools",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3886 - Clever Schools - Clever - RE Smith - Darian - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.124Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2s0nympqpbimg9h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.455Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fairgrove",
+ "Job_Codes": "3885 - Wester Residence",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3885%20Wester%20Residence%20%28Fairgrove%29%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wester Residence - Fairgrove - Everlasting Homes",
+ "Job_Name": "Wester Residence",
+ "Job_Number": "3885",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3885 - Wester Residence",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/28/25 6:31 AM david cardoza Stock 8,844\n(1,440 of it was stocked in garage)\nLeftover 102---\n03/20/25 4:44 PM Beth Cardoza Box code 9078\nFor Fairgrove. \nBox with key in it.---\n11/01/24 11:11 AM Beth Cardoza Estimate waiting on walkthrough and or plans---\n10/16/24 11:28 AM Beth Cardoza a small house in Fairgrove for the Wester residence. About 1800 ft.² living space. No address yet.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3885 - Wester Residence - Fairgrove - Everlasting Homes - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.169Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "45uztuev9fdvrh3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.567Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "3884 - Morris Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Morris Addition - Republic - Everlasting Homes",
+ "Job_Name": "Morris Addition",
+ "Job_Number": "3884",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3884 - Morris Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/17/25 1:08 PM Beth Cardoza It's been almost a year and still no info so I'm archiving it---\n11/01/24 11:11 AM Beth Cardoza Estimate waiting on walkthrough and/or plans---\n10/16/24 11:26 AM Beth Cardoza a room addition on the Morris property in Republic. No address yet. About 1300 square-foot addition living space---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3884 - Morris Addition - Republic - Everlasting Homes - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.220Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dhkpc4s4kr0p6lc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.718Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3883 - LWH 64",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3883%20LWH%2064%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH 64 - - Everlasting Homes",
+ "Job_Name": "LWH 64",
+ "Job_Number": "3883",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3883 - LWH 64",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/21/25 1:00 PM Beth Cardoza CO: few small patches 4/22 probably---\n01/02/25 7:25 AM david cardoza Stock 17,832\n leftover 118\nHang 17,714---\n11/01/24 11:11 AM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3883 - LWH 64 - - Everlasting Homes - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.268Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iv89oanom15ai1h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:50.878Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3882 - LWH 63",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3882%20LWH%2063%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH 63 - - Everlasting Homes",
+ "Job_Name": "LWH 63",
+ "Job_Number": "3882",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3882 - LWH 63",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/02/25 7:52 AM david cardoza Stock 17,568\nLeftover 160\nHang 17,408---\n11/01/24 11:10 AM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3882 - LWH 63 - - Everlasting Homes - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.321Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ujcn0fgpel0exrt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.034Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Marlowe St, Spfld",
+ "Job_Codes": "3881 - LWH 20",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3881%20LWH%2020%20%28Marlowe%20St%2C%20Spfld%29%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH 20 - Marlowe St, Spfld - Everlasting Homes",
+ "Job_Name": "LWH 20",
+ "Job_Number": "3881",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3881 - LWH 20",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/26/24 7:00 AM david cardoza First stock 18,888\nSecond stock 1,048\nTotal stock 19,936\nNo leftover---\n11/21/24 6:34 AM david cardoza First Stock 18,888---\n11/21/24 3:34 PM Beth Cardoza 2nd stock 1,048\n= total of 19,936 sqft---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3881 - LWH 20 - Marlowe St, Spfld - Everlasting Homes - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.380Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7kqwj98v8p3v9r7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.198Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baldridge, Amy",
+ "Contact_Notes": "",
+ "Contact_Person": "Amy Baldridge ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "218 Windridge St, Branson",
+ "Job_Codes": "3880 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 218 Windridge St, Branson - Baldridge, Amy",
+ "Job_Name": "Ceiling",
+ "Job_Number": "3880",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3880 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/23/24 11:22 AM Beth Cardoza Decided more than they wanted to pay and did the work themselves---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175273508",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3880 - Ceiling - 218 Windridge St, Branson - Baldridge, Amy - Amy Baldridge - 4175273508",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.428Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e48hl9ipdq0zybg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.366Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elliott, Josh",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh Elliot",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "155 State Hwy OO, Sparta",
+ "Job_Codes": "3879 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3879%20%20%28155%20State%20Hwy%20OO%2C%20Sparta%29%20%28Elliott%2C%20Josh%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 155 State Hwy OO, Sparta - Elliott, Josh",
+ "Job_Name": "N/A",
+ "Job_Number": "3879",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3879 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/26/24 7:17 AM david cardoza First stock16,514\nSecond stock 960\nTotal stock 17,474\nLeftover 224---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175360958",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3879 - N/A - 155 State Hwy OO, Sparta - Elliott, Josh - Josh Elliot - 4175360958",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.489Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ygb2pzo67dmlzhn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.538Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Williams, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Williams ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3356 N 28th St, Ozark",
+ "Job_Codes": "3878 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 3356 N 28th St, Ozark - Williams, Tim",
+ "Job_Name": "Remodel",
+ "Job_Number": "3878",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3878 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/16/24 2:27 PM Beth Cardoza Haven't got info for estimate or email address yet. Will figure TM unless otherwise noted because he wants the job done this week!---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178381635",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3878 - Remodel - 3356 N 28th St, Ozark - Williams, Tim - Tim Williams - 4178381635",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.549Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uyqv8p3y14pjyqj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.706Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wieland, Patsy",
+ "Contact_Notes": "",
+ "Contact_Person": "Del Milligan",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "719 N Milton, Nixa",
+ "Job_Codes": "3877 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3877%20Repair%20%28719%20N%20Milton%2C%20Nixa%29%20%28Wieland%2C%20Patsy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repair - 719 N Milton, Nixa - Wieland, Patsy",
+ "Job_Name": "Repair",
+ "Job_Number": "3877",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3877 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174164197",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3877 - Repair - 719 N Milton, Nixa - Wieland, Patsy - Del Milligan - 4174164197",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.608Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "15u9hs0745k6bxq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.862Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Don Hunsaker",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Hunsaker ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Deffer Drive",
+ "Job_Codes": "3876 - Modern Motorcars",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3876%20Modern%20Motorcars&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Modern Motorcars - Deffer Drive - Don Hunsaker",
+ "Job_Name": "Modern Motorcars",
+ "Job_Number": "3876",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3876 - Modern Motorcars",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178488298",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3876 - Modern Motorcars - Deffer Drive - Don Hunsaker - Don Hunsaker - 4178488298",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.665Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i0ggcehb2l8n90c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:51.982Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3935 Burks Pl, Spfld",
+ "Job_Codes": "3875 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 3935 Burks Pl, Spfld - Weber",
+ "Job_Name": "Repair",
+ "Job_Number": "3875",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3875 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3875 - Repair - 3935 Burks Pl, Spfld - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.724Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b269w1s0gzkq9pq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.101Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kevin ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "114 Timberlane Ct, Ozark",
+ "Job_Codes": "3874 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 114 Timberlane Ct, Ozark - Nav Construction",
+ "Job_Name": "Remodel",
+ "Job_Number": "3874",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3874 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178606127",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3874 - Remodel - 114 Timberlane Ct, Ozark - Nav Construction - Kevin - 4178606127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.785Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u552z9x75kzsjza",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.210Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dodd, Leia",
+ "Contact_Notes": "",
+ "Contact_Person": "Leia Dodd",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "leiadodd@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2907 N 25th St, Ozark",
+ "Job_Codes": "3873 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 2907 N 25th St, Ozark - Dodd, Leia",
+ "Job_Name": "Water damage",
+ "Job_Number": "3873",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3873 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/24/24 2:29 PM Beth Cardoza Jay found out the source of the damage was from a toilet leak or something and it's still causing additional damage. They are going to have the plumbing issue resolved before we come back to fix it.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3873 - Water damage - 2907 N 25th St, Ozark - Dodd, Leia - Leia Dodd - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.853Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ib741yp61dmfvfq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.314Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Levan, Staci",
+ "Contact_Notes": "",
+ "Contact_Person": "Staci Levan ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "slevan2211@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "3872 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3872%20Cracks%20%28Nixa%29%20%28Levan%2C%20Staci%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cracks - Nixa - Levan, Staci",
+ "Job_Name": "Cracks",
+ "Job_Number": "3872",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3872 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/21/24 9:25 AM Beth Cardoza They have a friend that’s going to do the repair and if for some reason it doesn’t work out they will let us know---\n10/16/24 12:17 PM Beth Cardoza Eddie said he would call last Thursday. I haven't heard anything since---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3872 - Cracks - Nixa - Levan, Staci - Staci Levan - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.908Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dhy79rpai8d2d9z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.430Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "The Whiting-Turner Contracting Company - MO-Kansas City",
+ "Contact_Notes": "",
+ "Contact_Person": "Kealin Smith",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "kealin.smith@whiting-turner.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1111 East Brookside Drive, Springfield, MO 65807,",
+ "Job_Codes": "3871 - AMRN - Springfield Art Museum - Addition & Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3871%20Spfd%20art%20museum&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "AMRN - Springfield Art Museum - Addition & Renovation - 1111 East Brookside Drive, Springfield, MO 65807, - The Whiting-Turner Contracting Company - MO-Kansas City",
+ "Job_Name": "AMRN - Springfield Art Museum - Addition & Renovation",
+ "Job_Number": "3871",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3871 - AMRN - Springfield Art Museum - Addition & Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "8163329345",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3871 - AMRN - Springfield Art Museum - Addition & Renovation - 1111 East Brookside Drive, Springfield, MO 65807, - The Whiting-Turner Contracting Company - MO-Kansas City - Kealin Smith - 8163329345",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:56.961Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9mq7cviebbpx8z4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.534Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cburke@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "759 E. Evergreen Rd, Strafford,",
+ "Job_Codes": "3870 - Premier Trucking",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3870%20DeWitt%20%28Premier%20Trucking%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Premier Trucking - 759 E. Evergreen Rd, Strafford, - DeWitt",
+ "Job_Name": "Premier Trucking",
+ "Job_Number": "3870",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3870 - Premier Trucking",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179885787",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3870 - Premier Trucking - 759 E. Evergreen Rd, Strafford, - DeWitt - Chris Burke - 4179885787",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.082Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i35zfrqo6fd8rva",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.641Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rush, Michelle",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Rush ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3869 - Bath Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3869%20Bath%20Repair%20%28%29%20%28Rush%2C%20Michelle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bath Repair - - Rush, Michelle",
+ "Job_Name": "Bath Repair",
+ "Job_Number": "3869",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3869 - Bath Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/24 2:42 PM Beth Cardoza Eddie to view Monday at 9 am. \nJack & Becky reference---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4799702576",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3869 - Bath Repair - - Rush, Michelle - Michelle Rush - 4799702576",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.125Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bhjeinunj9x5jnd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.753Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CDI Contractors",
+ "Contact_Notes": "",
+ "Contact_Person": "John Schafer ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield MO",
+ "Job_Codes": "3868 - Dillard's Department Store - Battlefield Mall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3868%20CDI%20%28Dillards%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Dillard's Department Store - Battlefield Mall - Springfield MO - CDI Contractors",
+ "Job_Name": "Dillard's Department Store - Battlefield Mall",
+ "Job_Number": "3868",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3868 - Dillard's Department Store - Battlefield Mall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5015290892",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3868 - Dillard's Department Store - Battlefield Mall - Springfield MO - CDI Contractors - John Schafer - 5015290892",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.177Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "euyveody76o7qmj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:52.874Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Robinson, Ashley",
+ "Contact_Notes": "",
+ "Contact_Person": "Ashley Robinson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3867 - Ceiling Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling Patch - Branson Cove - Robinson, Ashley",
+ "Job_Name": "Ceiling Patch",
+ "Job_Number": "3867",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3867 - Ceiling Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5732103105",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3867 - Ceiling Patch - Branson Cove - Robinson, Ashley - Ashley Robinson - 5732103105",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.245Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "upsonlkothkl9nh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.063Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sullivan, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Sullivan ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "380 Cypress Ln, Rogersville",
+ "Job_Codes": "3866 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 380 Cypress Ln, Rogersville - Sullivan, Mike",
+ "Job_Name": "Repairs",
+ "Job_Number": "3866",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3866 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/21/24 12:04 PM Beth Cardoza CO: Storage, bathroom, little wine room and lounge are only L4 smooth instead of L5---\n10/21/24 12:03 PM Beth Cardoza CO: concrete board on fireplace wall\nCO: Finished concrete floor so delay while they finish it and also need 2nd layer of protection.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178401588",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3866 - Repairs - 380 Cypress Ln, Rogersville - Sullivan, Mike - Mike Sullivan - 4178401588",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.310Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jm0g9usvc0pcu8d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.191Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DMP/Phil VanDyne",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Buller ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2500 N Partnership Blvd, Spfd",
+ "Job_Codes": "3865 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 2500 N Partnership Blvd, Spfd - DMP/Phil VanDyne",
+ "Job_Name": "Water damage",
+ "Job_Number": "3865",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3865 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173091763",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3865 - Water damage - 2500 N Partnership Blvd, Spfd - DMP/Phil VanDyne - Robert Buller - 4173091763",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.353Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hykk94r9mx2d7vr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.311Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Diversity Commercial investments",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Kennard ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3237 E. Kearney Spfd MO 65803",
+ "Job_Codes": "3864 - Rosalind Peters",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rosalind Peters - 3237 E. Kearney Spfd MO 65803 - Diversity Commercial investments",
+ "Job_Name": "Rosalind Peters",
+ "Job_Number": "3864",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3864 - Rosalind Peters",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178604732",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3864 - Rosalind Peters - 3237 E. Kearney Spfd MO 65803 - Diversity Commercial investments - Chris Kennard - 4178604732",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.406Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0db16wh74ees3ug",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dreams2Reality vacation rentals",
+ "Contact_Notes": "",
+ "Contact_Person": "Daniel ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "257 Clubhouse Dr Bld 38 Unit 1, Branson",
+ "Job_Codes": "3863 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3863%20Water%20damage%20%28257%20Clubhouse%20Dr%20Bld%2038%20Unit%201%2C%20Branson%29%20%28Dreams2Reality%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Water damage - 257 Clubhouse Dr Bld 38 Unit 1, Branson - Dreams2Reality vacation rentals",
+ "Job_Name": "Water damage",
+ "Job_Number": "3863",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3863 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5736920377",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3863 - Water damage - 257 Clubhouse Dr Bld 38 Unit 1, Branson - Dreams2Reality vacation rentals - Daniel - 5736920377",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.463Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o0h7nne5l4e9cst",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.546Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Howser, Denny",
+ "Contact_Notes": "",
+ "Contact_Person": "Denny Howser ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Stone Meadow",
+ "Job_Codes": "3862 - Step Thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3862%20Step%20Thru%20%28Stone%20Meadow%29%20%28Howser%2C%20Denny%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Step Thru - Stone Meadow - Howser, Denny",
+ "Job_Name": "Step Thru",
+ "Job_Number": "3862",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3862 - Step Thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175278193",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3862 - Step Thru - Stone Meadow - Howser, Denny - Denny Howser - 4175278193",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.514Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r0nr6v74elozpau",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.657Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "OakGrove",
+ "Contact_Notes": "",
+ "Contact_Person": "Tracy Norman ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3000 E. Sunshine Spfd",
+ "Job_Codes": "3861 - Smokin Bobs BBQ",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Smokin Bobs BBQ - 3000 E. Sunshine Spfd - OakGrove",
+ "Job_Name": "Smokin Bobs BBQ",
+ "Job_Number": "3861",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3861FX - Smokin Bobs BBQ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178408740",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3861FX - Smokin Bobs BBQ - 3000 E. Sunshine Spfd - OakGrove - Tracy Norman - 4178408740",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gguqco5ck0uzoqu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "John Seawright ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Summit View Dr, Springfield",
+ "Job_Codes": "3860 - McFall",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3860%20McFall%20%28Summit%20View%20Dr%2C%20Springfield%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "McFall - Summit View Dr, Springfield - Construct",
+ "Job_Name": "McFall",
+ "Job_Number": "3860",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3860 - McFall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/27/24 10:02 AM Beth Cardoza This project hasn’t begun yet so I would say definitely somewhere around February. All the windows are wrapped in brick or wood, square corners, level 5 finish.\n\nIf any of these details change I will let you know. You can",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172586381",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3860 - McFall - Summit View Dr, Springfield - Construct - John Seawright - 4172586381",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.673Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k2d6www7hi98764",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:53.882Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Probst, Derek",
+ "Contact_Notes": "",
+ "Contact_Person": "Derek",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1685 N FR 71, Bois D Arc",
+ "Job_Codes": "3859 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3859%20%20%281685%20N%20FR%2071%2C%20Bois%20D%20Arc%29%20%28Probst%2C%20Derek%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1685 N FR 71, Bois D Arc - Probst, Derek",
+ "Job_Name": "N/A",
+ "Job_Number": "3859",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3859 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/11/24 9:26 AM david cardoza Stock 18,534---\n09/26/24 2:35 PM Beth Cardoza would like the upstairs bonus room to be bid separately. I may not install drywall in bonus room yet.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176936889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3859 - N/A - 1685 N FR 71, Bois D Arc - Probst, Derek - Derek - 4176936889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.725Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cjrlx0m2u6d9kbk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.006Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Bart",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3858 - Branson Swim",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3858%20Branson%20Swim&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Swim - Branson - Holtz",
+ "Job_Name": "Branson Swim",
+ "Job_Number": "3858",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3858 - Branson Swim",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3858 - Branson Swim - Branson - Holtz - Bart - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.782Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a4u1jfh2ezez9mj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.118Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3857 - Meyers Library",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Meyers Library - Spfd - Friga",
+ "Job_Name": "Meyers Library",
+ "Job_Number": "3857",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3857 - Meyers Library",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174149291",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3857 - Meyers Library - Spfd - Friga - Eric - 4174149291",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.838Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "raz4zdajul3thle",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.242Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "898 Hawthorn Rd, Highlandville",
+ "Job_Codes": "3856 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 898 Hawthorn Rd, Highlandville - Larsen, Steve",
+ "Job_Name": "Repair",
+ "Job_Number": "3856",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3856 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/15/24 9:38 AM Beth Cardoza Homeowner decided to do the work themselves---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3856 - Repair - 898 Hawthorn Rd, Highlandville - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.886Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g2wwynbdtrg965f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.361Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Trent",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "788 Rene, Nixa",
+ "Job_Codes": "3855 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 788 Rene, Nixa - Cowherd",
+ "Job_Name": "Garage",
+ "Job_Number": "3855",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3855 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/09/24 1:56 PM Beth Cardoza Duplicate. Used job number created for the bathroom at this address that we didn't do.---\n09/23/24 2:37 PM Beth Cardoza About 3,000 sqft in new garage in about 2 weeks---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178406116",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3855 - Garage - 788 Rene, Nixa - Cowherd - Trent - 4178406116",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.949Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1rrn1s2jp9okmlu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.490Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nixa Public Schools/Sodexo",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Klug, CEFP Director of Facilities ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "robertklug@nixaschools.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1375 W. Snyder Blvd Nixa",
+ "Job_Codes": "3854 - Nixa Public Schools/Sodexo",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Public Schools/Sodexo - 1375 W. Snyder Blvd Nixa - Nixa Public Schools/Sodexo",
+ "Job_Name": "Nixa Public Schools/Sodexo",
+ "Job_Number": "3854",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3854 - Nixa Public Schools/Sodexo",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176161719",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3854 - Nixa Public Schools/Sodexo - 1375 W. Snyder Blvd Nixa - Nixa Public Schools/Sodexo - Robert Klug, CEFP Director of Facilities - 4176161719",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:57.993Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oagy31s7ld3b36t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.606Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1319 Sycamore Church Rd, Branson",
+ "Job_Codes": "3853 - Forrester",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3853%20Forrester%20%28Sycamore%20Church%20Rd%2C%20Branson%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Forrester - 1319 Sycamore Church Rd, Branson - Krueger, Paul",
+ "Job_Name": "Forrester",
+ "Job_Number": "3853",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3853 - Forrester",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/07/25 3:31 PM Beth Cardoza CO: Touch up at new window next week---\n01/16/25 7:12 AM david cardoza Stock 8,064\nNo leftover \nSecond stock 192\nNo leftover\nPay finisher 8,256---\n01/08/25 10:51 AM Beth Cardoza Tentative stock Jan 13th---\n09/20/24 10:21 AM Beth Cardoza My standard PK stuff. No window wraps square corners Op walls stomp KD ceiling---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3853 - Forrester - 1319 Sycamore Church Rd, Branson - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.037Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yzs2ee4o8xgc8qr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.718Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essick",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3852 - Lumley",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3852%20Lumley%20%28Ozark%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lumley - Ozark - Essick, Dusty",
+ "Job_Name": "Lumley",
+ "Job_Number": "3852",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3852 - Lumley",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/17/25 7:26 AM david cardoza Stock 4,556---\n04/10/25 5:42 PM Beth Cardoza Estimate needs review. Job ready in the next week or two.---\n04/15/25 5:17 PM Beth Cardoza Will decide if needs price increase after hang---\n09/19/24 1:40 PM Beth Cardoza There will be a 10'x10' room on the left side connecting the house to the existing house. -Dusty---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3852 - Lumley - Ozark - Essick, Dusty - Dusty Essick - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.081Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a30rrwbivejl85g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.849Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nixa Schools",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Klug",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1375 W. Snyder Blvd, Nixa",
+ "Job_Codes": "3851 - Nixa School",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3851%20Nixa%20School%20Facilities&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixa School - 1375 W. Snyder Blvd, Nixa - Nixa Schools",
+ "Job_Name": "Nixa School",
+ "Job_Number": "3851",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3851PWEX - Nixa School",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3851PWEX - Nixa School - 1375 W. Snyder Blvd, Nixa - Nixa Schools - Robert Klug - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.138Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ij58ivq0ajjnonx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:54.962Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Modern Motorcars",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Hunsaker",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Deffer Drive",
+ "Job_Codes": "3850 - Modern Motorcars",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Modern Motorcars - Deffer Drive - Modern Motorcars",
+ "Job_Name": "Modern Motorcars",
+ "Job_Number": "3850",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3850 - Modern Motorcars",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178488298",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3850 - Modern Motorcars - Deffer Drive - Modern Motorcars - Don Hunsaker - 4178488298",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.190Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tkdcqo7dtzd97a2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.074Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sieben, Plaker",
+ "Contact_Notes": "",
+ "Contact_Person": "Plaker Sieben (913) 602-3864 or (417) 340-7726",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "624 E Country Crest Rd, Ozark",
+ "Job_Codes": "3849 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 624 E Country Crest Rd, Ozark - Sieben, Plaker",
+ "Job_Name": "Addition",
+ "Job_Number": "3849",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3849 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3849 - Addition - 624 E Country Crest Rd, Ozark - Sieben, Plaker - Plaker Sieben (913) 602-3864 or (417) 340-7726 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.237Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6ms5srn64gn00sr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.181Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Thomas Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Chambers",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3471 West Kearney Street (Lot #3 and Lot #5 Airport Plaza)",
+ "Job_Codes": "3848 - Echo Suites",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3848%20Echo%20Suites&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Echo Suites - 3471 West Kearney Street (Lot #3 and Lot #5 Airport Plaza) - Thomas Construction",
+ "Job_Name": "Echo Suites",
+ "Job_Number": "3848",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3848 - Echo Suites",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/27/25 12:54 PM Beth Cardoza We are still working with the Owner on this one. Will most likely be about 2 weeks to see if the project moves forward with us. Thanks for checking in! - Bill Chambers estimator, Thomas Construction---\n09/24/24 12:52 PM Beth Cardoza I'm working on the drywall bid for this project and G011 ceiling assembly and the reflected ceiling plan A804 conflict. Ceiling type C in the reflected plan shows 2 layers Gyp, but G011 shows that the top floor ceiling has j\n09/20/24 11:35 AM Beth Cardoza Orange Peel walls and ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3848 - Echo Suites - 3471 West Kearney Street (Lot #3 and Lot #5 Airport Plaza) - Thomas Construction - Bill Chambers - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.289Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "eymzdsbyr0h0am0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.298Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oleg",
+ "Contact_Notes": "",
+ "Contact_Person": "Oleg ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3847 - Basement t-bar",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement t-bar - Spfd - Oleg",
+ "Job_Name": "Basement t-bar",
+ "Job_Number": "3847",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3847 - Basement t-bar",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/17/24 12:00 PM Beth Cardoza Decided t-bar was too expensive and wants to do his own drywall.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9168265931",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3847 - Basement t-bar - Spfd - Oleg - Oleg - 9168265931",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.341Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "da7q2i3hz539rn4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Miller, Jay",
+ "Contact_Notes": "",
+ "Contact_Person": "Jay Miller",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6071 State Hwy 125 North, Rogersville",
+ "Job_Codes": "3846 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 6071 State Hwy 125 North, Rogersville - Miller, Jay",
+ "Job_Name": "Water damage",
+ "Job_Number": "3846",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3846 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178405711",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3846 - Water damage - 6071 State Hwy 125 North, Rogersville - Miller, Jay - Jay Miller - 4178405711",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.401Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kclhfp9oh5y78cy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.535Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Goslee, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Goslee",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1846 S Nettleton, Spfd",
+ "Job_Codes": "3845 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1846 S Nettleton, Spfd - Goslee, Mike",
+ "Job_Name": "N/A",
+ "Job_Number": "3845",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3845 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/25/24 12:09 PM Beth Cardoza CO: Mike called and changed up some stuff this morning, all ceiling cracks and wall cracks we are no longer doing those, the areas we demo kitchen and bathroom wall and hanging of new rock in both rooms and dining room, plus",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173431231",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3845 - N/A - 1846 S Nettleton, Spfd - Goslee, Mike - Mike Goslee - 4173431231",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.450Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rak97deb376nm9z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.650Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scunningham@construct.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1630 N. Jefferson Ave Spfd",
+ "Job_Codes": "3844 - Pacific South Townhomes",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3844%20Pacific%20South%20Townhomes%20%281630%20N%2E%20Jefferson%20Ave%20Spfd%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pacific South Townhomes - 1630 N. Jefferson Ave Spfd - Construct",
+ "Job_Name": "Pacific South Townhomes",
+ "Job_Number": "3844",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3844 - Pacific South Townhomes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/01/24 5:08 PM Beth Cardoza Sent to Construct and O'Reilly Build. HC Rogers is also inviting to bid, but we haven't at this point.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5735902828",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3844 - Pacific South Townhomes - 1630 N. Jefferson Ave Spfd - Construct - Seth Cunningham - 5735902828",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.493Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "klpl93gunn36esh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.786Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3843 - MSU Rm 105 Library renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3843%20MSU%20Rm%20105%20Library%20renovation%20%28Spfd%29%20%28Friga%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "MSU Rm 105 Library renovation - Spfd - Friga",
+ "Job_Name": "MSU Rm 105 Library renovation",
+ "Job_Number": "3843",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3843 - MSU Rm 105 Library renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3843 - MSU Rm 105 Library renovation - Spfd - Friga - Eric Friga - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.545Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kfufq0j81cvlkdo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:55.898Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cherish Kids",
+ "Contact_Notes": "",
+ "Contact_Person": "Mikenzie Knopf",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Children's Division, Ozark",
+ "Job_Codes": "3842 - Picnic Table",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Picnic Table - Children's Division, Ozark - Cherish Kids",
+ "Job_Name": "Picnic Table",
+ "Job_Number": "3842",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3842 - Picnic Table",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175815437",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3842 - Picnic Table - Children's Division, Ozark - Cherish Kids - Mikenzie Knopf - 4175815437",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.593Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5rsk2s1bqf4bkzq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.006Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Victor Paulik",
+ "Contact_Notes": "",
+ "Contact_Person": "Victor Paulik ",
+ "Docs_Uploaded": true,
+ "Due_Date": "2024-09-02 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "315 E. Hwy 60 Republic",
+ "Job_Codes": "3841 - Victor Paulik",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3841%20Victor%20Paulik%20%5BAlpha%20Acq%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Victor Paulik - 315 E. Hwy 60 Republic - Victor Paulik",
+ "Job_Name": "Victor Paulik",
+ "Job_Number": "3841",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3841TM - Victor Paulik",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "TM",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172343021",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3841TM - Victor Paulik - 315 E. Hwy 60 Republic - Victor Paulik - Victor Paulik - 4172343021",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.637Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f25s9ay69sp3m52",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.106Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Battaglia, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew Battaglia ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "303 Raintree St, Nixa",
+ "Job_Codes": "3840 - Step Thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step Thru - 303 Raintree St, Nixa - Battaglia, Andrew",
+ "Job_Name": "Step Thru",
+ "Job_Number": "3840",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3840 - Step Thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175596077",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3840 - Step Thru - 303 Raintree St, Nixa - Battaglia, Andrew - Andrew Battaglia - 4175596077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.685Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sbf7k81g48y75bg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.215Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Dowell",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Millwood",
+ "Job_Codes": "3839 - Kamerzan",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3839%20Kamerzan%20%28Millwood%29%20%28Dowell%2C%20Kyle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kamerzan - Millwood - Dowell, Kyle",
+ "Job_Name": "Kamerzan",
+ "Job_Number": "3839",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3839 - Kamerzan",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/10/24 4:21 PM Beth Cardoza Drywall- Tree bark textured ceiling, light orange peel with knock down on the walls. All windows\nwrapped on 3 sides with wood sills.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178603628",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3839 - Kamerzan - Millwood - Dowell, Kyle - Kyle Dowell - 4178603628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.729Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uqv699oczlaj5i2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.318Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon Weber",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4415 E Sunshine St, Spfd",
+ "Job_Codes": "3838 - Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3838%20Office%20%284415%20E%20Sunshine%20St%2C%20Spfd%29%20%28Weber%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Office - 4415 E Sunshine St, Spfd - Weber",
+ "Job_Name": "Office",
+ "Job_Number": "3838",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3838 - Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/19/24 4:59 PM Beth Cardoza We figured 14 hours @ $35 for prep for hang to fix windows and knock in nails, etc etc... We gave the full amount to Angel and Jason had several hours as well doing prep. So it took a lot more than budgeted.---\n12/19/24 4:57 PM Beth Cardoza CO: Frame out a wall at stairway. 8 hours + a few pieces of 1/2 track. Also used some Shiney 90 for something else.---\n12/15/24 10:54 AM david cardoza Stock 10,368\nSecond stock 624\nTotal stock 10,992---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178032424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3838 - Office - 4415 E Sunshine St, Spfd - Weber - Bryon Weber - 4178032424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.777Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ch50fxxktswtyfl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.418Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Dowell ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "408 Tablerock Lane, Branson",
+ "Job_Codes": "3837 - Gabriel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3837%20Gabriel%20%28408%20Tablerock%20Lane%2C%20Branson%29%20%28Dowell%2C%20Kyle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Gabriel - 408 Tablerock Lane, Branson - Dowell, Kyle",
+ "Job_Name": "Gabriel",
+ "Job_Number": "3837",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3837 - Gabriel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/10/24 10:10 AM Beth Cardoza Drywall- Tree bark textured ceiling, light orange peel with knock down on the walls. All windows\nwrapped on 3 sides with wood sills.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178603628",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3837 - Gabriel - 408 Tablerock Lane, Branson - Dowell, Kyle - Kyle Dowell - 4178603628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.821Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pg3z8ohydidvyym",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.521Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bills, Roger",
+ "Contact_Notes": "",
+ "Contact_Person": "Roger Bills ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3277 Pleasant View, Spfd",
+ "Job_Codes": "3836 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3836%20Cracks%20%283277%20Pleasant%20View%2C%20Spfd%29%20%28Bills%2C%20Roger%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cracks - 3277 Pleasant View, Spfd - Bills, Roger",
+ "Job_Name": "Cracks",
+ "Job_Number": "3836",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3836 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/09/24 9:19 AM Beth Cardoza Eddie to view Monday Sept 23rd---\n09/06/24 3:40 PM Beth Cardoza \"3277 Pleasant wood Ln, Spfd\n(Address may not get you there)\nGlenstone North Past I44\nEast on Hwy AA\nRight on FR 179\nLeft on FR 82\nAbout 500' on Left to House\"---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178493081",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3836 - Cracks - 3277 Pleasant View, Spfd - Bills, Roger - Roger Bills - 4178493081",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.869Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j2tx1ne1gt46olj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.641Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Neu, Tre & Marsha",
+ "Contact_Notes": "",
+ "Contact_Person": "Marsha",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3153 S Thornridge Dr,Spfd",
+ "Job_Codes": "3835 - Wall Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wall Patch - 3153 S Thornridge Dr,Spfd - Neu, Tre & Marsha",
+ "Job_Name": "Wall Patch",
+ "Job_Number": "3835",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3835 - Wall Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/09/24 10:11 AM Beth Cardoza Weber reference---\n09/06/24 10:28 AM Beth Cardoza Needs to be complete by 27th (including paint so not last minute)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177731553",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3835 - Wall Patch - 3153 S Thornridge Dr,Spfd - Neu, Tre & Marsha - Marsha - 4177731553",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.918Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y7x38zw3g57f7s0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.783Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3506 S Sulgrove Ave., Spfd",
+ "Job_Codes": "3834 - Fry Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3834%20Fry%20%283506%20S%20Sulgrove%20Ave%2E%2C%20Spfd%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Fry Garage - 3506 S Sulgrove Ave., Spfd - Concept2Completion",
+ "Job_Name": "Fry Garage",
+ "Job_Number": "3834",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3834 - Fry Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/05/24 2:41 PM Beth Cardoza 1/2 orange peel wall with simple ceiling stomp.\nAll 10 ft. Concrete will be in place.\nNo window wraps\nRegarding garage: Lowest point is 10ft 4 inches but drywall stays level at 10ft.\nRegarding when it will be ready: Bidding i",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3834 - Fry Garage - 3506 S Sulgrove Ave., Spfd - Concept2Completion - Tim Schwenke - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:58.963Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ftmiytxcjzgieui",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:56.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "S. M. Wilson & Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Kutz ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "greg.kutz@smwilson.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3444 West Sunshine Street Spfd",
+ "Job_Codes": "3833 - Target Sunshine towne Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Target Sunshine towne Center - 3444 West Sunshine Street Spfd - S. M. Wilson & Co.",
+ "Job_Name": "Target Sunshine towne Center",
+ "Job_Number": "3833",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3833 - Target Sunshine towne Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3146459595",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3833 - Target Sunshine towne Center - 3444 West Sunshine Street Spfd - S. M. Wilson & Co. - Greg Kutz - 3146459595",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.018Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d678rxyw9u8tcdi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.088Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Leopardo Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Derik Aasen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dpaasen@leopardo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "701 North McCroskey Street, Nixa, MO",
+ "Job_Codes": "3832 - Humana-Mercy - Care Clinic - Village Market Place - Nixa, MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Humana-Mercy - Care Clinic - Village Market Place - Nixa, MO - 701 North McCroskey Street, Nixa, MO - Leopardo Construction",
+ "Job_Name": "Humana-Mercy - Care Clinic - Village Market Place - Nixa, MO",
+ "Job_Number": "3832",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3832 - Humana-Mercy - Care Clinic - Village Market Place - Nixa, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2244230441",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3832 - Humana-Mercy - Care Clinic - Village Market Place - Nixa, MO - 701 North McCroskey Street, Nixa, MO - Leopardo Construction - Derik Aasen - 2244230441",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.073Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "utof1dg8jun0zfg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.200Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Leopardo Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Derik Aasen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dpaasen@leopardo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1839 East Independence St. Spfd",
+ "Job_Codes": "3831 - Humana-Mercy - Care Clinic-James River Towne",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Humana-Mercy - Care Clinic-James River Towne - 1839 East Independence St. Spfd - Leopardo Construction",
+ "Job_Name": "Humana-Mercy - Care Clinic-James River Towne",
+ "Job_Number": "3831",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3831 - Humana-Mercy - Care Clinic-James River Towne",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2244230441",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3831 - Humana-Mercy - Care Clinic-James River Towne - 1839 East Independence St. Spfd - Leopardo Construction - Derik Aasen - 2244230441",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.117Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ec6ozcc3698rcu1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.327Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "TLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2320 S. Ingram Mill",
+ "Job_Codes": "3830 - TLC",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "TLC - 2320 S. Ingram Mill - TLC",
+ "Job_Name": "TLC",
+ "Job_Number": "3830",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3830 - TLC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174149291",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3830 - TLC - 2320 S. Ingram Mill - TLC - Eric - 4174149291",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.169Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6xquyzguu30ps3j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.436Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Evans, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Evans",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "170 Watersound Way, Hollister",
+ "Job_Codes": "3829 - Patch Branson Cove unit 16",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch Branson Cove unit 16 - 170 Watersound Way, Hollister - Evans, Kyle",
+ "Job_Name": "Patch Branson Cove unit 16",
+ "Job_Number": "3829",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3829 - Patch Branson Cove unit 16",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/05/24 1:58 PM Beth Cardoza Found someone who could get it done sooner---\n09/04/24 2:29 PM Beth Cardoza Need done by 13th. Minor. Mike Steel reference I think. Water leak/ceiling repair.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3829 - Patch Branson Cove unit 16 - 170 Watersound Way, Hollister - Evans, Kyle - Kyle Evans - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.213Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zb63pwio3fx3wv7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.543Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q & Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody Elliott ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "codyelliott@qandcompanyllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1501 E. Pythian St. Spfd",
+ "Job_Codes": "3828 - Arc of the Ozarks Pythian",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Arc of the Ozarks Pythian - 1501 E. Pythian St. Spfd - Q & Co.",
+ "Job_Name": "Arc of the Ozarks Pythian",
+ "Job_Number": "3828",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3828 - Arc of the Ozarks Pythian",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3828 - Arc of the Ozarks Pythian - 1501 E. Pythian St. Spfd - Q & Co. - Cody Elliott - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.261Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xxf6se6ko8yzgkx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.656Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Leopardo Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Derik Aasen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dpaasen@leopardo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "301 East Battlefield Road, Springfield",
+ "Job_Codes": "3827 - Humana-Mercy - Battlefield Retail Clinic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Humana-Mercy - Battlefield Retail Clinic - 301 East Battlefield Road, Springfield - Leopardo Construction",
+ "Job_Name": "Humana-Mercy - Battlefield Retail Clinic",
+ "Job_Number": "3827",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3827 - Humana-Mercy - Battlefield Retail Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2244230441",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3827 - Humana-Mercy - Battlefield Retail Clinic - 301 East Battlefield Road, Springfield - Leopardo Construction - Derik Aasen - 2244230441",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.314Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ipjqb4mbb8zou9u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.790Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Townsend, Grant",
+ "Contact_Notes": "",
+ "Contact_Person": "Grant Townsend ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1031 Rye, Nixa",
+ "Job_Codes": "3826 - Ceiling repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling repair - 1031 Rye, Nixa - Townsend, Grant",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "3826",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3826 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/03/24 3:17 PM Beth Cardoza Eddie viewing noon on Friday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173000099",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3826 - Ceiling repair - 1031 Rye, Nixa - Townsend, Grant - Grant Townsend - 4173000099",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.361Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w7wylw59t9muf2t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:57.892Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lifestyle Contractors",
+ "Contact_Notes": "",
+ "Contact_Person": "Aaron Christ ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "3825 - Tall Timbers",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3825%20Tall%20Timbers&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Tall Timbers - Hollister - Lifestyle Contractors",
+ "Job_Name": "Tall Timbers",
+ "Job_Number": "3825",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3825 - Tall Timbers",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/09/24 3:38 PM Beth Cardoza Sent Yellowstone and Zion plan estimates---\n08/30/24 3:31 PM Beth Cardoza Bill Mayberry reference. Use Wildcat pricing and supply through Wildcat---\n08/30/24 3:30 PM Beth Cardoza Our standard includes a knockdown texture on the walls and tree bark on the lid.\nAll outside corners are square and there are no arches anywhere in these houses. \nPossible 4 way window wraps. Add as option.\nHat channel will b\n08/30/24 3:29 PM Beth Cardoza 50 minute drive?---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175271069",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3825 - Tall Timbers - Hollister - Lifestyle Contractors - Aaron Christ - 4175271069",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.405Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wouazvc36898bxl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.000Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Riva Ridge Rd, Spfd",
+ "Job_Codes": "3824 - LWH #26",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3824%20LWH%2025%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH #26 - Riva Ridge Rd, Spfd - Everlasting",
+ "Job_Name": "LWH #26",
+ "Job_Number": "3824",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3824 - LWH #26",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/24/25 10:33 AM Beth Cardoza CO: Patches after 1/9---\n02/04/25 3:35 PM Beth Cardoza Put January costs together but there will be more patches coming up.---\n02/05/25 2:05 PM Beth Cardoza There were items not billable so need to look at notes.---\n09/25/24 8:34 AM david cardoza Stock 19,204\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3824 - LWH #26 - Riva Ridge Rd, Spfd - Everlasting - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.453Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ekig92wosp8slx3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.112Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3823 - BL Bld 9 #401 utility repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL Bld 9 #401 utility repair - - Krueger, Paul",
+ "Job_Name": "BL Bld 9 #401 utility repair",
+ "Job_Number": "3823",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3823 - BL Bld 9 #401 utility repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3823 - BL Bld 9 #401 utility repair - - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.509Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pb7lzl5yg07fg0z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.228Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ava",
+ "Job_Codes": "3822 - Ava Police",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ava Police - Ava - KCI",
+ "Job_Name": "Ava Police",
+ "Job_Number": "3822",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3822 - Ava Police",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3822 - Ava Police - Ava - KCI - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.553Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kmgva6485j5okeq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.340Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ava",
+ "Job_Codes": "3821 - Ava Police",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ava Police - Ava - A2D",
+ "Job_Name": "Ava Police",
+ "Job_Number": "3821",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3821 - Ava Police",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3821 - Ava Police - Ava - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.601Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k1sxprk4aicyn1c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.456Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "254 Country Hills Dr, Branson",
+ "Job_Codes": "3820 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 254 Country Hills Dr, Branson - Krueger, Paul",
+ "Job_Name": "Bath",
+ "Job_Number": "3820",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3820 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3820 - Bath - 254 Country Hills Dr, Branson - Krueger, Paul - Paul Krueger - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.657Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "twevsom66hvgi2u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.576Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3819 - LWH 25",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3819%20LWH%2025%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH 25 - - Everlasting Homes",
+ "Job_Name": "LWH 25",
+ "Job_Number": "3819",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3819 - LWH 25",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/04/25 8:01 AM Beth Cardoza CO: WH Lot 25 has a repair that the homeowner has requested. We have 3 access panels in the back bedroom he wants patched \nCeiling---\n03/25/25 2:04 PM Beth Cardoza Jay on the 10th---\n10/23/24 9:57 AM Beth Cardoza CO?? Couple of walls (152 sqft) delayed in basement. Julio charged us 4 hours (which is almost 4 times the footage rate) however, he did it on the last day he was there. He didn't actually have to come back a different day. Q\n10/09/24 9:07 AM david cardoza Stock 19,624\nSecond stock 480\nTotal stock 20,104\nNo leftover---\n08/26/24 12:36 PM Beth Cardoza Eddie walk-through notes 8/26/24, \nLWH Lot 25 (New east side)\nThree car garage at 10 foot high over concrete\nSingle level house with basement\n5 rooms 10' flat\nThe rest is 9 foot flat, basement all 9' flat---\n08/23/24 1:25 PM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3819 - LWH 25 - - Everlasting Homes - Jerry Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.701Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rzee16z6wtk0xpn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.695Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Polocoser, Claudia",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1686 N Carnegie Rd, Nixa",
+ "Job_Codes": "3818 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 1686 N Carnegie Rd, Nixa - Polocoser, Claudia",
+ "Job_Name": "Addition",
+ "Job_Number": "3818",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3818 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/11/24 10:31 AM Beth Cardoza Eddie didn't call to view soon enough and they went a different direction.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177707234",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3818 - Addition - 1686 N Carnegie Rd, Nixa - Polocoser, Claudia - - 4177707234",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.745Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "72xuxi3tw0zs63w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.796Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen McMillin ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1708 E Holiday, Spfd",
+ "Job_Codes": "3817 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 1708 E Holiday, Spfd - McMillin, Allen",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "3817",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3817 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3817 - Popcorn scrape - 1708 E Holiday, Spfd - McMillin, Allen - Allen McMillin - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.794Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nktoz4v38oi9u80",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:58.928Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen McMillin ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Long Bend Rd, Galena",
+ "Job_Codes": "3816 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - Long Bend Rd, Galena - McMillin, Allen",
+ "Job_Name": "Repairs",
+ "Job_Number": "3816",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3816 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3816 - Repairs - Long Bend Rd, Galena - McMillin, Allen - Allen McMillin - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.845Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oo2ogdv7qd9izll",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.040Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Johnson, Rick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick Johnson ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2535 State Hwy M, Nixa",
+ "Job_Codes": "3815 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2535 State Hwy M, Nixa - Johnson, Rick",
+ "Job_Name": "N/A",
+ "Job_Number": "3815",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3815 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/28/24 11:42 AM Beth Cardoza We were not able to get to even looking at it in time. Found someone else---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9512181059",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3815 - N/A - 2535 State Hwy M, Nixa - Johnson, Rick - Rick Johnson - 9512181059",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.889Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tlglilvkhdfhtle",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.168Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Marsha (417) 887-7134 or Eric 417-830-7880",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2153 S Hampton, Spfd",
+ "Job_Codes": "3814 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 2153 S Hampton, Spfd - Friga",
+ "Job_Name": "Rehab",
+ "Job_Number": "3814",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3814 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 5:53 PM Beth Cardoza Assume not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3814 - Rehab - 2153 S Hampton, Spfd - Friga - Marsha (417) 887-7134 or Eric 417-830-7880 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.937Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hsdfrstj2r7uy17",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.287Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Montgomery, Linda",
+ "Contact_Notes": "",
+ "Contact_Person": "Linda ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1162 W Ichabod Ct, Nixa",
+ "Job_Codes": "3813 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3813%20Repairs%20%281162%20W%20Ichabod%20Ct%2C%20Nixa%29%20%28Montgomery%2C%20Linda%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 1162 W Ichabod Ct, Nixa - Montgomery, Linda",
+ "Job_Name": "Repairs",
+ "Job_Number": "3813",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3813 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173509417",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3813 - Repairs - 1162 W Ichabod Ct, Nixa - Montgomery, Linda - Linda - 4173509417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:21:59.985Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ugn4lr1rqcj7tph",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.395Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "###job###",
+ "Job_Codes": "3812 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - ###job### - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3812",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3812 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3812 - N/A - ###job### - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.037Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "occnkqwibe83u6k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.495Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3811 - Garage repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage repair - Ozark - King, Brad",
+ "Job_Name": "Garage repair",
+ "Job_Number": "3811",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3811 - Garage repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/20/24 11:51 AM Beth Cardoza Water damage in garage. Soffit---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3811 - Garage repair - Ozark - King, Brad - Alex - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.081Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mdodbigx2rsspla",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.615Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Construct",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1739 Hemlock Rd, Ozark",
+ "Job_Codes": "3810 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 1739 Hemlock Rd, Ozark - Construct",
+ "Job_Name": "Repair",
+ "Job_Number": "3810",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3810 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3810 - Repair - 1739 Hemlock Rd, Ozark - Construct - Construct - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.134Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jiz9b7ib5fupn6h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.725Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7779 State Hwy Z, Fordland",
+ "Job_Codes": "3809 - Walls",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Walls - 7779 State Hwy Z, Fordland - King, Brad",
+ "Job_Name": "Walls",
+ "Job_Number": "3809",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3809 - Walls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3809 - Walls - 7779 State Hwy Z, Fordland - King, Brad - Alex - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.182Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5yjm66hbu1h5oi2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.868Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Nesbitt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "801 S Kings Ave",
+ "Job_Codes": "3808 - MSU Locker Room",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3808%20MSU%20Locker%20Room&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "MSU Locker Room - 801 S Kings Ave - Nesbitt",
+ "Job_Name": "MSU Locker Room",
+ "Job_Number": "3808",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3808 - MSU Locker Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3808 - MSU Locker Room - 801 S Kings Ave - Nesbitt - Mike Nesbitt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.242Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qgpflbllqd0hsqa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:29:59.988Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Nesbitt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3807 - Terra Green",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Terra Green - Spfd - Nesbitt",
+ "Job_Name": "Terra Green",
+ "Job_Number": "3807",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3807 - Terra Green",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3807 - Terra Green - Spfd - Nesbitt - Mike Nesbitt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.297Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x5w16fee2wle6sy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.104Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Liming, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Liming ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4954 N FR 197, Spfd",
+ "Job_Codes": "3806 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3806%20%204954%20N%20FR%20197%2C%20Spfd%20%5BLiming%2C%20Don%20%28417%29%20224%2D4104%5D&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 4954 N FR 197, Spfd - Liming, Don",
+ "Job_Name": "N/A",
+ "Job_Number": "3806",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3806 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/05/24 7:07 AM david cardoza Stock 7,472\nLeftover 1,352\nHang 6,120---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172244104",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3806 - N/A - 4954 N FR 197, Spfd - Liming, Don - Don Liming - 4172244104",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.341Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fev561fn7q0cllk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.216Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Chipley, Craig",
+ "Contact_Notes": "",
+ "Contact_Person": "Craig ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "811 W Jackson Ave, Nixa",
+ "Job_Codes": "3805 - Ceiling repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3805%20Ceiling%20repair%20%28811%20W%20Jackson%20Ave%2C%20Nixa%29%20%28Chipley%2C%20Craig%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ceiling repair - 811 W Jackson Ave, Nixa - Chipley, Craig",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "3805",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3805 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4803951802",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3805 - Ceiling repair - 811 W Jackson Ave, Nixa - Chipley, Craig - Craig - 4803951802",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.401Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8c16lgrg0jrhnmz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.348Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2115 S. Fremont Ave Suite 4200",
+ "Job_Codes": "3804 - Mercy Maternal Fetal Med Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3804%20Mercy%20Maternal%20Fetal%20Med%20Remodel&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Mercy Maternal Fetal Med Remodel - 2115 S. Fremont Ave Suite 4200 - DeWitt",
+ "Job_Name": "Mercy Maternal Fetal Med Remodel",
+ "Job_Number": "3804",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3804 - Mercy Maternal Fetal Med Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3804 - Mercy Maternal Fetal Med Remodel - 2115 S. Fremont Ave Suite 4200 - DeWitt - Tony Blackstock - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.445Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qyntp52mca0fu5h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.469Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Blanton Construction - St. Peters",
+ "Contact_Notes": "",
+ "Contact_Person": "David Graf ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dave@blantonconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "525 South National Avenue",
+ "Job_Codes": "3803 - Wendys on National",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3803%20Wendys%20National&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wendys on National - 525 South National Avenue - Blanton Construction - St. Peters",
+ "Job_Name": "Wendys on National",
+ "Job_Number": "3803",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3803 - Wendys on National",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362621117",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3803 - Wendys on National - 525 South National Avenue - Blanton Construction - St. Peters - David Graf - 6362621117",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.493Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q1duo1mxik04gbt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.597Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ava",
+ "Job_Codes": "3802 - Ava Early Childhood",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3802%20Ava%20Early%20Childhood&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ava Early Childhood - Ava - DeWitt",
+ "Job_Name": "Ava Early Childhood",
+ "Job_Number": "3802",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3802 - Ava Early Childhood",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3802 - Ava Early Childhood - Ava - DeWitt - Kim Lucas - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.541Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xe3vu3397dsbkvw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.711Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ava",
+ "Job_Codes": "3801 - Ava Police Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3801%20DeWitt%20Ava%20Police%20Station&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ava Police Station - Ava - DeWitt",
+ "Job_Name": "Ava Police Station",
+ "Job_Number": "3801",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3801 - Ava Police Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3801 - Ava Police Station - Ava - DeWitt - Kim Lucas - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.582Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4yvub0yb1si8u5x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:00.824Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Myler",
+ "Docs_Uploaded": true,
+ "Due_Date": "2024-08-29 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "jmyler@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1001 Primrose, Springfield, MO 65807",
+ "Job_Codes": "3800 - CoxHealth Ear, Nose & Throat Clinic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3800 - Cox Ear, Nose and Throat",
+ "Job_Full_Name": "CoxHealth Ear, Nose & Throat Clinic - 1001 Primrose, Springfield, MO 65807 - DeWitt",
+ "Job_Name": "CoxHealth Ear, Nose & Throat Clinic",
+ "Job_Number": "3800",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3800FXEX - CoxHealth Ear, Nose & Throat Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "Awarded---02/21/25 11:15 AM Regina McClain Change order #5186 has been approved and signed.---\n02/10/25 11:21 AM Regina McClain Change orders submitted #5187, 5191, 5200, 5205---",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178814820",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3800FXEX - CoxHealth Ear, Nose & Throat Clinic - 1001 Primrose, Springfield, MO 65807 - DeWitt - Joe Myler - 4178814820",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.631Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ablw2gdpkjtl4l9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-19 19:49:46.835Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3799 - Terra Green Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Terra Green Dental - Springfield - Construct",
+ "Job_Name": "Terra Green Dental",
+ "Job_Number": "3799",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3799 - Terra Green Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3799 - Terra Green Dental - Springfield - Construct - Seth - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.683Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6arc43yxuv8vnao",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:01.128Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "13895 Tassel Rd, St Robert",
+ "Job_Codes": "3798 - Ammons Tape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ammons Tape - 13895 Tassel Rd, St Robert - Larsen, Steve",
+ "Job_Name": "Ammons Tape",
+ "Job_Number": "3798",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3798 - Ammons Tape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3798 - Ammons Tape - 13895 Tassel Rd, St Robert - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.729Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nj6il4yb1ivbmsx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:01.292Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1700 S 14th Ave, Ozark",
+ "Job_Codes": "3797 - Bilyeu Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bilyeu Repairs - 1700 S 14th Ave, Ozark - Larsen, Steve",
+ "Job_Name": "Bilyeu Repairs",
+ "Job_Number": "3797",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3797 - Bilyeu Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3797 - Bilyeu Repairs - 1700 S 14th Ave, Ozark - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.769Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vr53vgxdktil8pu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:01.452Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3228 S Bedford, Spfd",
+ "Job_Codes": "3796 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 3228 S Bedford, Spfd - Larsen, Steve",
+ "Job_Name": "Water damage",
+ "Job_Number": "3796",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3796 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3796 - Water damage - 3228 S Bedford, Spfd - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.813Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6s04hsn9io472j8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:01.600Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "613 W Bryant St, Nixa",
+ "Job_Codes": "3795 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3795%20Repairs%20%28613%20W%20Bryant%20St%2C%20Nixa%29%20%28Solar%20Solutions%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 613 W Bryant St, Nixa - Solar Solutions",
+ "Job_Name": "Repairs",
+ "Job_Number": "3795",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3795 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172098635",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3795 - Repairs - 613 W Bryant St, Nixa - Solar Solutions - Tim - 4172098635",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.865Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1wsasoznqrjogf7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:01.748Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ellis, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Ellis ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1701 S Fort, Spfd",
+ "Job_Codes": "3794 - Mansion at Elfindale tbar repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mansion at Elfindale tbar repair - 1701 S Fort, Spfd - Ellis, Gary",
+ "Job_Name": "Mansion at Elfindale tbar repair",
+ "Job_Number": "3794",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3794 - Mansion at Elfindale tbar repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/05/24 2:24 PM Beth Cardoza Had someone else do it. (missed each other a couple of times. they were anxious to get it done)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173003301",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3794 - Mansion at Elfindale tbar repair - 1701 S Fort, Spfd - Ellis, Gary - Gary Ellis - 4173003301",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.913Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m24vpsjoxvo6nsw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:01.908Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Scribner, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Scribner ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "83 Fraker Rd, Buffalo",
+ "Job_Codes": "3793 - Lot 4",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3793%20Lot%204%20%2883%20Fraker%20Rd%2C%20Buffalo%29%20%28Scribner%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lot 4 - 83 Fraker Rd, Buffalo - Scribner, Mark",
+ "Job_Name": "Lot 4",
+ "Job_Number": "3793",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3793 - Lot 4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/06/24 10:22 AM Beth Cardoza We plan on breaking ground in the next couple of weeks. Same finish specs as last time. I'm planning on doing non-vaulted 9' ceilings again in the main area and around 11' in garage.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9135793709",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3793 - Lot 4 - 83 Fraker Rd, Buffalo - Scribner, Mark - Mark Scribner - 9135793709",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:00.957Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z95c2rxwtb1ot8a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.084Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Battlefield",
+ "Job_Codes": "3792 - BFFD Maintenance Blding",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3792%20BFFD%20%28RKC%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "BFFD Maintenance Blding - Battlefield - RKC",
+ "Job_Name": "BFFD Maintenance Blding",
+ "Job_Number": "3792",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3792 - BFFD Maintenance Blding",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3792 - BFFD Maintenance Blding - Battlefield - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.002Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q3akzfjzn45gu6r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.200Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sweeney, Katherine",
+ "Contact_Notes": "",
+ "Contact_Person": "Katherine Sweeney",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "723 Serendipity Dr, Galena",
+ "Job_Codes": "3791 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 723 Serendipity Dr, Galena - Sweeney, Katherine",
+ "Job_Name": "Remodel",
+ "Job_Number": "3791",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3791 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/19/24 4:07 PM Beth Cardoza Death in the family. Job on hold. Will contact us when ready---\n08/05/24 10:52 AM Beth Cardoza 830 Tuesday look at this---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3791 - Remodel - 723 Serendipity Dr, Galena - Sweeney, Katherine - Katherine Sweeney - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.053Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x7lqymw0yj1bztn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.316Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "165 Pinehurst Dr, Branson",
+ "Job_Codes": "3790 - Currier",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3790%20Currier%20%28Pinehurst%20Dr%2C%20Branson%29%20%28Masterpiece%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Currier - 165 Pinehurst Dr, Branson - Masterpiece",
+ "Job_Name": "Currier",
+ "Job_Number": "3790",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3790 - Currier",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/20/25 10:26 AM david cardoza Stock\nMain level 16,208\nBasement 9,092\n( includes 34 pcs 1/4\" x 8')\nTotal stock 25,300\n2,864 leftover\nHang 22,436---\n01/22/25 2:05 PM Beth Cardoza He is wanting an updated estimate. Waiting for REW board count?---\n01/16/25 4:37 PM Beth Cardoza CO: No finish on vault ceilings in entry and main room (confirm before creating change order.)---\n01/17/25 2:03 PM Beth Cardoza Approx 254 sqft---\n01/13/25 12:13 PM Beth Cardoza 1st gate. Gate code is: 1973.\nLance's phone number: 417-337-1382---\n01/13/25 12:10 PM Beth Cardoza 3-4 weeks out. Dave to look at to update quote (Tom doesn't think it's as high as the original plans)---\n08/05/24 5:06 PM Beth Cardoza No window wraps.\nSquare corner bead.\n\nYou supply material.\n\n5/8\" on ceilings.\n\nBranson Hills\n\nEuroWorld Design plans\n\nLight orange peel.\nWould like a number for my budget soon but the job won’t be ready for 3 months---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172943100",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3790 - Currier - 165 Pinehurst Dr, Branson - Masterpiece - Tom Caruso - 4172943100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.102Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yjcirij4wemiv1w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.428Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Title Max",
+ "Contact_Notes": "",
+ "Contact_Person": "Mrs. Brooke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1325 W. Kearney",
+ "Job_Codes": "3789 - Title Max",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3789%20Title%20Max&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Title Max - 1325 W. Kearney - Title Max",
+ "Job_Name": "Title Max",
+ "Job_Number": "3789",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3789FX - Title Max",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3789FX - Title Max - 1325 W. Kearney - Title Max - Mrs. Brooke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.161Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9ow4575gyqtime5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.536Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cortega Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jack Nyemetz ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jnyemetz@contegracc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1200 North Haseltine Road, Springfield, MO 65802",
+ "Job_Codes": "3788 - Cold Zone at PIC West TI",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3788%20Cold%20Zone&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cold Zone at PIC West TI - 1200 North Haseltine Road, Springfield, MO 65802 - Cortega Construction",
+ "Job_Name": "Cold Zone at PIC West TI",
+ "Job_Number": "3788",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3788 - Cold Zone at PIC West TI",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6185016639",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3788 - Cold Zone at PIC West TI - 1200 North Haseltine Road, Springfield, MO 65802 - Cortega Construction - Jack Nyemetz - 6185016639",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.209Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5fhe5855um2gh5i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.648Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Allen, Nicole",
+ "Contact_Notes": "",
+ "Contact_Person": "Nicole Allen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1418 S Kelby Pkwy, Nixa",
+ "Job_Codes": "3787 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1418 S Kelby Pkwy, Nixa - Allen, Nicole",
+ "Job_Name": "Repairs",
+ "Job_Number": "3787",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3787 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178184517",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3787 - Repairs - 1418 S Kelby Pkwy, Nixa - Allen, Nicole - Nicole Allen - 4178184517",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.257Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dan7dzcme89gflo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.760Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lenard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Lenard Properties ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "606 E Daniels, Ozark",
+ "Job_Codes": "3786 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 606 E Daniels, Ozark - Lenard Properties",
+ "Job_Name": "Repairs",
+ "Job_Number": "3786",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3786 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177252125",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3786 - Repairs - 606 E Daniels, Ozark - Lenard Properties - Lenard Properties - 4177252125",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.306Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mor9lhn1yl3xbic",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.863Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "378 Lakefront Cir, Kim City",
+ "Job_Codes": "3785 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3785%20Remodel%20%28378%20Lakefront%20Cir%2C%20Kim%20City%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 378 Lakefront Cir, Kim City - Pitts, Doug",
+ "Job_Name": "Remodel",
+ "Job_Number": "3785",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3785 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/17/24 2:16 PM Beth Cardoza CO: outlet patches and stuff---\n08/07/24 2:13 PM Beth Cardoza Dave walked and has notes I believe---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3785 - Remodel - 378 Lakefront Cir, Kim City - Pitts, Doug - Doug Pitts - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.354Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pof858fx4lf6g9j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:02.968Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bolin, Jamie",
+ "Contact_Notes": "",
+ "Contact_Person": "Jamie Bolin ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3784 - Step Thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step Thru - - Bolin, Jamie",
+ "Job_Name": "Step Thru",
+ "Job_Number": "3784",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3784 - Step Thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/31/24 4:18 PM Beth Cardoza Didn't want to wait till Tuesday morning so she found someone else---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178381348",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3784 - Step Thru - - Bolin, Jamie - Jamie Bolin - 4178381348",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.399Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fv2jvhuf9qpxtct",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.084Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "julie wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "3783 - Thrasher",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3783%20Thrasher%20Ross&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Thrasher - Republic - Ross Construction Group",
+ "Job_Name": "Thrasher",
+ "Job_Number": "3783",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3783 - Thrasher",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3783 - Thrasher - Republic - Ross Construction Group - julie wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.449Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kukr9tzpioh8why",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.196Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McGhee, Quentin",
+ "Contact_Notes": "",
+ "Contact_Person": "Quentin McGhee ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "637 Meadowview Ln, Saddlebrooke",
+ "Job_Codes": "3782 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3782%20Repairs%20%28637%20Meadowview%20Ln%2C%20Saddlebrooke%29%20%28McGhee%2C%20Quentin%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 637 Meadowview Ln, Saddlebrooke - McGhee, Quentin",
+ "Job_Name": "Repairs",
+ "Job_Number": "3782",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3782 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176193540",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3782 - Repairs - 637 Meadowview Ln, Saddlebrooke - McGhee, Quentin - Quentin McGhee - 4176193540",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.501Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rqrkvwoutos9so6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.312Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Signature Home Comfort Heating and Air",
+ "Contact_Notes": "",
+ "Contact_Person": "Homeowner: 417-838-6941 Billing: Justin Kellogg 417-224-3743",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6121 W Farm Rd 178, Brookline",
+ "Job_Codes": "3781 - Step thu",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thu - 6121 W Farm Rd 178, Brookline - Signature Home Comfort Heating and Air",
+ "Job_Name": "Step thu",
+ "Job_Number": "3781",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3781 - Step thu",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3781 - Step thu - 6121 W Farm Rd 178, Brookline - Signature Home Comfort Heating and Air - Homeowner: 417-838-6941 Billing: Justin Kellogg 417-224-3743 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.549Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cecn4sf4w7xmagl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.425Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3780 - Scribner Oils Office repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Scribner Oils Office repair - - A2D",
+ "Job_Name": "Scribner Oils Office repair",
+ "Job_Number": "3780",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3780 - Scribner Oils Office repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3780 - Scribner Oils Office repair - - A2D - Nathan - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.593Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c874z4mj6ijco4t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.552Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "nhenderson@a2dconstructors.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3779 - I tooth Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "I tooth Dental - Ozark - A2D",
+ "Job_Name": "I tooth Dental",
+ "Job_Number": "3779",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3779 - I tooth Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3779 - I tooth Dental - Ozark - A2D - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.637Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dierf835ptncml4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.676Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reller, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Reller ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "535 Edgewater Cir Ridgedale",
+ "Job_Codes": "3778 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3778%20%20%28535%20Edgewater%20Cir%20Ridgedale%29%20%28Reller%2C%20Gary%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 535 Edgewater Cir Ridgedale - Reller, Gary",
+ "Job_Name": "N/A",
+ "Job_Number": "3778",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3778 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/24/24 3:33 PM Beth Cardoza Not planning to break ground until June 2025. Getting numbers for bank---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9099108574",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3778 - N/A - 535 Edgewater Cir Ridgedale - Reller, Gary - Gary Reller - 9099108574",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.685Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mfebk0gg2jcuiyw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.796Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1330 S Hwy 5, Mansfield",
+ "Job_Codes": "3777 - Office ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3777%20Office%20ceiling%20%281330%20S%20Hwy%205%2C%20Mansfield%29%20%28Larsen%2C%20Steve%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Office ceiling - 1330 S Hwy 5, Mansfield - Larsen, Steve",
+ "Job_Name": "Office ceiling",
+ "Job_Number": "3777",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3777 - Office ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3777 - Office ceiling - 1330 S Hwy 5, Mansfield - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.737Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fo1wgis0mhovl0a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:03.912Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "608 N 7th Ave, Ozark",
+ "Job_Codes": "3776 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3776%20Addition%20%28608%20N%207th%20Ave%2C%20Ozark%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Addition - 608 N 7th Ave, Ozark - Concept2Completion",
+ "Job_Name": "Addition",
+ "Job_Number": "3776",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3776 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/24/24 11:29 AM Beth Cardoza Eddie to walk job on Monday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172242294",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3776 - Addition - 608 N 7th Ave, Ozark - Concept2Completion - Tim Schwenke - 4172242294",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.789Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cv24zja9uvpacgq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.024Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lee, Kaye",
+ "Contact_Notes": "",
+ "Contact_Person": "Kaye Lee",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rivercut",
+ "Job_Codes": "3775 - Texture repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture repair - Rivercut - Lee, Kaye",
+ "Job_Name": "Texture repair",
+ "Job_Number": "3775",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3775 - Texture repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/07/24 11:18 AM Beth Cardoza Job canceled. She found another way to take care of it---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172685293",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3775 - Texture repair - Rivercut - Lee, Kaye - Kaye Lee - 4172685293",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.846Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c3nihhz1l2cu3ub",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.149Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Horton, Sheena",
+ "Contact_Notes": "",
+ "Contact_Person": "Sheena Horton",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "558 Avionics Ave, Ozark",
+ "Job_Codes": "3774 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3774%20%20%28558%20Avionics%20Ave%2C%20Ozark%29%20%28Horton%2C%20Sheena%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 558 Avionics Ave, Ozark - Horton, Sheena",
+ "Job_Name": "N/A",
+ "Job_Number": "3774",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3774 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/11/24 8:38 AM david cardoza Stock 2,870\nSecond stock 384\nThird stock 160 MR\nTotal stock 3,414---\n07/23/24 1:54 PM Beth Cardoza Dave walkthrough notes: Single level mother-in-law quarters\n\nBasically one bedroom, one bath and one main area with laundry, etc. All 9 foot flat.\n\nThere is a garage, but we are not hanging any drywall in the garage except fo",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176196646",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3774 - N/A - 558 Avionics Ave, Ozark - Horton, Sheena - Sheena Horton - 4176196646",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.890Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2qshzzdakff9wyc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.287Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Boen Kemp Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Copeland ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@boenkempconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Sunshine Town Center",
+ "Job_Codes": "3773 - Olive Garden",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3773%20Olive%20Garden&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Olive Garden - Sunshine Town Center - Boen Kemp Construction",
+ "Job_Name": "Olive Garden",
+ "Job_Number": "3773",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3773 - Olive Garden",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3773 - Olive Garden - Sunshine Town Center - Boen Kemp Construction - Chris Copeland - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.949Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dibvilc68aos4jr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.405Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3772 - Skyline Ridge Lot 9 ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3772%20Lot%207%20ceiling%20%28%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Skyline Ridge Lot 9 ceiling - Omaha, AR - Peach Tree",
+ "Job_Name": "Skyline Ridge Lot 9 ceiling",
+ "Job_Number": "3772",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3772 - Skyline Ridge Lot 9 ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175270457",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3772 - Skyline Ridge Lot 9 ceiling - Omaha, AR - Peach Tree - Chad Meadows - 4175270457",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:01.993Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cbia3c9l3cr1lyo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.512Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Snyder Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Randall Hawkins ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3771 - APO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3771FX%20APO&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "APO - Springfield - Snyder Construction Group",
+ "Job_Name": "APO",
+ "Job_Number": "3771",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3771 - APO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173007465",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3771 - APO - Springfield - Snyder Construction Group - Randall Hawkins - 4173007465",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.037Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kkits4q7mgx8qz5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.624Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Withers, Rob",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob Withers ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5667 S. FR 99, Republic",
+ "Job_Codes": "3770 - Barndominium",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3770%20Barndominium%20%28Republic%29%20%28Withers%2C%20Rob%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Barndominium - 5667 S. FR 99, Republic - Withers, Rob",
+ "Job_Name": "Barndominium",
+ "Job_Number": "3770",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3770 - Barndominium",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/18/25 9:30 AM Beth Cardoza And there’s one more patch to do in the ceiling, homeowners moved a light. FYI.\nWithers\nSee picture in voxer---\n03/14/25 3:11 PM Beth Cardoza CO: Patches HVAC/Electrical. Scheduled for Wednesday---\n10/31/24 6:51 AM david cardoza Stock 16,156\nSecond stock 160 WR\nFinal stock 624\nTotal stock 16,940\nLeftover 48\nFinal hang 16,892---\n07/30/24 2:34 PM Beth Cardoza Confirm if he is supplying drywall or if we are.---\n07/17/24 11:08 AM Beth Cardoza As per our conversation attached you will find a pdf file for the Schliem Build in Republic, MO.\nShould be self explanatory however in the event you have any questions do not hesitate to reach out to me.\n Main Floor - 14",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178607397",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3770 - Barndominium - 5667 S. FR 99, Republic - Withers, Rob - Rob Withers - 4178607397",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.081Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "slkdwnrkv37orii",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.741Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River North",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Horman",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "up North",
+ "Job_Codes": "3769 - James River North",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James River North - up North - James River North",
+ "Job_Name": "James River North",
+ "Job_Number": "3769",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3769FXEX - James River North",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3769FXEX - James River North - up North - James River North - Bob Horman - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.126Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ve9uu22exr9ndy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:04.861Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Harms ",
+ "Docs_Uploaded": true,
+ "Due_Date": "1990-01-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "ASAP",
+ "EXT": 0,
+ "Email": "jeff.harms@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1850 S Maiden Ln, Joplin, MO",
+ "Job_Codes": "3768 - JRC Joplin Soundbooth",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3768 - JRC - Joplin",
+ "Job_Full_Name": "JRC Joplin Soundbooth - 1850 S Maiden Ln, Joplin, MO - James River Church",
+ "Job_Name": "JRC Joplin Soundbooth",
+ "Job_Number": "3768",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3768FXEX - JRC Joplin Soundbooth",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175815433",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3768FXEX - JRC Joplin Soundbooth - 1850 S Maiden Ln, Joplin, MO - James River Church - Jeff Harms - 4175815433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.185Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9j2g3niqvbgy6ct",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:50.729Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Horizon Retail Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Amanda Lagred Project Coordinator ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "amandal@horizonretail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Boulevard, 570, Branson",
+ "Job_Codes": "3767 - Helzberg Diamonds 512 Branson",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3767%20Helzberg%20Diamonds%20Branson&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Helzberg Diamonds 512 Branson - 300 Tanger Boulevard, 570, Branson - Horizon Retail Construction",
+ "Job_Name": "Helzberg Diamonds 512 Branson",
+ "Job_Number": "3767",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3767 - Helzberg Diamonds 512 Branson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2628656233",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3767 - Helzberg Diamonds 512 Branson - 300 Tanger Boulevard, 570, Branson - Horizon Retail Construction - Amanda Lagred Project Coordinator - 2628656233",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.230Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cifm6l1acmh4eok",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:05.088Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "3766 - Nixa Fire",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Fire - Nixa - Friga",
+ "Job_Name": "Nixa Fire",
+ "Job_Number": "3766",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3766 - Nixa Fire",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3766 - Nixa Fire - Nixa - Friga - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.277Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jpr132zm4l4vqc7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:05.204Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Page, Jordan",
+ "Contact_Notes": "",
+ "Contact_Person": "Jordan Page ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Crane",
+ "Job_Codes": "3765 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Crane - Page, Jordan",
+ "Job_Name": "N/A",
+ "Job_Number": "3765",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3765 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/11/24 3:53 PM Beth Cardoza I Emailed him: Hi Jordan,\n\nLooks like your ballpark numbers are $3,000 for the drywall board and $5,300 for the Labor and finish material to hang and finish with an orange peel texture. for a total of $8,300. Figured based on\n07/11/24 11:19 AM Beth Cardoza Just needs a ballpark number for a simple one level, 8' flat ceilings house. 1440 floor sqft house in Crane. Just in beginning bidding process. No plans yet, just looking for ballpark prices---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174614086",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3765 - N/A - Crane - Page, Jordan - Jordan Page - 4174614086",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.321Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k8ohx8kt799c3ns",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:05.333Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1427 W State Highway J, Ozark, Missouri 65721",
+ "Job_Codes": "3764 - I Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3764%20Terra%20Green&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "I Dental - 1427 W State Highway J, Ozark, Missouri 65721 - A2D",
+ "Job_Name": "I Dental",
+ "Job_Number": "3764",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3764 - I Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3764 - I Dental - 1427 W State Highway J, Ozark, Missouri 65721 - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.377Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xemz9bsjvjivwf8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:05.452Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Eggleston, Tiffany",
+ "Contact_Notes": "",
+ "Contact_Person": "Tiffany Eggleston ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "3763 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement - Nixa - Eggleston, Tiffany",
+ "Job_Name": "Basement",
+ "Job_Number": "3763",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3763 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/15/24 12:59 PM Beth Cardoza 830 am Wednesday Eddie to walk this---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178617914",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3763 - Basement - Nixa - Eggleston, Tiffany - Tiffany Eggleston - 4178617914",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.421Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2tvyxn4l61dgbzh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:05.864Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "3762 - Nixa Fire",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3762%20Nixa%20Fire%20%28A2D%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixa Fire - Nixa - A2D",
+ "Job_Name": "Nixa Fire",
+ "Job_Number": "3762",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3762 - Nixa Fire",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3762 - Nixa Fire - Nixa - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.470Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jrsp47u0t3cjqeq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:05.976Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "James Ramsey",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1366 N FR237",
+ "Job_Codes": "3761 - Strang Bathroom",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Strang Bathroom - 1366 N FR237 - Weber Homes",
+ "Job_Name": "Strang Bathroom",
+ "Job_Number": "3761",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3761 - Strang Bathroom",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3761 - Strang Bathroom - 1366 N FR237 - Weber Homes - James Ramsey - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.522Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c86lbw7o1qs1wfn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.093Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Johnson, Sarah",
+ "Contact_Notes": "",
+ "Contact_Person": "Sarah Johnson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sarahjd3@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Lenapi Rd, Billings",
+ "Job_Codes": "3760 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 300 Lenapi Rd, Billings - Johnson, Sarah",
+ "Job_Name": "Patch",
+ "Job_Number": "3760",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3760 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178399470",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3760 - Patch - 300 Lenapi Rd, Billings - Johnson, Sarah - Sarah Johnson - 4178399470",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.575Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rm2l27uz3v8wvp7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.212Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3759 - LWH 19",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3759%20LWH%2019%20%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH 19 - - Everlasting Homes",
+ "Job_Name": "LWH 19",
+ "Job_Number": "3759",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3759 - LWH 19",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/24/24 9:00 AM david cardoza Stock 11,404---\n07/08/24 2:31 PM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3759 - LWH 19 - - Everlasting Homes - Gerald Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.622Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t6w1muj5vchrfhm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.320Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3758 - LWH 18",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3758%20LWH%2018%20%28Everlasting%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LWH 18 - - Everlasting Homes",
+ "Job_Name": "LWH 18",
+ "Job_Number": "3758",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3758 - LWH 18",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/22/24 12:12 PM david cardoza Stock 11,050\nLeftover 56 feet\nHang 10,994---\n07/10/24 1:21 PM Beth Cardoza Dave walk-through notes, 7/9/24:\nSingle level house pretty much like most of the rest of the ones we’ve done out here for Jerry\nThree car garage at 11 foot over concrete\nPrimary height of the house is 9 foot flat.\nMaster bedr\n07/08/24 2:31 PM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3758 - LWH 18 - - Everlasting Homes - Gerald Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.673Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j7t7gs3lywooujf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.424Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "236 Riverdale Ct, Ozark",
+ "Job_Codes": "3757 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 236 Riverdale Ct, Ozark - Burnett Homes",
+ "Job_Name": "Remodel",
+ "Job_Number": "3757",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3757 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 10:55 AM Beth Cardoza Cracks in turret. Need to give Jerry a quote.---\n07/16/24 3:56 PM Beth Cardoza Assuming TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3757 - Remodel - 236 Riverdale Ct, Ozark - Burnett Homes - Gerald Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.725Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n81bq2vfl0pm1le",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.532Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BK Foods LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Hobbs ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bradhobbs12@hotmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rogersville MO",
+ "Job_Codes": "3756 - KFC/Taco Bell",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "KFC/Taco Bell - Rogersville MO - BK Foods LLC",
+ "Job_Name": "KFC/Taco Bell",
+ "Job_Number": "3756",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3756FX - KFC/Taco Bell",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175432027",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3756FX - KFC/Taco Bell - Rogersville MO - BK Foods LLC - Brad Hobbs - 4175432027",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.777Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dncjojckoht6iik",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.640Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Flattem",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "111 Pinehurst Dr. Branson, MO 65616",
+ "Job_Codes": "3755 - Swann Dermatology",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/:f:/r/sites/Team/Shared%20Documents/General/Operations%20%5BServer%5D/1%20Job%20Pages/4%20In%20Progress%20Commercial/%5B3755%5D%20%5BRoss%5D%20%5BSwann%20Dermatology%5D%20%5Bpbid%5D?csf=1&web=1&e=AP4CJF",
+ "Job_Full_Name": "Swann Dermatology - 111 Pinehurst Dr. Branson, MO 65616 - Ross Construction Group",
+ "Job_Name": "Swann Dermatology",
+ "Job_Number": "3755",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3755FX - Swann Dermatology",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "Awarded",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178189962",
+ "Project_Manager": "Rick",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3755FX - Swann Dermatology - 111 Pinehurst Dr. Branson, MO 65616 - Ross Construction Group - Matt Flattem - 4178189962",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.821Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sppkd324m9ojyh9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.752Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whitmer, Heather",
+ "Contact_Notes": "",
+ "Contact_Person": "Heather Whitmer ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "99 Admiral Dr, Branson",
+ "Job_Codes": "3754 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 99 Admiral Dr, Branson - Whitmer, Heather",
+ "Job_Name": "Finish",
+ "Job_Number": "3754",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3754 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/11/24 10:11 AM Beth Cardoza Never heard back---\n07/19/24 3:35 PM Beth Cardoza On hold. They had to go out of town due to family death. Probably should reach out next week though---\n07/03/24 2:31 PM Beth Cardoza Eddie has Appointment for monday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175932601",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3754 - Finish - 99 Admiral Dr, Branson - Whitmer, Heather - Heather Whitmer - 4175932601",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.877Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6id1e3ln3tpmpmc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.868Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "klucas@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2770 Republic Road",
+ "Job_Codes": "3753 - Commerce Bank",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3753%20Commerce%20Bank%20%28DeWitt%20%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Commerce Bank - 2770 Republic Road - Dewitt",
+ "Job_Name": "Commerce Bank",
+ "Job_Number": "3753",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3753 - Commerce Bank",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179427984",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3753 - Commerce Bank - 2770 Republic Road - Dewitt - Kim Lucas - 4179427984",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.933Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0ty2coxgu96s3o1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:06.980Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3752 - LWH 21 Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 21 Repairs - Spfd - Everlasting Homes",
+ "Job_Name": "LWH 21 Repairs",
+ "Job_Number": "3752",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3752 - LWH 21 Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3752 - LWH 21 Repairs - Spfd - Everlasting Homes - Gerald Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:02.978Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bsmg221hmzkdrrf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.080Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Russell, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Russell ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3751 - office repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "office repair - Spfd - Russell, John",
+ "Job_Name": "office repair",
+ "Job_Number": "3751",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3751 - office repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/19/24 2:07 PM Beth Cardoza Sent TM work order---\n07/19/24 3:33 PM Beth Cardoza Actually, email bounced and I called. They needed the work done before middle of next week and we aren't going to be able to get it done in time so I called back and left a voicemail confirming that we couldn't get to it that",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174935232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3751 - office repair - Spfd - Russell, John - John Russell - 4174935232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.029Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rqnsa4cfg7eqg6z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.187Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "119 Oakridge Ct, Branson",
+ "Job_Codes": "3750 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3750%20Repairs%20%28119%20Oakridge%20Ct%2C%20Branson%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 119 Oakridge Ct, Branson - Peach Tree",
+ "Job_Name": "Repairs",
+ "Job_Number": "3750",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3750 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175270457",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3750 - Repairs - 119 Oakridge Ct, Branson - Peach Tree - Chad Meadows - 4175270457",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.082Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p28qfd0aibzgjit",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.293Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hodge, Dennis",
+ "Contact_Notes": "",
+ "Contact_Person": "Dennis Hodge ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Emerald Pointe",
+ "Job_Codes": "3749 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3749%20%20%28Emerald%20Pointe%29%20%28Hodge%2C%20Dennis%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Emerald Pointe - Hodge, Dennis",
+ "Job_Name": "N/A",
+ "Job_Number": "3749",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3749 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/16/24 9:52 AM Beth Cardoza I emailed and told him he had a bill due to the architect as I was asked to do. Never heard anything back. But I don't think we want to work with him anyway.---\n07/01/24 3:40 PM Beth Cardoza RED FLAG: GAVE FRAUDULENT CHECK TO ARCHITECT.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174097166",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3749 - N/A - Emerald Pointe - Hodge, Dennis - Dennis Hodge - 4174097166",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.123Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ihp652fcth2q7xb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.408Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rupar, Christa",
+ "Contact_Notes": "",
+ "Contact_Person": "Christa Rupar ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1410 S Briar Ave, Spfd",
+ "Job_Codes": "3748 - Popcorn",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 1410 S Briar Ave, Spfd - Rupar, Christa",
+ "Job_Name": "Popcorn",
+ "Job_Number": "3748",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3748 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176228897",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3748 - Popcorn - 1410 S Briar Ave, Spfd - Rupar, Christa - Christa Rupar - 4176228897",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.174Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "psepwmgwzhp72b8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.521Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1001 E Chestnut Expressway Springfield",
+ "Job_Codes": "3747 - OTC Center for Workforce",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3747%20OTC%20Center%20for%20Workforce&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "OTC Center for Workforce - 1001 E Chestnut Expressway Springfield - Killian Construction",
+ "Job_Name": "OTC Center for Workforce",
+ "Job_Number": "3747",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3747 - OTC Center for Workforce",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3747 - OTC Center for Workforce - 1001 E Chestnut Expressway Springfield - Killian Construction - Blake Lahr - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.222Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ab1imk7tf7jghzn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.636Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rose, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Rose ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1035 E Gaslight Dr, Spfd",
+ "Job_Codes": "3746 - Step thu",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thu - 1035 E Gaslight Dr, Spfd - Rose, Scott",
+ "Job_Name": "Step thu",
+ "Job_Number": "3746",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3746 - Step thu",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178183876",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3746 - Step thu - 1035 E Gaslight Dr, Spfd - Rose, Scott - Scott Rose - 4178183876",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.274Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x86qd6ylgwjv0a2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.748Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2142 N Taylor Ave, Spfd",
+ "Job_Codes": "3745 - Gray",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3745%20Gray%20%282142%20N%20Taylor%20Ave%2C%20Spfd%29%20%28Larsen%2C%20Steve%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Gray - 2142 N Taylor Ave, Spfd - Larsen, Steve",
+ "Job_Name": "Gray",
+ "Job_Number": "3745",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3745 - Gray",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/21/24 11:25 AM david cardoza stock 3745\nsecond stock 192\nTotal hang 3456\nNo leftover---\n08/15/24 3:40 PM Beth Cardoza 6184 lock box taylor Ave---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3745 - Gray - 2142 N Taylor Ave, Spfd - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.321Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z5y8eietw2zvayj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.864Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3087 W State Hwy F, Ozark",
+ "Job_Codes": "3744 - Smith Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Smith Ceiling - 3087 W State Hwy F, Ozark - Larsen, Steve",
+ "Job_Name": "Smith Ceiling",
+ "Job_Number": "3744",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3744 - Smith Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3744 - Smith Ceiling - 3087 W State Hwy F, Ozark - Larsen, Steve - Steve Larsen - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.365Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xz4uisvwv91lrys",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:07.976Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gallant, Joe",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Gallant ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "13 Hillside Dr, Nixa",
+ "Job_Codes": "3743 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 13 Hillside Dr, Nixa - Gallant, Joe",
+ "Job_Name": "Remodel",
+ "Job_Number": "3743",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3743 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172076744",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3743 - Remodel - 13 Hillside Dr, Nixa - Gallant, Joe - Joe Gallant - 4172076744",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.413Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0stboxc2m7cvg7s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.113Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3742 - Collapsed ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Collapsed ceiling - - Solar Solutions",
+ "Job_Name": "Collapsed ceiling",
+ "Job_Number": "3742",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3742 - Collapsed ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172098635",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3742 - Collapsed ceiling - - Solar Solutions - Tim - 4172098635",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.474Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xjguttf422ruvhe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.221Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Buffalo HS",
+ "Contact_Notes": "",
+ "Contact_Person": "X",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "X",
+ "Job_Codes": "3741 - XD",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "XD - X - Buffalo HS",
+ "Job_Name": "XD",
+ "Job_Number": "3741",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3741 - XD",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3741 - XD - X - Buffalo HS - X - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.517Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7mf67r23jvucme6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.340Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Vista, Omaha, AR",
+ "Job_Codes": "3740 - Skyline Ridge Lot 7",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3740%20Skyline%20Ridge%20Lot%207%20%28Omaha%2C%20AR%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Skyline Ridge Lot 7 - Vista, Omaha, AR - Peach Tree",
+ "Job_Name": "Skyline Ridge Lot 7",
+ "Job_Number": "3740",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3740 - Skyline Ridge Lot 7",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/10/25 5:57 PM Beth Cardoza Estimate higher than he assumed. We may try to give him a break if we can.---\n01/31/25 7:40 AM david cardoza Stock 5,744\nNo leftover---\n01/27/25 6:00 PM Beth Cardoza Confirmed L4. Bid new plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175270457",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3740 - Skyline Ridge Lot 7 - Vista, Omaha, AR - Peach Tree - Chad Meadows - 4175270457",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.569Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "62r9oajjeruwwma",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.472Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "180 Club Rd, Ridgedale",
+ "Job_Codes": "3739 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 180 Club Rd, Ridgedale - Baty, Gary",
+ "Job_Name": "Patches",
+ "Job_Number": "3739",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3739 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371169",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3739 - Patches - 180 Club Rd, Ridgedale - Baty, Gary - Gary Baty - 4173371169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.618Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rlxabk3jjqqhqn3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.583Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "191 Timberline Dr, Forsyth",
+ "Job_Codes": "3738 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 191 Timberline Dr, Forsyth - Baty, Gary",
+ "Job_Name": "Remodel",
+ "Job_Number": "3738",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3738 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371169",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3738 - Remodel - 191 Timberline Dr, Forsyth - Baty, Gary - Gary Baty - 4173371169",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.669Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yu7ys1fcagkvpbo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.700Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ladd, Dustin",
+ "Contact_Notes": "",
+ "Contact_Person": "Dustin Ladd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8199 W Farm Rd 106, Willard",
+ "Job_Codes": "3737 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3737%20%20%288199%20W%20Farm%20Rd%20106%2C%20Willard%29%20%28Ladd%2C%20Dustin%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 8199 W Farm Rd 106, Willard - Ladd, Dustin",
+ "Job_Name": "N/A",
+ "Job_Number": "3737",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3737 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5736251412",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3737 - N/A - 8199 W Farm Rd 106, Willard - Ladd, Dustin - Dustin Ladd - 5736251412",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.721Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b730i7wxjtnkkun",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.804Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weiss, Randy",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy Weiss",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "170 Wilshire Dr. Unit 80, Hollister",
+ "Job_Codes": "3736 - Condo Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Condo Repairs - 170 Wilshire Dr. Unit 80, Hollister - Weiss, Randy",
+ "Job_Name": "Condo Repairs",
+ "Job_Number": "3736",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3736 - Condo Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/11/24 10:32 AM Beth Cardoza We are doing this TM. Verbally agreed to that.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3736 - Condo Repairs - 170 Wilshire Dr. Unit 80, Hollister - Weiss, Randy - Randy Weiss - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.773Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9dwxmf2fjqkn8fe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:08.928Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3735 - Branson Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3735%20Branson%20Office%20%28Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Office - Branson - Still, Mark",
+ "Job_Name": "Branson Office",
+ "Job_Number": "3735",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3735 - Branson Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/25/24 5:12 PM Beth Cardoza Mike sent plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3735 - Branson Office - Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.830Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gvdz1aj7azhib3s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.040Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tracy",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2136 Pythian",
+ "Job_Codes": "3734 - Hyspeco",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3734%20%20Hyspeco%20%28%20Oakgrove%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hyspeco - 2136 Pythian - Oakgrove Construction",
+ "Job_Name": "Hyspeco",
+ "Job_Number": "3734",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3734FX - Hyspeco",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3734FX - Hyspeco - 2136 Pythian - Oakgrove Construction - Tracy - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.881Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x6gpp66z4ymqpmv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.148Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "First Baptist Church Elsey",
+ "Contact_Notes": "",
+ "Contact_Person": "Jesse Chase ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "36534 State Hwy 413, Crane",
+ "Job_Codes": "3733 - Popcorn",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn - 36534 State Hwy 413, Crane - First Baptist Church Elsey",
+ "Job_Name": "Popcorn",
+ "Job_Number": "3733",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3733 - Popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172293310",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3733 - Popcorn - 36534 State Hwy 413, Crane - First Baptist Church Elsey - Jesse Chase - 4172293310",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.933Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7ym6gao3450cgev",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.256Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McCully, Mac",
+ "Contact_Notes": "",
+ "Contact_Person": "Mac McCully",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3732 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - - McCully, Mac",
+ "Job_Name": "Crack",
+ "Job_Number": "3732",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3732 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/24 2:36 PM Beth Cardoza I believe this is a duplicate of First Baptist Church Elsey (Mac is the pastor there)---\n06/21/24 3:47 PM Beth Cardoza Eddie to view on Tuesday at 9 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177149221",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3732 - Crack - - McCully, Mac - Mac McCully - 4177149221",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:03.990Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7mcc7ocy8ldgbw5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.361Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brooks, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Brooks",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3731 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Branson - Brooks, John",
+ "Job_Name": "Remodel",
+ "Job_Number": "3731",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3731 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/24 10:06 AM Beth Cardoza Never heard back---\n06/25/24 5:07 PM Beth Cardoza He was supposed to send plans. I haven't received anything yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173420859",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3731 - Remodel - Branson - Brooks, John - John Brooks - 4173420859",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.045Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e1hz0n0tynhaskx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.468Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3730 - Whisper Cove",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3730%20Whisper%20Cove%20%28Branson%29%20%28Still%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Whisper Cove - Branson - Still, Mark",
+ "Job_Name": "Whisper Cove",
+ "Job_Number": "3730",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3730 - Whisper Cove",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3730 - Whisper Cove - Branson - Still, Mark - Mike Steel - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.101Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jfnecapizxpmah0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.604Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jamco",
+ "Contact_Notes": "",
+ "Contact_Person": "Joseph Miller ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2720 E Division St, Spfd",
+ "Job_Codes": "3729 - Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3729%2E2%20Ceiling%20%26%20patches%20%28Hunt%2C%20Conner%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wall - 2720 E Division St, Spfd - Jamco",
+ "Job_Name": "Wall",
+ "Job_Number": "3729",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3729 - Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178308141",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3729 - Wall - 2720 E Division St, Spfd - Jamco - Joseph Miller - 4178308141",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.170Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j0ud1cz06fs70cl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.720Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Superintendent ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "498 N Sundown Dr, Ozark",
+ "Job_Codes": "3728 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 498 N Sundown Dr, Ozark - Nav Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "3728",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3728 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/24 2:07 PM Beth Cardoza 2585 garage door code---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178727333",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3728 - Repairs - 498 N Sundown Dr, Ozark - Nav Construction - Superintendent - 4178727333",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.225Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j8pgzqu08rd466z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:09.855Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "891 Ranch Estates Dr, Highlandville",
+ "Job_Codes": "3727 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3727%20Basement%20%28Highlandville%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 891 Ranch Estates Dr, Highlandville - Concept2Completion",
+ "Job_Name": "Basement",
+ "Job_Number": "3727",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3727 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/19/24 7:29 AM david cardoza stock 6,496\nLeftover 368\nHang 6,128---\n06/19/24 1:12 PM Beth Cardoza Stomp knockdown orange peel. no window wraps, square corners, easy access to basement doors. Just needs estimate doesn't need to be exact. Will review when/if it gets close per actual board count, etc.---\n06/19/24 1:20 PM Beth Cardoza Since he only needed a rough estimate I went ahead and sent without Rick's review. He can do that if it's awarded (Tim is just bidding it)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3727 - Basement - 891 Ranch Estates Dr, Highlandville - Concept2Completion - Tim Schwenke - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.274Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v9a9ai3r256tmbt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:10.027Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "julie",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3726 - SRC Phase 5",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3726%20Ross%20SRC%20Phase%205&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "SRC Phase 5 - Springfield - Ross Construction Group",
+ "Job_Name": "SRC Phase 5",
+ "Job_Number": "3726",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3726 - SRC Phase 5",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3726 - SRC Phase 5 - Springfield - Ross Construction Group - julie - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.321Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "enajd021fd7xa72",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:10.193Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3725 - WH 27 (East)",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "WH 27 (East) - Spfd - Everlasting Homes",
+ "Job_Name": "WH 27 (East)",
+ "Job_Number": "3725",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3725 - WH 27 (East)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/24 8:57 AM david cardoza Stock 11,488\nLeftover 48\nHang 11,440---\n06/26/24 11:35 AM Beth Cardoza Dave walkthrough notes 6/25/24 WH 27\n\n(37.2313700, -93.1775059)\n\nSingle level house\nThree car garage at 10 feet over concrete\n\nMain living area and entry 11 foot flat\n\nMaster bedroom double vaulted at 15 foot no X crack need\n06/18/24 2:28 PM Beth Cardoza Estimate pending walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3725 - WH 27 (East) - Spfd - Everlasting Homes - Gerald Burnett - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.370Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5ea7xzkng1v267m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:10.361Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6108 S Bluff Ridge, Ozark",
+ "Job_Codes": "3724 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3724%20%20%286108%20S%20Bluff%20Ridge%2C%20Ozark%29%20%28A2D%20Constructors%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 6108 S Bluff Ridge, Ozark - A2D Constructors",
+ "Job_Name": "N/A",
+ "Job_Number": "3724",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3724 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/07/24 10:35 AM Beth Cardoza CO: patch around bathtub that is being replaced. Neither the bathtub or the door/window area is ready for us yet even though we’ve been at the job this week per their request.---\n08/28/24 1:40 PM Beth Cardoza CO on CO: The arch door way into the shower as framed wrong and was off center so they tore out our drywall and are reframing it and we'll have to reinstall. We are texturing the rest today.---\n08/05/24 10:36 AM Beth Cardoza CO: Moving or working around stuff in the bedroom we are demoing ceiling in. Nathan said we were charging him for that but it's not in the estimate. Bob and Carlos are the ones doing it. Also, found out today he wants Ram bo",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3724 - N/A - 6108 S Bluff Ridge, Ozark - A2D Constructors - Nathan Henderson - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.421Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c7uw7xcojuhiq06",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:10.540Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "876 Siler, Spfd",
+ "Job_Codes": "3723 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3723%20%20%28876%20Siler%2C%20Spfd%29%20%28Colton%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 876 Siler, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3723",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3723 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/08/24 8:04 AM david cardoza Stock 11,032\nLeftover 40\nHang 10,992---\n06/14/24 3:11 PM Beth Cardoza I need to see what our normal finishes are and then a bid with smooth walls with a very light texture ceiling. They don’t want to see much.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172992407",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3723 - N/A - 876 Siler, Spfd - Colton, Jim - Jim Colton - 4172992407",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.469Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "owy56es4d41npl7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:10.712Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5943 S Clay Ave, Spfd",
+ "Job_Codes": "3722 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3722%20%20%285943%20S%20Clay%20Ave%2C%20Spfd%29%20%28Colton%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 5943 S Clay Ave, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3722",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3722 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/11/24 6:59 AM david cardoza Stock 13,568\nSecond stock from shop 32\nThird stock 128\nTotal 13,728---\n06/14/24 3:04 PM Beth Cardoza Just sent plans for me to get an estimate off of.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172992407",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3722 - N/A - 5943 S Clay Ave, Spfd - Colton, Jim - Jim Colton - 4172992407",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.513Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i965o78hnrb1fvi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:10.885Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burchett, Gina",
+ "Contact_Notes": "",
+ "Contact_Person": "Gina Burchett ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "105 E End Rd, Branson",
+ "Job_Codes": "3721 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 105 E End Rd, Branson - Burchett, Gina",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "3721",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3721 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/24 11:20 AM Beth Cardoza Estimate too high for her---\n06/14/24 1:49 PM Beth Cardoza Eddie to view on Monday morning---\n06/14/24 1:49 PM Beth Cardoza 39 minute drive from the office---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3107092706",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3721 - Popcorn scrape - 105 E End Rd, Branson - Burchett, Gina - Gina Burchett - 3107092706",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.561Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rk1z86zr8b5nemw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Julich ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jjulich@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1106 West Jackson Street, Ozark, MO 65721",
+ "Job_Codes": "3720 - Christian County Operations Phase 1",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Christian County Operations Phase 1 - 1106 West Jackson Street, Ozark, MO 65721 - Killian Construction",
+ "Job_Name": "Christian County Operations Phase 1",
+ "Job_Number": "3720",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3720 - Christian County Operations Phase 1",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175203224",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3720 - Christian County Operations Phase 1 - 1106 West Jackson Street, Ozark, MO 65721 - Killian Construction - Jeff Julich - 4175203224",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.617Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7fr0z1k22aenb79",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.160Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rectenwald Brothers Construction, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Ian Schemm ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ischemm@rectenwald.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "S. Campbell",
+ "Job_Codes": "3719 - USPS S. Campbell",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "USPS S. Campbell - S. Campbell - Rectenwald Brothers Construction, Inc.",
+ "Job_Name": "USPS S. Campbell",
+ "Job_Number": "3719",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3719 - USPS S. Campbell",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "7247728282",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3719 - USPS S. Campbell - S. Campbell - Rectenwald Brothers Construction, Inc. - Ian Schemm - 7247728282",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.665Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h6cnd3s2j00sobn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.261Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Place Services Inc",
+ "Contact_Notes": "",
+ "Contact_Person": "Dylan Stanhope ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dylan.stanhope@psi.works",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "S. Campbell",
+ "Job_Codes": "3718 - USPS",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "USPS - S. Campbell - Place Services Inc",
+ "Job_Name": "USPS",
+ "Job_Number": "3718",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3718 - USPS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6785228727",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3718 - USPS - S. Campbell - Place Services Inc - Dylan Stanhope - 6785228727",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.713Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wsc4bonclbmwyln",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.376Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brummel, Kristi & Darren",
+ "Contact_Notes": "",
+ "Contact_Person": "Darren Brummel",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1501 Cody Rd, Nixa",
+ "Job_Codes": "3717 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3717%20Repairs%20%281501%20Cody%20Rd%2C%20Nixa%29%20%28Brummel%2C%20Kristi%20%26%20Darren%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 1501 Cody Rd, Nixa - Brummel, Kristi & Darren",
+ "Job_Name": "Repairs",
+ "Job_Number": "3717",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3717 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/14/24 1:56 PM Beth Cardoza Eddie viewing 6:30 am on Tuesday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174172521",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3717 - Repairs - 1501 Cody Rd, Nixa - Brummel, Kristi & Darren - Darren Brummel - 4174172521",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.773Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xggnlv0wih5pbev",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.480Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLaughlin, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4275 E FR 132, Spfd",
+ "Job_Codes": "3716 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 4275 E FR 132, Spfd - MacLaughlin, Julie",
+ "Job_Name": "Remodel",
+ "Job_Number": "3716",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3716 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/11/24 9:24 AM Beth Cardoza CO: had to move water line---\n11/04/24 1:04 PM Beth Cardoza CO: Another cut out and some more work. Maybe 2-3 hours worth? Maybe will get to it later this week.---\n09/19/24 12:27 PM Beth Cardoza CO: Closet.\nJay was working on closet and pantry this week---\n08/27/24 12:14 PM Beth Cardoza Phase 3: TM Pantry repairs. Starts after today.---\n07/31/24 2:59 PM Beth Cardoza CO: Extras. Labor on TM line item. Materials through 31st (there may be more). Check Jay's notes after 31st through completion.\n6 foot of mesh \n1/2 bag of 5 min,\n1/2 box light\n1 sheet of Sheetrock \n1 box light mud \n1 bag of 2\n07/31/24 3:29 PM Beth Cardoza 6 hours so far as well---\n07/31/24 4:44 PM Beth Cardoza CO: partial description: 2 patches a foot by a foot, one patch 2 ft tall 10 ft long, cut in a water shut off foot by foot, as far as the bathrooms upstairs Justin will have to measure and take pic for you tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178389646",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3716 - Remodel - 4275 E FR 132, Spfd - MacLaughlin, Julie - Julie - 4178389646",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.817Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y9sipyx8ds6k5su",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.588Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1238 S. Delaware, Spfld",
+ "Job_Codes": "3715 - Klemm Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3715%20Klemm%20Garage%20%28Spfd%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Klemm Garage - 1238 S. Delaware, Spfld - Weber, Bryon",
+ "Job_Name": "Klemm Garage",
+ "Job_Number": "3715",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3715 - Klemm Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/13/24 7:52 AM david cardoza Stock 1,535\nLeftover 48\nHang 1,488---\n11/11/24 3:55 PM Beth Cardoza Confirm whether we are doing the L5 or not---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3715 - Klemm Garage - 1238 S. Delaware, Spfld - Weber, Bryon - Bryon - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.870Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xq04l3m55y6bn2d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.692Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "380 Tall Oaks Dr, Branson",
+ "Job_Codes": "3714 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 380 Tall Oaks Dr, Branson - Peach Tree",
+ "Job_Name": "N/A",
+ "Job_Number": "3714",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3714 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/23/24 8:52 AM Beth Cardoza Peach tree wasn’t awarded the job---\n06/18/24 12:19 PM Beth Cardoza TM job---\n06/11/24 1:17 PM Beth Cardoza Eddie tried to look at this with Chad last Friday but clients didn't show up. Chad said he would send photos.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175721095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3714 - N/A - 380 Tall Oaks Dr, Branson - Peach Tree - Chad Meadows - 4175721095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.930Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m9zhiruvaq6kzxl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.795Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Covey, Dick",
+ "Contact_Notes": "",
+ "Contact_Person": "Dick Covey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2162 E Ridgewood, Spfd",
+ "Job_Codes": "3713 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 2162 E Ridgewood, Spfd - Covey, Dick",
+ "Job_Name": "Crack",
+ "Job_Number": "3713",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3713 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 5:30 PM Beth Cardoza Assume not awarded---\n06/18/24 12:17 PM Beth Cardoza Eddie has an appointment at 8:30am on Friday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177661125",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3713 - Crack - 2162 E Ridgewood, Spfd - Covey, Dick - Dick Covey - 4177661125",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:04.982Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kiani0g7oxtwe8p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:11.900Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3771 Knollwood, Spfd",
+ "Job_Codes": "3712 - San Poppi Ph1 Lot 4",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3712%20San%20Poppi%20Ph1%20Lot%204%20%283771%20Knollwood%2C%20Spfd%29%20%28Dowell%2C%20Kyle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "San Poppi Ph1 Lot 4 - 3771 Knollwood, Spfd - Dowell, Kyle",
+ "Job_Name": "San Poppi Ph1 Lot 4",
+ "Job_Number": "3712",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3712 - San Poppi Ph1 Lot 4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/13/25 11:47 AM Beth Cardoza CO: L5 smooth on some walls 4' up. Dave has linear footage to turn in. See photos in Voxer. Will need to mask off for texture.---\n12/26/24 8:46 AM david cardoza stock 16,132\nLeftover 32\nHang 16,100---\n11/19/24 12:12 PM Beth Cardoza Estimate (from June) needs review after job walk---\n06/06/24 5:06 PM Beth Cardoza Hoping to break ground in about a month---\n06/06/24 5:06 PM Beth Cardoza Tree bark textured ceiling, light orange peel on the walls. Window wall of dinning room level 5.\nAll windows wrapped on 3 sides with wood sills.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178603628",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3712 - San Poppi Ph1 Lot 4 - 3771 Knollwood, Spfd - Dowell, Kyle - Kyle - 4178603628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.026Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "za566nwz4avgjgp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.085Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Belew, Cathy",
+ "Contact_Notes": "",
+ "Contact_Person": "Cathy Belew ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5723 S Hampton Ave, Spfd",
+ "Job_Codes": "3711 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 5723 S Hampton Ave, Spfd - Belew, Cathy",
+ "Job_Name": "Remodel",
+ "Job_Number": "3711",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3711 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/14/24 3:02 PM Beth Cardoza Went with a different company---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173432490",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3711 - Remodel - 5723 S Hampton Ave, Spfd - Belew, Cathy - Cathy Belew - 4173432490",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.073Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3xf8s3s9lrmri7b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.216Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Nav -Steve Larsen // Home Owner - Barbara Riggle ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4004 Pin Oak Rd, Merriam Woods",
+ "Job_Codes": "3710 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 4004 Pin Oak Rd, Merriam Woods - Nav Construction",
+ "Job_Name": "Repair",
+ "Job_Number": "3710",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3710 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "SL - 417.813.6889 // HO 417.339.6823",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3710 - Repair - 4004 Pin Oak Rd, Merriam Woods - Nav Construction - Nav -Steve Larsen // Home Owner - Barbara Riggle - SL - 417.813.6889 // HO 417.339.6823",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.122Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "19avvc30qmofsx7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.352Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Falk, Dean",
+ "Contact_Notes": "",
+ "Contact_Person": "Dean Falk (417) 988-1212",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1550 Hwy AA, Galena",
+ "Job_Codes": "3709 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3709%20%20%281550%20Hwy%20AA%2C%20Galena%29%20%28Faulk%2C%20Dean%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1550 Hwy AA, Galena - Falk, Dean",
+ "Job_Name": "N/A",
+ "Job_Number": "3709",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3709 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/06/24 11:58 AM Beth Cardoza Just outside of Galena. Some kind of knockdown texture. Can decide exact when closer. no window wraps. square corners. Just getting numbers now. Might be like October before ready for drywall. We supply drywall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4179881212",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3709 - N/A - 1550 Hwy AA, Galena - Falk, Dean - Dean Falk (417) 988-1212 - 4179881212",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.170Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3pbzgu256mppgfl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.451Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Anglum, Mike & Suzanne",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 335-0458",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "317 Split Tree Ridge, Branson West",
+ "Job_Codes": "3708 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3708%20%20%28317%20Split%20Tree%20Ridge%2C%20Branson%20West%29%20%28Anglum%2C%20Mike%20%26%20Suzanne%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 317 Split Tree Ridge, Branson West - Anglum, Mike & Suzanne",
+ "Job_Name": "N/A",
+ "Job_Number": "3708",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3708 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 5:24 PM Beth Cardoza Assume not awarded---\n06/11/24 3:08 PM Beth Cardoza 8.67' ceiling in basement\n9' ceiling on main floor\nliving room has 12' walls and 8/12 pitch cathedral ceiling.\nmain bedroom has 9' walls and 6/12 pitch ceiling\n\nLet me know if you have any other questions.\n\nThanks, Mike\n\nThe \n06/06/24 1:20 PM Beth Cardoza 317 Split Tree Ridge \nBranson West, MO 65737\n\nSmooth walls\n\nmost ceilings to be textured except for master bedroom which will get papered\nnot sure on which texture. if you have samples that might help.\nkitchen and dining ro",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173350458",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3708 - N/A - 317 Split Tree Ridge, Branson West - Anglum, Mike & Suzanne - (417) 335-0458 - 4173350458",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.225Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bjfmssdw3twpw06",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.551Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brooks, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Brooks (417) 342-0859",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "236 Clay St, Branson",
+ "Job_Codes": "3707 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 236 Clay St, Branson - Brooks, John",
+ "Job_Name": "Remodel",
+ "Job_Number": "3707",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3707 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/06/24 1:15 PM Beth Cardoza This guy has a remodel project that they've started on but need his guy on something else so needs us to go finish it. There's about 12-16 sheets to hang and finish and some tape and texture upstairs as well. They've got abou",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173420589",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3707 - Remodel - 236 Clay St, Branson - Brooks, John - John Brooks (417) 342-0859 - 4173420589",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.273Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4yx8vslq43ksygm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.680Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4580 W. Calhoun St. Spfd 65802",
+ "Job_Codes": "3706 - Apac",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3706%20RKC%20APAC&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Apac - 4580 W. Calhoun St. Spfd 65802 - RKC",
+ "Job_Name": "Apac",
+ "Job_Number": "3706",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3706 - Apac",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3706 - Apac - 4580 W. Calhoun St. Spfd 65802 - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.325Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1no0icvoz6b1xol",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.792Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Wicklow",
+ "Job_Codes": "3705 - Dennis Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Dennis Patch - Wicklow - Essick, Dusty",
+ "Job_Name": "Dennis Patch",
+ "Job_Number": "3705",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3705 - Dennis Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3705 - Dennis Patch - Wicklow - Essick, Dusty - Dusty(417) 860-1127 - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.385Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rhz4h4hwe9pmg66",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:12.907Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "FR 132, Spfd",
+ "Job_Codes": "3704 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - FR 132, Spfd - Burnett Homes",
+ "Job_Name": "Patch",
+ "Job_Number": "3704",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3704 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/24/25 1:21 PM Beth Cardoza There was a water leak above the master bedroom. Need to have drywall demoed and rehung, etc. He is asking that we do all of it. I will stop over there and look at it today and see what we’re looking at. He will be in a hurry\n04/24/25 1:22 PM Beth Cardoza Jerry is going to do a couple things to it first and depending on how it works out we may not have very much to do there but for now it’s just on hold until he says to come back which will probably be sometime next week---\n03/03/25 11:13 AM Beth Cardoza A couple more patches (and finishing stairwell patches??)---\n03/07/25 12:13 PM Beth Cardoza see forwarded voxer message from Justin Miller. About an hour of his time is warranty.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3704 - Patch - FR 132, Spfd - Burnett Homes - Gerald Burnett 636-299-1362 - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.437Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2g74jicnuo5zmot",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.008Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Benett Springs",
+ "Job_Codes": "3703 - Benett Springs",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3703%20Friga%20Bennett%20Springs&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Benett Springs - Benett Springs - Friga",
+ "Job_Name": "Benett Springs",
+ "Job_Number": "3703",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3703 - Benett Springs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3703 - Benett Springs - Benett Springs - Friga - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.485Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pbsd1u2m2hqnayi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.120Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Meyers, Tracey",
+ "Contact_Notes": "",
+ "Contact_Person": "Tracey Meyers(417) 234-8852",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2058 E Cottage Blvd, Ozark",
+ "Job_Codes": "3702 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 2058 E Cottage Blvd, Ozark - Meyers, Tracey",
+ "Job_Name": "Repair",
+ "Job_Number": "3702",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3702 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172348852",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3702 - Repair - 2058 E Cottage Blvd, Ozark - Meyers, Tracey - Tracey Meyers(417) 234-8852 - 4172348852",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.542Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8injnf68knsn8w9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.227Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Sophia Laaker",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sophialaaker@qandcompanyllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3701 - Convoy of Hope",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3701%20Convoy%20of%20Hope&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Convoy of Hope - Spfd - Q and Co.",
+ "Job_Name": "Convoy of Hope",
+ "Job_Number": "3701",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3701 - Convoy of Hope",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3701 - Convoy of Hope - Spfd - Q and Co. - Sophia Laaker - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.598Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "st3265vbfj3pm7n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.356Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hesterberg, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Hesterberg (417) 773-1495",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3700 - Butzlaff",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3700%20Butzlaff%20%28Spfd%29%20%28Hesterberg%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Butzlaff - Spfd - Hesterberg, Doug",
+ "Job_Name": "Butzlaff",
+ "Job_Number": "3700",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3700 - Butzlaff",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/17/25 11:41 AM Beth Cardoza Needs re-bid---\n06/04/24 2:54 PM Beth Cardoza Treebark ceilings, light orange peel walls, no window wraps. Most corners bullnose, but some square bead. No work in basement, but stairs to basement will be finished. Job in Springfield.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177731495",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3700 - Butzlaff - Spfd - Hesterberg, Doug - Doug Hesterberg (417) 773-1495 - 4177731495",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.646Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yxhf6rz2kvmnm7w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:55.569Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mountain Grove",
+ "Job_Codes": "3699 - Signal Gas Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Signal Gas Station - Mountain Grove - A2D",
+ "Job_Name": "Signal Gas Station",
+ "Job_Number": "3699",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3699 - Signal Gas Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3699 - Signal Gas Station - Mountain Grove - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.694Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fp0yfi6tshzul5s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.584Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "479 N. Government Plaze Circle Ozark, MO 65721",
+ "Job_Codes": "3698 - Christian County Operations Bldg Phase 1",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3698%20Christian%20County%20Operations&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Christian County Operations Bldg Phase 1 - 479 N. Government Plaze Circle Ozark, MO 65721 - DeWitt",
+ "Job_Name": "Christian County Operations Bldg Phase 1",
+ "Job_Number": "3698",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3698 - Christian County Operations Bldg Phase 1",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3698 - Christian County Operations Bldg Phase 1 - 479 N. Government Plaze Circle Ozark, MO 65721 - DeWitt - Tony Blackstock - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.742Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nzbur9vn0sdsavy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.705Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pulis, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Pulis 417-860-9636",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "444 Elizabeth Dr, Ozark",
+ "Job_Codes": "3697 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 444 Elizabeth Dr, Ozark - Pulis, Steve",
+ "Job_Name": "Repair",
+ "Job_Number": "3697",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3697 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178609636",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3697 - Repair - 444 Elizabeth Dr, Ozark - Pulis, Steve - Steve Pulis 417-860-9636 - 4178609636",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.790Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "027d2qk8pr1oqk4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.843Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Yancey, Westin",
+ "Contact_Notes": "",
+ "Contact_Person": "Westin (417) 350-2779",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "155 Elk Creek Rd, Highlandville",
+ "Job_Codes": "3696 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 155 Elk Creek Rd, Highlandville - Yancey, Westin",
+ "Job_Name": "Patch",
+ "Job_Number": "3696",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3696 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173502779",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3696 - Patch - 155 Elk Creek Rd, Highlandville - Yancey, Westin - Westin (417) 350-2779 - 4173502779",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.841Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2whp6ilfs23dod5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:13.956Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Embree Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Roach",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "S. Campbell",
+ "Job_Codes": "3695 - USPS S. Campbell",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3695%20USPS&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "USPS S. Campbell - S. Campbell - Embree Construction",
+ "Job_Name": "USPS S. Campbell",
+ "Job_Number": "3695",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3695 - USPS S. Campbell",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3695 - USPS S. Campbell - S. Campbell - Embree Construction - Brandon Roach - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.894Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ozrt9yd2viaeipe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.051Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Assemblies of God",
+ "Contact_Notes": "",
+ "Contact_Person": "Gabe Combs",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3694 - Assemblies of God",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3694 - AG - HQ",
+ "Job_Full_Name": "Assemblies of God - Springfield - Assemblies of God",
+ "Job_Name": "Assemblies of God",
+ "Job_Number": "3694",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3694FXEX - Assemblies of God",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3694FXEX - Assemblies of God - Springfield - Assemblies of God - Gabe Combs - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.937Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "08slo7nfszfk9qn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:34:56.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oakgrove Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "500 East Battlefield",
+ "Job_Codes": "3693 - unknown",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3693%20Meek%20Chiropractic&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "unknown - 500 East Battlefield - Oakgrove Construction",
+ "Job_Name": "unknown",
+ "Job_Number": "3693",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3693FX - unknown",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3693FX - unknown - 500 East Battlefield - Oakgrove Construction - Dave - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:05.985Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1tkb9z5tqjts068",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.268Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "wyatt@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Hills Parkway",
+ "Job_Codes": "3692 - Dominos",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3692%20Dominos%20%28Ross%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Dominos - Branson Hills Parkway - Ross Construction Group",
+ "Job_Name": "Dominos",
+ "Job_Number": "3692",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3692 - Dominos",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3692 - Dominos - Branson Hills Parkway - Ross Construction Group - Wyatt Gann - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.029Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y9gpxbw57rvcdo0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.379Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4955 S Pratt, Spfd",
+ "Job_Codes": "3691 - skylights",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3691%20skylights%20%284955%20S%20Pratt%2C%20Spfd%29%20%28Temple%20Remodeling%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "skylights - 4955 S Pratt, Spfd - Temple Remodeling",
+ "Job_Name": "skylights",
+ "Job_Number": "3691",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3691 - skylights",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/05/24 2:01 PM Beth Cardoza Eddie to view tomorrow at 9 am to estimate how long it should take to see if the amount guessed at is sufficient---\n05/24/24 2:48 PM Beth Cardoza has 3 or 4 skylights about 4'x2' with peeling drywall and/or cracking corner beads in a few small areas and then one crack in the living room ceiling that needs to be repaired. It's stomp texture. I know it's hard to estimate",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3691 - skylights - 4955 S Pratt, Spfd - Temple Remodeling - Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.078Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zdlgpmxu64cagcu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.487Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cole Blades",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cblades@ur.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "16746 State Hwy 248",
+ "Job_Codes": "3690 - Oak Ridge Baptist",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3690%20Oak%20Ridge%20Baptist%20Church&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Oak Ridge Baptist - 16746 State Hwy 248 - Cole Blades",
+ "Job_Name": "Oak Ridge Baptist",
+ "Job_Number": "3690",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3690 - Oak Ridge Baptist",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172293897",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3690 - Oak Ridge Baptist - 16746 State Hwy 248 - Cole Blades - - 4172293897",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.123Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dq46rnc2r4qo1kk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.604Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson (417) 414-3232",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "242 River Rock Rd, Ozark",
+ "Job_Codes": "3689 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3689%20Basement%20%28242%20River%20Rock%20Rd%2C%20Ozark%29%20%28A2D%20Constructors%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Basement - 242 River Rock Rd, Ozark - A2D Constructors",
+ "Job_Name": "Basement",
+ "Job_Number": "3689",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3689 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/16/24 10:22 AM Beth Cardoza CO: Some water damage. Dave viewing today. We are supposed to be back this week to do punchlist/final check after prime, but now there's a little drywall to replace or something now.---\n10/21/24 2:45 PM Beth Cardoza Possible COs:\n- Double covering floors due to them being finished concrete\n - Additional mobilization for delay while they finish the floors\n - Concrete board on fireplace wall\n - Storage, bathroom, little wine room, and loun\n11/05/24 9:13 AM Beth Cardoza Apparently, the upstairs closet is not ready to work on yet. Maybe you guys already knew that.---\n11/05/24 9:14 AM Beth Cardoza Also on that stairwell he request that we skim out over the existing Orange peel and the existing random role on the ceiling of that stairwell\n176 sq ft\n\n and then the rest of it is new drywall and he wants it all just op wal\n11/05/24 9:17 AM Beth Cardoza - re framing & hanging soffits for window shades. Material and labor.---\n11/11/24 9:27 AM Beth Cardoza They are interrupting our finishers to pour concrete so we cannot return until Wednesday.---\n11/12/24 9:03 AM Beth Cardoza Fixing soffits labor turned in from Jason: $405.60 (I believe Miguel also worked on that)---\n11/25/24 7:19 PM Beth Cardoza CO: Materials and labor for insulation (stairs and bathroom). .25 per foot labor. 1hour management 1hour delivery---\n11/07/24 6:24 AM david cardoza Stock 4,528\nSecond stock 224\nTotal 4,752\nAlso stocked cement board 32 ft---\n09/05/24 2:33 PM Beth Cardoza the beams are all structural steel. The wood will go in after the fact.\n\nI don’t anticipate you wrapping with drywall, we would box out with blocking or plywood to support the finished wood material. We can verify the finish \n09/09/24 4:05 PM Beth Cardoza Beth it’s a level 5 from the pictures, and you need to account for the trayed ceiling \nPlease\n\nNathan Henderson---\n05/22/24 1:49 PM Beth Cardoza All new board, figure drywall all 4 sides. It will have a deep sill 12” (it may end up solid surface, but will figure drywall for now)\n\nStomp on ceiling, orange peel or knock down on walls. TBD---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3689 - Basement - 242 River Rock Rd, Ozark - A2D Constructors - Nathan Henderson (417) 414-3232 - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.178Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "84ryhlvuddg7ky5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.723Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cburke@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "801 S Kings Ave, Springfield",
+ "Job_Codes": "3688 - Kings Street Annex",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3688%20DeWitt%20%28Kings%20St%2E%20Annex%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kings Street Annex - 801 S Kings Ave, Springfield - DeWitt",
+ "Job_Name": "Kings Street Annex",
+ "Job_Number": "3688",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3688 - Kings Street Annex",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3688 - Kings Street Annex - 801 S Kings Ave, Springfield - DeWitt - Chris Burke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.233Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p1cb0ph9ds12of3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.843Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Lucas",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Klucas@dewitt-associates.com.",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "400 Gibbs Ave, Pierce City, MO",
+ "Job_Codes": "3687 - Pierce City Preschool Building Additio",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3687%20DeWitt%20%28Pierce%20City%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pierce City Preschool Building Additio - 400 Gibbs Ave, Pierce City, MO - DeWitt",
+ "Job_Name": "Pierce City Preschool Building Additio",
+ "Job_Number": "3687",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3687 - Pierce City Preschool Building Additio",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3687 - Pierce City Preschool Building Additio - 400 Gibbs Ave, Pierce City, MO - DeWitt - Kim Lucas - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.292Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6nuat7pcskkok1v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:14.975Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jamco",
+ "Contact_Notes": "",
+ "Contact_Person": "Joseph Miller (417) 830-8141",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "965 Alcorn Rd, Seymour",
+ "Job_Codes": "3686 - Chew",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3686%20Chew%20%28965%20Alcorn%20Rd%2C%20Seymour%29%20%28Jamco%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Chew - 965 Alcorn Rd, Seymour - Jamco",
+ "Job_Name": "Chew",
+ "Job_Number": "3686",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3686 - Chew",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/24 6:59 AM david cardoza First stock 3,816\nsecond stock 120\nTotal stock 3,936\nLeftover 140\nHang to Angel 3,716\n( I hung 80' myself)\nFinisher is 3,796---\n06/12/24 12:24 PM Beth Cardoza Switching finish to smooth---\n05/30/24 12:38 PM Beth Cardoza Ready in about 3 weeks---\n05/22/24 10:43 AM Beth Cardoza Sheetrock walls and ceilings only in west 12x60 wing of building.\nSheetrock walls of basement stairs enclosure.\nCathedral ceiling in south portion of infill, north to bathroom wall. Flat ceilings at 9’ in remainder of infill",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178308141",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3686 - Chew - 965 Alcorn Rd, Seymour - Jamco - Joseph Miller (417) 830-8141 - 4178308141",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.346Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6u56fggfyw3b14a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.124Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson (417) 414-3232",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3685 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - - A2D Constructors",
+ "Job_Name": "Patch",
+ "Job_Number": "3685",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3685 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3685 - Patch - - A2D Constructors - Nathan Henderson (417) 414-3232 - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.406Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1u61iwbjwqrtiz3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.233Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty 417-337-1168",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "137 Peck Ranch Rd, Theodosia",
+ "Job_Codes": "3684 - Baths",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Baths - 137 Peck Ranch Rd, Theodosia - Baty, Gary",
+ "Job_Name": "Baths",
+ "Job_Number": "3684",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3684 - Baths",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173371168",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3684 - Baths - 137 Peck Ranch Rd, Theodosia - Baty, Gary - Gary Baty 417-337-1168 - 4173371168",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.467Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7sskb2my1wjnpqe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.355Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hamilton, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Hamilton (660) 864-8264",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3683 - MIL Quarters",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "MIL Quarters - - Hamilton, Don",
+ "Job_Name": "MIL Quarters",
+ "Job_Number": "3683",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3683 - MIL Quarters",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/10/24 9:33 AM Beth Cardoza On hold for indefinite amount of time. Determining whether mother-in-law is actually moving here.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6608648264",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3683 - MIL Quarters - - Hamilton, Don - Don Hamilton (660) 864-8264 - 6608648264",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.517Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hdtanorc57nv5q0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.484Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3682 - #27RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#27RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#27RS",
+ "Job_Number": "3682",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3682 - #27RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3682 - #27RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.562Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "stbfgmij2cnomwu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.600Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "201 E. Brick Street in Ozark MO",
+ "Job_Codes": "3681 - Ozark Police Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3681%20A2D%20%28Ozark%20Police%20Station%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ozark Police Station - 201 E. Brick Street in Ozark MO - A2D",
+ "Job_Name": "Ozark Police Station",
+ "Job_Number": "3681",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3681PWEX - Ozark Police Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "PWEX",
+ "Note_Ref": [],
+ "Notes": "---09/24/24 2:03 PM IT Services https://www.voxer.com/v/9b721ec4ab---\n09/24/24 2:01 PM IT Services https://www.voxer.com/v/9b721ec4ab---\n09/24/24 2:01 PM IT Services https://www.voxer.com/v/4387b87c41---\n09/24/24 2:00 PM IT Services https://www.voxer.com/v/bde9112459---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3681PWEX - Ozark Police Station - 201 E. Brick Street in Ozark MO - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.605Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f2sf1x5bms8k1be",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.712Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bell, Rob",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob Bell (417) 861-2551",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4404 N Willow, Ozark",
+ "Job_Codes": "3680 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 4404 N Willow, Ozark - Bell, Rob",
+ "Job_Name": "Repair",
+ "Job_Number": "3680",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3680 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178612551",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3680 - Repair - 4404 N Willow, Ozark - Bell, Rob - Rob Bell (417) 861-2551 - 4178612551",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.653Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bjkgn3623fbk0ud",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.840Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3679 - LWH 22",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 22 - - Everlasting Homes",
+ "Job_Name": "LWH 22",
+ "Job_Number": "3679",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3679 - LWH 22",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/13/24 4:29 PM Beth Cardoza CO: Vanity light repairs\n\nWires in ceiling moved over kitchen island, etc\n Sooner the better---\n05/15/24 3:15 PM david cardoza Stock 13,308---\n05/14/24 2:27 PM Beth Cardoza Dave walk-through notes, 5/14/24:\n\nLake of the wild horse Lot 22\nEverlast homes \n\nThree car garage 10 ft over concrete \n\nEntry main / room at 11 foot flat \n\nMaster bedroom, double vaulted to about 14 foot high. Small flat at \n05/14/24 10:17 AM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3679 - LWH 22 - - Everlasting Homes - Gerald Burnett 636-299-1362 - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.697Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1k1lw51omd91ny3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:15.966Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burton, Clif",
+ "Contact_Notes": "",
+ "Contact_Person": "Clif Burton (417) 331-1706",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1734 Riverdale Rd, Ozark",
+ "Job_Codes": "3678 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1734 Riverdale Rd, Ozark - Burton, Clif",
+ "Job_Name": "Remodel",
+ "Job_Number": "3678",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3678 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173311706",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3678 - Remodel - 1734 Riverdale Rd, Ozark - Burton, Clif - Clif Burton (417) 331-1706 - 4173311706",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.745Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cougcoip1su8thu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.095Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Larkwood, Spfd",
+ "Job_Codes": "3677 - LWH 17",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 17 - Larkwood, Spfd - Everlasting Homes",
+ "Job_Name": "LWH 17",
+ "Job_Number": "3677",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3677 - LWH 17",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/23/24 10:28 AM Beth Cardoza CO: We have a couple repairs in lot 17. Master bathroom vanity and master closet. \nJerry Burnett---\n06/13/24 7:41 AM david cardoza Stock 11,956\nno leftover---\n05/14/24 2:53 PM Beth Cardoza LWH 17\nEverlast homes \n\nThree car garage, 11 foot over concrete \n\nMain level and entryway all 11 foot flat \n\nDining room off entryway 11 foot flat \n\nThe rest of the house is 9 foot flat except for the master bedroom which pop\n05/13/24 10:09 AM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3677 - LWH 17 - Larkwood, Spfd - Everlasting Homes - Gerald Burnett 636-299-1362 - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.801Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ym0v5zp9lpsd9j9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.208Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Chaney, Marty",
+ "Contact_Notes": "",
+ "Contact_Person": "Marty Chaney (417) 818-3553",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4634 S Kelly Ave, Spfd",
+ "Job_Codes": "3676 - Ceiling repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3676%20Ceiling%20repair%20%284634%20S%20Kelly%20Ave%2C%20Spfd%29%20%28Chaney%2C%20Marty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ceiling repair - 4634 S Kelly Ave, Spfd - Chaney, Marty",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "3676",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3676 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/25/24 4:08 PM Beth Cardoza Didn't hear back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178183553",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3676 - Ceiling repair - 4634 S Kelly Ave, Spfd - Chaney, Marty - Marty Chaney (417) 818-3553 - 4178183553",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.847Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f06m2kj0pmj2gge",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.316Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "TrueNorth Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Lauren Wilkins ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "laurenw@truenorthgc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "330 East Battlefield Road, Springfield",
+ "Job_Codes": "3675 - T-Mobile 3SHF - Springfield, MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3675%20T%20Mobile&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "T-Mobile 3SHF - Springfield, MO - 330 East Battlefield Road, Springfield - TrueNorth Construction",
+ "Job_Name": "T-Mobile 3SHF - Springfield, MO",
+ "Job_Number": "3675",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3675 - T-Mobile 3SHF - Springfield, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3149366344",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3675 - T-Mobile 3SHF - Springfield, MO - 330 East Battlefield Road, Springfield - TrueNorth Construction - Lauren Wilkins - 3149366344",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.905Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ex0npyx0x8c4s0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.428Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3674 - Springfield Glass",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3674%20Springfield%20Glass&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Springfield Glass - Springfield - RKC",
+ "Job_Name": "Springfield Glass",
+ "Job_Number": "3674",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3674 - Springfield Glass",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3674 - Springfield Glass - Springfield - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:06.957Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3z8z3gryzb7casj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.547Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "100 Sappling Dr, Branson",
+ "Job_Codes": "3673 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 100 Sappling Dr, Branson - Krueger, Paul",
+ "Job_Name": "Patch",
+ "Job_Number": "3673",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3673 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3673 - Patch - 100 Sappling Dr, Branson - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.021Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "94mr964u4qo1y1f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.652Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Innovative Dental",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6401 Innovation Avenue Ozark",
+ "Job_Codes": "3672 - Innovative Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Innovative Dental - 6401 Innovation Avenue Ozark - Innovative Dental",
+ "Job_Name": "Innovative Dental",
+ "Job_Number": "3672",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3672FX - Innovative Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174250186",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3672FX - Innovative Dental - 6401 Innovation Avenue Ozark - Innovative Dental - - 4174250186",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.073Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5vjvqw708desmkm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.784Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2255 Gretna Road Branson, MO 65616",
+ "Job_Codes": "3671 - Branson Police",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3671%20DeWitt%20%28Branson%20Police%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Police - 2255 Gretna Road Branson, MO 65616 - DeWitt",
+ "Job_Name": "Branson Police",
+ "Job_Number": "3671",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3671 - Branson Police",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3671 - Branson Police - 2255 Gretna Road Branson, MO 65616 - DeWitt - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.121Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3ot5ogkc0fdliz4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:16.895Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley (417) 766-7843",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3670 - WR Aspen",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3670%20Wilson%27s%20Ridge%20Aspen%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WR Aspen - Spfd - Finley, Jason",
+ "Job_Name": "WR Aspen",
+ "Job_Number": "3670",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3670 - WR Aspen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 10:49 AM Beth Cardoza Drywall:\n Light orange peel texture walls and ceilings\n Drywall wrap both sides and top of window openings\nAll walls are 9’ tall with flat ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3670 - WR Aspen - Spfd - Finley, Jason - Jason Finley (417) 766-7843 - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.173Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n64ovvhe9dpx98n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.013Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley (417) 766-7843",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3669 - WR Avalon",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3669%20Wilson%27s%20Ridge%20Avalon%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WR Avalon - Spfd - Finley, Jason",
+ "Job_Name": "WR Avalon",
+ "Job_Number": "3669",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3669 - WR Avalon",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 10:49 AM Beth Cardoza Drywall:\n Light orange peel texture walls and ceilings\n Drywall wrap both sides and top of window openings\nAll walls are 9’ tall with flat ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3669 - WR Avalon - Spfd - Finley, Jason - Jason Finley (417) 766-7843 - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.234Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z1jin9zwmi161tj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.123Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley (417) 766-7843",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3668 - WR Edge",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3668%20Wilson%27s%20Ridge%20Edge%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WR Edge - Spfd - Finley, Jason",
+ "Job_Name": "WR Edge",
+ "Job_Number": "3668",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3668 - WR Edge",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 10:49 AM Beth Cardoza Drywall:\n Light orange peel texture walls and ceilings\n Drywall wrap both sides and top of window openings\nAll walls are 9’ tall with flat ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3668 - WR Edge - Spfd - Finley, Jason - Jason Finley (417) 766-7843 - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.302Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8421nng2s3wk0do",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.252Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley (417) 766-7843",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3667 - WR Pinehurst",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3667%20Wilson%27s%20Ridge%20Pinehurst%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WR Pinehurst - Spfd - Finley, Jason",
+ "Job_Name": "WR Pinehurst",
+ "Job_Number": "3667",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3667 - WR Pinehurst",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 10:49 AM Beth Cardoza Drywall:\n Light orange peel texture walls and ceilings\n Drywall wrap both sides and top of window openings\nAll walls are 9’ tall with flat ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3667 - WR Pinehurst - Spfd - Finley, Jason - Jason Finley (417) 766-7843 - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.354Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hyobcqc2ozoellg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.632Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley (417) 766-7843",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3666 - WR Vue",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3666%20Wilson%27s%20Ridge%20Vue%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WR Vue - Spfd - Finley, Jason",
+ "Job_Name": "WR Vue",
+ "Job_Number": "3666",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3666 - WR Vue",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 10:48 AM Beth Cardoza Drywall:\n Light orange peel texture walls and ceilings\n Drywall wrap both sides and top of window openings\nAll walls are 9’ tall with flat ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3666 - WR Vue - Spfd - Finley, Jason - Jason Finley (417) 766-7843 - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.401Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0ns2opncjwtlw1o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.732Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Finley, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Finley (417) 766-7843",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3665 - WR Vail",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3665%20Wilson%20Ridge%20Vail%20%28Spfd%29%20%28Finley%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WR Vail - Spfd - Finley, Jason",
+ "Job_Name": "WR Vail",
+ "Job_Number": "3665",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3665 - WR Vail",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 10:48 AM Beth Cardoza Drywall:\n Light orange peel texture walls and ceilings\n Drywall wrap both sides and top of window openings\nAll walls are 9’ tall with flat ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177667843",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3665 - WR Vail - Spfd - Finley, Jason - Jason Finley (417) 766-7843 - 4177667843",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.450Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q8ns17gdf63w2hi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.856Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Stewart",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3664 - James River Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James River Church - Ozark - JRC",
+ "Job_Name": "James River Church",
+ "Job_Number": "3664",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3664FXEX - James River Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3664FXEX - James River Church - Ozark - JRC - Keith Stewart - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.501Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qcmk6i1nj36oh3r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:17.968Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Raymond",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "raymondvu7714@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2679 East Sunshine Springfield MO 65804",
+ "Job_Codes": "3663 - Justyle Nail & Spa",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3663%20Justyle%20nail%20%26%20Spa&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Justyle Nail & Spa - 2679 East Sunshine Springfield MO 65804 - Raymond",
+ "Job_Name": "Justyle Nail & Spa",
+ "Job_Number": "3663",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3663FX - Justyle Nail & Spa",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178277382",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3663FX - Justyle Nail & Spa - 2679 East Sunshine Springfield MO 65804 - Raymond - - 4178277382",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.555Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tuth08q5dcbygv3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.075Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bremmerkamp, Sam",
+ "Contact_Notes": "",
+ "Contact_Person": "Sam Bremmerkamp (417) 6292156",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "414 Yosemite Dr., Nixa",
+ "Job_Codes": "3662 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 414 Yosemite Dr., Nixa - Bremmerkamp, Sam",
+ "Job_Name": "Patches",
+ "Job_Number": "3662",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3662 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176292156",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3662 - Patches - 414 Yosemite Dr., Nixa - Bremmerkamp, Sam - Sam Bremmerkamp (417) 6292156 - 4176292156",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.601Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hdj00hd6vu33s5h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.175Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cotter, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cotter (417) 838-1396",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "410 S Clark, Bolivar",
+ "Job_Codes": "3661 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3661%20%20%28410%20S%20Clark%2C%20Bolivar%29%20%28Cotter%2C%20Brandon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 410 S Clark, Bolivar - Cotter, Brandon",
+ "Job_Name": "N/A",
+ "Job_Number": "3661",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3661 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/07/24 1:30 PM Beth Cardoza Bullnose all outside corners and 3 sides of window returns. Window bottom sills will be trimmed.\nFlat through out except master bedroom sloped at 6:12 and 12\" boxed ceiling in living room.\n\nAprox floor sqft: 1455---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178381396",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3661 - N/A - 410 S Clark, Bolivar - Cotter, Brandon - Brandon Cotter (417) 838-1396 - 4178381396",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.657Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t1vz71f08kv5inf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.280Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wes",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Willow Springs",
+ "Job_Codes": "3660 - Multi unit remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Multi unit remodel - Willow Springs - Wes",
+ "Job_Name": "Multi unit remodel",
+ "Job_Number": "3660",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3660 - Multi unit remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3660 - Multi unit remodel - Willow Springs - Wes - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.713Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i81861w1ltwfkn1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.404Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reid, Daneya",
+ "Contact_Notes": "",
+ "Contact_Person": "Daneya (417) 234-0881",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1696 W Silver Oak, Spfd",
+ "Job_Codes": "3659 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 1696 W Silver Oak, Spfd - Reid, Daneya",
+ "Job_Name": "Step thru",
+ "Job_Number": "3659",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3659 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172340881",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3659 - Step thru - 1696 W Silver Oak, Spfd - Reid, Daneya - Daneya (417) 234-0881 - 4172340881",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.768Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "85hs8e21xgetk42",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.536Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "213 6TH STREET Monett, MO 65708",
+ "Job_Codes": "3658 - BARRY-LAWRENCE LIBRARY ADMINISTRATION RENOVATION",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3658%20Friga%20%28Monett%20Library%20Reno%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "BARRY-LAWRENCE LIBRARY ADMINISTRATION RENOVATION - 213 6TH STREET Monett, MO 65708 - Friga",
+ "Job_Name": "BARRY-LAWRENCE LIBRARY ADMINISTRATION RENOVATION",
+ "Job_Number": "3658",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3658 - BARRY-LAWRENCE LIBRARY ADMINISTRATION RENOVATION",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3658 - BARRY-LAWRENCE LIBRARY ADMINISTRATION RENOVATION - 213 6TH STREET Monett, MO 65708 - Friga - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.829Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8xr71jmmrs9mask",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.648Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bird, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "303-319-4780",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "235 Rocky Shores Ridge Hollister",
+ "Job_Codes": "3657 - N/A",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 235 Rocky Shores Ridge Hollister - Bird, Scott",
+ "Job_Name": "N/A",
+ "Job_Number": "3657",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3657 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3033194780",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3657 - N/A - 235 Rocky Shores Ridge Hollister - Bird, Scott - 303-319-4780 - 3033194780",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.893Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ua4px01b54zf4am",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.753Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bullcreek Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Christian Arnold",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West Kearney Street, Springfield, MO 65803",
+ "Job_Codes": "3656 - Wendys Refresh",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3656%20Wendy%20Refresh&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wendys Refresh - West Kearney Street, Springfield, MO 65803 - Bullcreek Construction",
+ "Job_Name": "Wendys Refresh",
+ "Job_Number": "3656",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3656 - Wendys Refresh",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3656 - Wendys Refresh - West Kearney Street, Springfield, MO 65803 - Bullcreek Construction - Christian Arnold - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.949Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ju68ey0lpsu5yk4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.872Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rutherford, Tom",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Rutherford (417) 300-3148",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Wicklow, Nixa",
+ "Job_Codes": "3655 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - Wicklow, Nixa - Rutherford, Tom",
+ "Job_Name": "Repair",
+ "Job_Number": "3655",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3655 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173003148",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3655 - Repair - Wicklow, Nixa - Rutherford, Tom - Tom Rutherford (417) 300-3148 - 4173003148",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:07.993Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l8b8rhemk6zg3lb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:18.980Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3654 - Oliver office",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3654%20Oliver%20office%20%28Ozark%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Oliver office - Ozark - Essick, Dusty",
+ "Job_Name": "Oliver office",
+ "Job_Number": "3654",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3654 - Oliver office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 4:58 PM Beth Cardoza Assume not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3654 - Oliver office - Ozark - Essick, Dusty - Dusty(417) 860-1127 - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.053Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a0du98jwy1a0uz2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.117Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cowherd (417) 234-4451",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Smart Rd, Clever",
+ "Job_Codes": "3653 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3653%20%20%28Clever%29%20%28Cowherd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Smart Rd, Clever - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3653",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3653 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/23/24 8:46 AM david cardoza STOCK 15,300\nCement BOARD 128\nCement board not hung by the main hangers. Done after the scrap.\nNo drywall leftover---\n10/01/24 5:10 PM Beth Cardoza I gave up on plans and created a unit price bid. Waiting on approval from Rick.---\n06/05/24 2:22 PM Beth Cardoza New plans!---\n07/10/24 10:22 AM Beth Cardoza Was supposed to have plans ironed out and send new plans in 2-3 weeks. Haven't received anything yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172344451",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3653 - N/A - Smart Rd, Clever - Cowherd - Brandon Cowherd (417) 234-4451 - 4172344451",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.110Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d6psrve2wy1rh8x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.224Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "412 Stillwood, Branson",
+ "Job_Codes": "3652 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 412 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3652",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3652 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/01/24 2:45 PM david cardoza Stock 6,568\nNo leftover---\n04/23/24 1:18 PM Beth Cardoza Estimate waiting on walkthrough notes. Copied last estimate as a template to get POs---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3652 - N/A - 412 Stillwood, Branson - Still, Mark - Mike Steel 417-840-7855 - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.161Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oo7pcd6onobwlq6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.347Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "119 Cottonwood, Branson",
+ "Job_Codes": "3651 - Paschke",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3651%20Paschke%20%28119%20Cottonwood%2C%20Branson%29%20%28Ozark%20Mountain%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Paschke - 119 Cottonwood, Branson - Ozark Mountain Homes",
+ "Job_Name": "Paschke",
+ "Job_Number": "3651",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3651 - Paschke",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/29/25 4:18 PM Beth Cardoza Decided not to build---\n11/11/24 12:23 PM Beth Cardoza New plan. Not doing A frame, changed to standard framing---\n11/18/24 11:11 AM Beth Cardoza I believe 18’ [peak of vault] - David---\n04/23/24 1:55 PM Beth Cardoza This is an A Frame at 119 Cottonwood in Branson. We are probably 6 months from drywall. Standard finishes and three way untextured window wrap. There will not be drywall on the vaulted ceiling. Only in the bathrooms and t",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "Dave",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3651 - Paschke - 119 Cottonwood, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.213Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y7w5zlq4bibwij3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.476Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "W. Battlefield",
+ "Job_Codes": "3650 - Moureys Flooring",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3650%20Moureys%20Flooring&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Moureys Flooring - W. Battlefield - RKC",
+ "Job_Name": "Moureys Flooring",
+ "Job_Number": "3650",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3650 - Moureys Flooring",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3650 - Moureys Flooring - W. Battlefield - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.278Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d1cqw9aav11kwx7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.580Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Martinez, Henry",
+ "Contact_Notes": "",
+ "Contact_Person": "Henry Martinez 970-568-6366",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "15417 State Hwy west 76, Ava",
+ "Job_Codes": "3649 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3649%20%20%2815417%20State%20Hwy%20west%2076%2C%20Ava%29%20%28Martinez%2C%20Henry%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 15417 State Hwy west 76, Ava - Martinez, Henry",
+ "Job_Name": "N/A",
+ "Job_Number": "3649",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3649 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 4:55 PM Beth Cardoza Assume not awarded or didn't build---\n04/17/24 2:17 PM Beth Cardoza 10’ walls everywhere including garage area. This is a new build that has not started for my mother in law on our property. Just getting numbers now to make sure she can afford it. Orange peel walls and knock down ceiling. No",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9705686366",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3649 - N/A - 15417 State Hwy west 76, Ava - Martinez, Henry - Henry Martinez 970-568-6366 - 9705686366",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.330Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r5hq1axkzmfc561",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.695Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Clark Way, Strafford",
+ "Job_Codes": "3648 - Pool room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pool room - Clark Way, Strafford - Weber, Bryon",
+ "Job_Name": "Pool room",
+ "Job_Number": "3648",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3648 - Pool room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3648 - Pool room - Clark Way, Strafford - Weber, Bryon - Bryon (417) 830-2424 - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.397Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vr4v81ayjhbq8ek",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.796Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Healy Construction Services",
+ "Contact_Notes": "",
+ "Contact_Person": "Kathleen O’Donnell",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1730 E. Republic Road, Springfield",
+ "Job_Codes": "3647 - C3 Industries",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3647%20C3%20Industries&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "C3 Industries - 1730 E. Republic Road, Springfield - Healy Construction Services",
+ "Job_Name": "C3 Industries",
+ "Job_Number": "3647",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3647 - C3 Industries",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "7083960440",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3647 - C3 Industries - 1730 E. Republic Road, Springfield - Healy Construction Services - Kathleen O’Donnell - 7083960440",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.445Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fgtzb3276jzkufk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:19.912Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Advanced Construction Services",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Miller",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 S Glenstone Avenue Springfield",
+ "Job_Codes": "3646 - Warby Parker",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3646%20ACS%20%28Warby%20Parker%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Warby Parker - 2825 S Glenstone Avenue Springfield - Advanced Construction Services",
+ "Job_Name": "Warby Parker",
+ "Job_Number": "3646",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3646 - Warby Parker",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3646 - Warby Parker - 2825 S Glenstone Avenue Springfield - Advanced Construction Services - Brandon Miller - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.497Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6i4c5pikqu1xw5d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.036Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Venture Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Shell Building for Starbucks",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "W. George Phelps Blvd & S. Grand Avenue",
+ "Job_Codes": "3645 - Kim Sargent (913) 642-2972 kims@ventureconstruction.com",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3645%20Venture%20Const%2E%20%28Starbucks%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kim Sargent (913) 642-2972 kims@ventureconstruction.com - W. George Phelps Blvd & S. Grand Avenue - Venture Construction",
+ "Job_Name": "Kim Sargent (913) 642-2972 kims@ventureconstruction.com",
+ "Job_Number": "3645",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3645 - Kim Sargent (913) 642-2972 kims@ventureconstruction.com",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3645 - Kim Sargent (913) 642-2972 kims@ventureconstruction.com - W. George Phelps Blvd & S. Grand Avenue - Venture Construction - Shell Building for Starbucks - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.558Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e4whra3hk5dwhpp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.156Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "355 North Missouri Avenue, Rogersville",
+ "Job_Codes": "3644 - One Community Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3644%20RKC%20%28One%20Community%20Church%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "One Community Church - 355 North Missouri Avenue, Rogersville - RKC",
+ "Job_Name": "One Community Church",
+ "Job_Number": "3644",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3644 - One Community Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3644 - One Community Church - 355 North Missouri Avenue, Rogersville - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.623Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3l6z1m9ptyhad8p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.264Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "611 Charles Way, Strafford, MO 65757",
+ "Job_Codes": "3643 - Durham Office Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3643%20RKC%20Durham%20Office&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Durham Office Infill - 611 Charles Way, Strafford, MO 65757 - RKC",
+ "Job_Name": "Durham Office Infill",
+ "Job_Number": "3643",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3643 - Durham Office Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3643 - Durham Office Infill - 611 Charles Way, Strafford, MO 65757 - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.679Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o8dkhzhg8ij96up",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.372Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Axxys Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kayla Kruse ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "kkruse@axxysconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Boulevard, Suite 311, Branson, MO 65616",
+ "Job_Codes": "3642 - New Balance Shoes",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3642%20Axxys%20Const%2E%20%28New%20Balance%20Shoes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "New Balance Shoes - 300 Tanger Boulevard, Suite 311, Branson, MO 65616 - Axxys Construction",
+ "Job_Name": "New Balance Shoes",
+ "Job_Number": "3642",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3642 - New Balance Shoes",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3642 - New Balance Shoes - 300 Tanger Boulevard, Suite 311, Branson, MO 65616 - Axxys Construction - Kayla Kruse - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.730Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "db9p54dtt4gz75r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.476Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CEI Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken Knight (417) 343-6844",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1244 E Meadowmere, Spfd",
+ "Job_Codes": "3641 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 1244 E Meadowmere, Spfd - CEI Construction",
+ "Job_Name": "Garage",
+ "Job_Number": "3641",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3641 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/25/24 9:56 AM david cardoza Contractor hung 4,236---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173436844",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3641 - Garage - 1244 E Meadowmere, Spfd - CEI Construction - Ken Knight (417) 343-6844 - 4173436844",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.782Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n118tdd9cjo99kw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.584Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock: ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2748 N. National Springfield MO",
+ "Job_Codes": "3640 - Burrell New Youth Resiliency Campus",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3640%20Burrell%20New%20Youth%20Resiliency%20Campus&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Burrell New Youth Resiliency Campus - 2748 N. National Springfield MO - DeWitt",
+ "Job_Name": "Burrell New Youth Resiliency Campus",
+ "Job_Number": "3640",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3640 - Burrell New Youth Resiliency Campus",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3640 - Burrell New Youth Resiliency Campus - 2748 N. National Springfield MO - DeWitt - Tony Blackstock: - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.825Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1a2rm9sbqyls24f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.687Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "405 Veterans Blvd Branson, Missouri 65616",
+ "Job_Codes": "3639 - Branson Family Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3639%20A2D%20Branson%20Family%20Dental&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Family Dental - 405 Veterans Blvd Branson, Missouri 65616 - A2D",
+ "Job_Name": "Branson Family Dental",
+ "Job_Number": "3639",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3639 - Branson Family Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3639 - Branson Family Dental - 405 Veterans Blvd Branson, Missouri 65616 - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.881Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tqzxyaep1uw6m1g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.797Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BNC Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric (417) 209-5052",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1468 N. Grant Ave, Spfd",
+ "Job_Codes": "3638 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3638%20%20%281468%20N%2E%20Grant%20Ave%2C%20Spfd%29%20%28BNC%20Builders%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1468 N. Grant Ave, Spfd - BNC Builders",
+ "Job_Name": "N/A",
+ "Job_Number": "3638",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3638 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/12/24 2:28 PM Beth Cardoza This is a gut and remodel project. The ceiling height will be 8' and no vaulted Ceilings. We would like a heavy texture on the ceiling and a knock down on the walls with square edges. The windows don't need wrapped and the",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172095052",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3638 - N/A - 1468 N. Grant Ave, Spfd - BNC Builders - Eric (417) 209-5052 - 4172095052",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.926Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fadd4c66mhf3q5g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:20.900Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lennard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve (417) 444-6960. Tenants: Natashia - (254) 368-6044 Aaron - (614) 961-6697",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1983 S Farm Road 123, Spfd",
+ "Job_Codes": "3637 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1983 S Farm Road 123, Spfd - Lennard Properties",
+ "Job_Name": "Patch",
+ "Job_Number": "3637",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3637 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3637 - Patch - 1983 S Farm Road 123, Spfd - Lennard Properties - Steve (417) 444-6960. Tenants: Natashia - (254) 368-6044 Aaron - (614) 961-6697 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:08.981Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "00ha3twcmti7h2a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.000Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kirbyville",
+ "Job_Codes": "3636 - Walls",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Walls - Kirbyville - Larsen, Steve",
+ "Job_Name": "Walls",
+ "Job_Number": "3636",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3636 - Walls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 4:53 PM Beth Cardoza Assume not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3636 - Walls - Kirbyville - Larsen, Steve - Steve Larsen 417-813-6889 - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.033Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2asm3vwsm1qul0q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.100Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brundieck, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Brundieck (417) 714-4752",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "855 E Apollo Ct, Nixa",
+ "Job_Codes": "3635 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3635%20Repairs%20%28855%20E%20Apollo%20Ct%2C%20Nixa%29%20%28Brundieck%2C%20Mark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 855 E Apollo Ct, Nixa - Brundieck, Mark",
+ "Job_Name": "Repairs",
+ "Job_Number": "3635",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3635 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177144752",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3635 - Repairs - 855 E Apollo Ct, Nixa - Brundieck, Mark - Mark Brundieck (417) 714-4752 - 4177144752",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.085Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dmmm854zmnfggh4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.216Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brian Harris",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Harris ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bryan@cabbagepatchkidspreschool.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "109 N. Main Nixa",
+ "Job_Codes": "3634 - Cabbage Patch Childcare",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3634%20Cabbage%20Patch%20Childcare&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cabbage Patch Childcare - 109 N. Main Nixa - Brian Harris",
+ "Job_Name": "Cabbage Patch Childcare",
+ "Job_Number": "3634",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3634FX - Cabbage Patch Childcare",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3634FX - Cabbage Patch Childcare - 109 N. Main Nixa - Brian Harris - Brian Harris - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.129Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f1uin6zrawhm692",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.364Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hart, Stephanie",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephanie Hart",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "188 Kamell Ave, Ozark",
+ "Job_Codes": "3633 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 188 Kamell Ave, Ozark - Hart, Stephanie",
+ "Job_Name": "Repair",
+ "Job_Number": "3633",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3633 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/17/24 12:19 PM Beth Cardoza Eddie has not been able to reach her since she didn't show up when we scheduled. Figuring she changed her mind for the time being.---\n04/11/24 3:19 PM Beth Cardoza Eddie Going to look at this Monday morning.---\n04/22/24 4:17 PM Beth Cardoza She was a no show last Monday. Don't know if it's been rescheduled or what---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3633 - Repair - 188 Kamell Ave, Ozark - Hart, Stephanie - Stephanie Hart - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.186Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "clh2eevzq02i0h3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.516Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cowherd (417) 234-4451",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Meadowlark",
+ "Job_Codes": "3632 - Duplex",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Duplex - Meadowlark - Cowherd",
+ "Job_Name": "Duplex",
+ "Job_Number": "3632",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3632 - Duplex",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/24/24 4:19 PM david cardoza Pre-stock for the draft stop is 14 sheets of 8‘ x 5/8 drywall=448\nLeftover from coldwall 64\n\n(I noticed that after the main stock, there were two sheets of 8‘ x 5/8 that were lying flat in the garage that I know we’re not br",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172344451",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3632 - Duplex - Meadowlark - Cowherd - Brandon Cowherd (417) 234-4451 - 4172344451",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.241Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kivgtgk6de2plrv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.680Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2373 Quail Meadow Rd, Ozark",
+ "Job_Codes": "3631 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2373 Quail Meadow Rd, Ozark - Krueger, Paul",
+ "Job_Name": "Repairs",
+ "Job_Number": "3631",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3631 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/25 11:55 AM Beth Cardoza Paul hasn't heard anything back yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Eddie",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3631 - Repairs - 2373 Quail Meadow Rd, Ozark - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.281Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4m653zigy8les1u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.819Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Temple Remodeling: 417-866-9965 or 904-755-5689",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2475 S Bonnie Lee Ln, Rogersville",
+ "Job_Codes": "3630 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2475 S Bonnie Lee Ln, Rogersville - Temple Remodeling",
+ "Job_Name": "N/A",
+ "Job_Number": "3630",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3630 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/11/24 3:10 PM Beth Cardoza CO: We will be putting shiplap on the walls in the bathroom so if there's any way we could get less coats and save maybe $200-300 that way that would help us out a little.---\n04/12/24 2:37 PM Beth Cardoza Tape and finish bathroom walls minimally just to flatten out some for shiplap, tape and finish bathroom ceiling like normal, and new closet wall like normal. Just do what you can on the price. Thanks! (she was hoping to shave",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3630 - N/A - 2475 S Bonnie Lee Ln, Rogersville - Temple Remodeling - Temple Remodeling: 417-866-9965 or 904-755-5689 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.337Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jkadmv08tie2o5q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:21.936Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3545 West Farm Road 34, Willard, MO 65781",
+ "Job_Codes": "3629 - Landfill Office Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3629%20KCI%20%28Landfill%20Office%20Building%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Landfill Office Building - 3545 West Farm Road 34, Willard, MO 65781 - KCI",
+ "Job_Name": "Landfill Office Building",
+ "Job_Number": "3629",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3629 - Landfill Office Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175128834",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3629 - Landfill Office Building - 3545 West Farm Road 34, Willard, MO 65781 - KCI - Stephen Buechler - 4175128834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.385Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dn5oe0to4sp1q8f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.040Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Keene, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Keene (417) 379-7454",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "320 E Pacific St, Spfd",
+ "Job_Codes": "3628 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 320 E Pacific St, Spfd - Keene, Don",
+ "Job_Name": "Repairs",
+ "Job_Number": "3628",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3628 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/17/24 9:46 AM Beth Cardoza He took off some paneling and found some rotted framing so there will be additional work when it's ready. So will need CO or revised estimate.---\n04/09/24 10:34 AM Beth Cardoza Thursday appointment, 8 am - Eddie---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173797454",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3628 - Repairs - 320 E Pacific St, Spfd - Keene, Don - Don Keene (417) 379-7454 - 4173797454",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.446Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lp7olmkjjjog6xi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.140Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rippeto, Dean",
+ "Contact_Notes": "",
+ "Contact_Person": "Dean (608) 354-2030",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1701 W. Belmont St, Springfield",
+ "Job_Codes": "3627 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 1701 W. Belmont St, Springfield - Rippeto, Dean",
+ "Job_Name": "Rehab",
+ "Job_Number": "3627",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3627 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/22/24 4:06 PM Beth Cardoza This job got dropped. Dave never looked at it. I just emailed the guy to find out if he's still interested since we are also booked out about a month and he was looking for it to be done by end of April which is not going to \n04/23/24 11:45 AM Beth Cardoza He has someone else lined up for this. He has some other projects coming up and plans to contact us again about those---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6083542030",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3627 - Rehab - 1701 W. Belmont St, Springfield - Rippeto, Dean - Dean (608) 354-2030 - 6083542030",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.498Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jkp3i8cjhy5n57r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.240Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moore, Gerrie",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerrie Moore (417) 239-6961",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1905 Sunset Inn Rd, Branson",
+ "Job_Codes": "3626 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1905 Sunset Inn Rd, Branson - Moore, Gerrie",
+ "Job_Name": "Remodel",
+ "Job_Number": "3626",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3626 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/24 7:27 AM david cardoza Stock 3,824\nLeftover 32\nFinal to finisher 3,792---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172396961",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3626 - Remodel - 1905 Sunset Inn Rd, Branson - Moore, Gerrie - Gerrie Moore (417) 239-6961 - 4172396961",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.554Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ct6tybtk41c2ktt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.344Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3625 - Marshall",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3625%20Marshall%20%28Ozark%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Marshall - Ozark - Concept2Completion",
+ "Job_Name": "Marshall",
+ "Job_Number": "3625",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3625 - Marshall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/24 4:09 PM Beth Cardoza All light orange peel walls and stomp knock down ceiling.\nMain living area that shows sloped is going to be t & g wood ceiling no drywall this area.\nThis home is on a slab so garage is a 9 ft ceiling also. Small basement area",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3625 - Marshall - Ozark - Concept2Completion - Tim Schwenke (417) 224-2994 - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.597Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1lm2kwjk1u97ab8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.444Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Beth Page Ct, Branson",
+ "Job_Codes": "3624 - Schilcht",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3624%20Schilcht%20Beth%20Page%20Ct%2C%20Branson%20%28Ozark%20Mountain%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Schilcht - Beth Page Ct, Branson - Ozark Mountain Homes",
+ "Job_Name": "Schilcht",
+ "Job_Number": "3624",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3624 - Schilcht",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/05/24 1:35 PM Beth Cardoza New plans for added garage and bonus room sqft---\n04/16/24 10:22 AM Beth Cardoza It will be on a slab, three way window wrap. There are multiple vaulted ceilings and the master bathroom has a barrel ceiling as noted on the plan. There is a bonus room above the garage noted on the second page of the pla",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3624 - Schilcht - Beth Page Ct, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.653Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1t5m1eo8c4j5ska",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.556Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "estimating@federalconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "514 South Nicholas Road, Nixa",
+ "Job_Codes": "3623 - Nixa Highschool - Multi Purpose Facility",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3623%20Nixa%20High%20School&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixa Highschool - Multi Purpose Facility - 514 South Nicholas Road, Nixa - Federal Construction",
+ "Job_Name": "Nixa Highschool - Multi Purpose Facility",
+ "Job_Number": "3623",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3623 - Nixa Highschool - Multi Purpose Facility",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178620622",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3623 - Nixa Highschool - Multi Purpose Facility - 514 South Nicholas Road, Nixa - Federal Construction - - 4178620622",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.713Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g9ojqlhlmm03vwc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.656Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Scribner, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Scribner 913-579-3709 mark@linearfox.co",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "73 Fraker Rd Buffalo, MO 65622",
+ "Job_Codes": "3622 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 73 Fraker Rd Buffalo, MO 65622 - Scribner, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3622",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3622 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/25/24 2:02 PM david cardoza Stock 7,860\nAdditional stock 800’ MR board---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "9135793709",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3622 - N/A - 73 Fraker Rd Buffalo, MO 65622 - Scribner, Mark - Mark Scribner 913-579-3709 mark@linearfox.co - 9135793709",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.757Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "20vo6v84le4ah5c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.773Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3621 - LWH 49",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 49 - - Everlasting Homes",
+ "Job_Name": "LWH 49",
+ "Job_Number": "3621",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3621 - LWH 49",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/20/24 11:13 AM Beth Cardoza CO electrical patches over bar downstairs. Someone was there the other day to do the bathroom repairs but didn't know about the other ones.---\n09/05/24 2:31 PM Beth Cardoza CO: minor bathroom repairs---\n07/31/24 4:14 PM Beth Cardoza CO: repairs---\n04/10/24 8:07 AM david cardoza Stock 18556\nSecond 648\nTotal 19,204\nLeftover 270\nHang 18,934---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3621 - LWH 49 - - Everlasting Homes - Gerald Burnett 636-299-1362 - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.810Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7pqyojowx9agfnu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.876Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lennard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "OCCUPANTS: Thomas Ralls Mobile - (417) 593-1658 monty_bacchus@yahoo.com Andrea Ralls Phone - (417) 593-4187 jack_sally2481@hotmail.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "385 Jones Rd, Ozark MO",
+ "Job_Codes": "3620 - Step Thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step Thru - 385 Jones Rd, Ozark MO - Lennard Properties",
+ "Job_Name": "Step Thru",
+ "Job_Number": "3620",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3620 - Step Thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3620 - Step Thru - 385 Jones Rd, Ozark MO - Lennard Properties - OCCUPANTS: Thomas Ralls Mobile - (417) 593-1658 monty_bacchus@yahoo.com Andrea Ralls Phone - (417) 593-4187 jack_sally2481@hotmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.857Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hbek3t1rpn9b56y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:22.976Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hyde, Ronald",
+ "Contact_Notes": "",
+ "Contact_Person": "Buddy 417-259-3905",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6946 East Farm Road 84, Strafford",
+ "Job_Codes": "3619 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3619%20%20%286946%20East%20Farm%20Road%2084%2C%20Strafford%29%20%28Hyde%2C%20Ronald%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 6946 East Farm Road 84, Strafford - Hyde, Ronald",
+ "Job_Name": "N/A",
+ "Job_Number": "3619",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3619 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/24 3:25 PM Beth Cardoza We anticipate being ready in 4 weeks but needing a couple cold walls rocked in the next 2 weeks for insulation to foam against. . \n\n4 side return on all windows\n10’ ceiling height main level \nKitchen/living vaulted height 18’",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172593905",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3619 - N/A - 6946 East Farm Road 84, Strafford - Hyde, Ronald - Buddy 417-259-3905 - 4172593905",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.909Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s7kga2bmuabe8xl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.089Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Matlege, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Matlege (417) 294-7311",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3557 S Clay Ave, Spfd",
+ "Job_Codes": "3618 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 3557 S Clay Ave, Spfd - Matlege, John",
+ "Job_Name": "Remodel",
+ "Job_Number": "3618",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3618 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/06/24 1:16 PM Beth Cardoza CO: client did not pull nails. Eddie says Angel will have a lot of nails to pull or beat in.---\n04/24/24 10:28 AM Beth Cardoza Possible CO: Two closet doorways to wrap---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172947311",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3618 - Remodel - 3557 S Clay Ave, Spfd - Matlege, John - John Matlege (417) 294-7311 - 4172947311",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:09.962Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jxhpv4t8omm5uro",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.204Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3617 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3617%2E1%20Remodel%20%28276%20Pine%20St%2C%20Blue%20Eye%29%20%28Meilner%2C%20Max%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3617",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3617 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3617 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.021Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1oozbqcet824236",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.312Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rolla, Missouri",
+ "Job_Codes": "3616 - Compass Health Rolla Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3616%20Friga%20%28Compass%20Health%20Rolla%20Infill%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Compass Health Rolla Infill - Rolla, Missouri - Friga",
+ "Job_Name": "Compass Health Rolla Infill",
+ "Job_Number": "3616",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3616 - Compass Health Rolla Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3616 - Compass Health Rolla Infill - Rolla, Missouri - Friga - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.077Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n64afba89yxpaq9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.424Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2700 West 76 Country Boulevard, Branson",
+ "Job_Codes": "3615 - Aquarium Penguin Expansion",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3615%20Nabholtz%20%28Aquarium%20Penguin%20Expansion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Aquarium Penguin Expansion - 2700 West 76 Country Boulevard, Branson - Nabholtz",
+ "Job_Name": "Aquarium Penguin Expansion",
+ "Job_Number": "3615",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3615 - Aquarium Penguin Expansion",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3615 - Aquarium Penguin Expansion - 2700 West 76 Country Boulevard, Branson - Nabholtz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.130Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4sst0lnfslto9oi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.523Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3614 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3614%20New%20Build%20%28%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Branson - Krueger, Paul",
+ "Job_Name": "N/A",
+ "Job_Number": "3614",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3614 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/25 12:00 PM Beth Cardoza This was first draft of Forrester job we are currently on!---\n04/01/24 9:53 AM Beth Cardoza Standard Pk stuff applies:\n\nBranson build\nOP walls, stomped KD ceilings\nNo window wraps, square corners\nJuly/August timeframe---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3614 - N/A - Branson - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.173Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ntyl9ebwm9j7lpu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.628Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McCurry, Sherry",
+ "Contact_Notes": "",
+ "Contact_Person": "Sherry (417) 827-8601",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4976 Stone Hollow Ln, Rogersville",
+ "Job_Codes": "3613 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4976 Stone Hollow Ln, Rogersville - McCurry, Sherry",
+ "Job_Name": "N/A",
+ "Job_Number": "3613",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3613 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/10/24 2:31 PM Beth Cardoza They are selling the house and the buyer said not to do anything . McCurrys did give the buyer our contact info so there's a possibility they could contact us in the future, but it wouldn't be for the McCurrys.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178278601",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3613 - N/A - 4976 Stone Hollow Ln, Rogersville - McCurry, Sherry - Sherry (417) 827-8601 - 4178278601",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.225Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "67qelqfh5tpr79n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.740Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oreilly Build LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Brennan Bagwell ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bbagwell@oreillybuild.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lot#3 and Lot#5 Airport plaza, Springfield",
+ "Job_Codes": "3612 - Echo Suites Hotel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3612%20Echo%20Suites%20Hotel&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Echo Suites Hotel - Lot#3 and Lot#5 Airport plaza, Springfield - Oreilly Build LLC",
+ "Job_Name": "Echo Suites Hotel",
+ "Job_Number": "3612",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3612 - Echo Suites Hotel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/19/24 2:43 PM Beth Cardoza Not bidding. Job awarded to Thomas Construction (General contractor). We are bidding for Thomas Construction---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5014229866",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3612 - Echo Suites Hotel - Lot#3 and Lot#5 Airport plaza, Springfield - Oreilly Build LLC - Brennan Bagwell - 5014229866",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.278Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u3j2lj88dkb1x6a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.840Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Marshfield MO",
+ "Job_Codes": "3611 - Marshfield Wrestling Facility",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3611%20Friga%20%28Marshfield%20Wrestling%20Facility%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Marshfield Wrestling Facility - Marshfield MO - Friga",
+ "Job_Name": "Marshfield Wrestling Facility",
+ "Job_Number": "3611",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3611 - Marshfield Wrestling Facility",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3611 - Marshfield Wrestling Facility - Marshfield MO - Friga - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.329Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cf8dhhdc3nvbzae",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:23.956Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "167 Cody Dr, Rogersville",
+ "Job_Codes": "3610 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 167 Cody Dr, Rogersville - Larsen, Steve",
+ "Job_Name": "Repair",
+ "Job_Number": "3610",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3610 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3610 - Repair - 167 Cody Dr, Rogersville - Larsen, Steve - Steve Larsen 417-813-6889 - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.378Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0f1vj06jabadtmo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.055Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dean Cheatham",
+ "Contact_Notes": "",
+ "Contact_Person": "romansbp1@att.net 417-631-3855",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2248 E. Meadow Drive Springfield 65804",
+ "Job_Codes": "3609 - Cheatham basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cheatham basement - 2248 E. Meadow Drive Springfield 65804 - Dean Cheatham",
+ "Job_Name": "Cheatham basement",
+ "Job_Number": "3609",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3609 - Cheatham basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 4:52 PM Beth Cardoza Assume not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176313855",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "3609 - Cheatham basement - 2248 E. Meadow Drive Springfield 65804 - Dean Cheatham - romansbp1@att.net 417-631-3855 - 4176313855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.423Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g4ho7wwu6giwlw2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.148Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tim Schrope",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schrope",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tims@ib-usa.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1904 N Ash St. Buffalo, MO 65622",
+ "Job_Codes": "3608 - remodel project in Buffalo MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "remodel project in Buffalo MO - 1904 N Ash St. Buffalo, MO 65622 - Tim Schrope",
+ "Job_Name": "remodel project in Buffalo MO",
+ "Job_Number": "3608",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3608 - remodel project in Buffalo MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176164002",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3608 - remodel project in Buffalo MO - 1904 N Ash St. Buffalo, MO 65622 - Tim Schrope - Tim Schrope - 4176164002",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.478Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9vbk3kp9r08wr9w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.248Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "3607 - North Point Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3607%20RKC%20%28NorthPoint%20Church%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "North Point Church - Republic - RKC",
+ "Job_Name": "North Point Church",
+ "Job_Number": "3607",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3607 - North Point Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3607 - North Point Church - Republic - RKC - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.529Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3ta44r923r13rrg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.364Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephen Buechler ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sbuechler@kciconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1010 North Boonville Ave",
+ "Job_Codes": "3606 - Greene County Treatment Court Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3606%20Greene%20County%20Treatment%20Court&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Greene County Treatment Court Infill - 1010 North Boonville Ave - KCI",
+ "Job_Name": "Greene County Treatment Court Infill",
+ "Job_Number": "3606",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3606 - Greene County Treatment Court Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175128834",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3606 - Greene County Treatment Court Infill - 1010 North Boonville Ave - KCI - Stephen Buechler - 4175128834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.577Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bcg3aet6qlflffm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.476Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "3605 - Bld 10 #305",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bld 10 #305 - Branson Landing - Krueger, Paul",
+ "Job_Name": "Bld 10 #305",
+ "Job_Number": "3605",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3605 - Bld 10 #305",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3605 - Bld 10 #305 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.625Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e96kjt1h503f1hc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.596Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bakesz, Kay",
+ "Contact_Notes": "",
+ "Contact_Person": "Kay Bakesz (417) 693-2402",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "776 Mulberry Rd, Highlandville",
+ "Job_Codes": "3604 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 776 Mulberry Rd, Highlandville - Bakesz, Kay",
+ "Job_Name": "Water damage",
+ "Job_Number": "3604",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3604 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176932402",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3604 - Water damage - 776 Mulberry Rd, Highlandville - Bakesz, Kay - Kay Bakesz (417) 693-2402 - 4176932402",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.670Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1z7z7wy9pe6fh7v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.701Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty 417-337-1168",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3603 - Emerald Pointe Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Emerald Pointe Repairs - - Baty, Gary",
+ "Job_Name": "Emerald Pointe Repairs",
+ "Job_Number": "3603",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3603 - Emerald Pointe Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173371168",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3603 - Emerald Pointe Repairs - - Baty, Gary - Gary Baty 417-337-1168 - 4173371168",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.714Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f2ttzyt513bix4j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.791Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holtz Builders Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Bart Lechner ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "blechner@holtzbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "SDC",
+ "Job_Codes": "3602 - IRH Door install",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3602%20Holtz%20Door%20Install&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "IRH Door install - SDC - Holtz Builders Inc.",
+ "Job_Name": "IRH Door install",
+ "Job_Number": "3602",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3602 - IRH Door install",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6082178686",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3602 - IRH Door install - SDC - Holtz Builders Inc. - Bart Lechner - 6082178686",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.758Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yq584oyzkf5r28h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.884Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Blackstock",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tblackstock@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3447 E. Old Stone Ave., Repulic, MO 65619",
+ "Job_Codes": "3601 - CoxHealth Physical Therapy Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3601%20DeWitt%20%28Cox%20Health%20Phys%20Therapy%2C%20Republic%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "CoxHealth Physical Therapy Infill - 3447 E. Old Stone Ave., Repulic, MO 65619 - DeWitt",
+ "Job_Name": "CoxHealth Physical Therapy Infill",
+ "Job_Number": "3601",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3601 - CoxHealth Physical Therapy Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176550218",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3601 - CoxHealth Physical Therapy Infill - 3447 E. Old Stone Ave., Repulic, MO 65619 - DeWitt - Tony Blackstock - 4176550218",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.805Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gr2rpmvgktnof2w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:24.988Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3600 - QT",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "QT - - RKC",
+ "Job_Name": "QT",
+ "Job_Number": "3600",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3600 - QT",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3600 - QT - - RKC - Cheryl - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.866Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qf909m5ffld9auw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.092Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schweitzer, Jerry",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry (417) 844-6852",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Brighton",
+ "Job_Codes": "3599 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Brighton - Schweitzer, Jerry",
+ "Job_Name": "N/A",
+ "Job_Number": "3599",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3599 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/09/24 6:53 PM Beth Cardoza Eddie wasn't able to reach---\n04/04/24 12:49 PM Beth Cardoza Eddie was supposed to call and get more information 3/15. Eddie hasn't responded to my follow up. Don't know if it got dropped.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178446852",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3599 - N/A - Brighton - Schweitzer, Jerry - Jerry (417) 844-6852 - 4178446852",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.917Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d7kogv14uzi0b2i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.197Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen Davis (417) 827-2382",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2218 S Cave Creek, Spfd",
+ "Job_Codes": "3598 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2218 S Cave Creek, Spfd - Davis, Allen",
+ "Job_Name": "Repairs",
+ "Job_Number": "3598",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3598 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178272382",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3598 - Repairs - 2218 S Cave Creek, Spfd - Davis, Allen - Allen Davis (417) 827-2382 - 4178272382",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:10.968Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6w72fxp6cvj9etr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.309Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Meyers, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Meyers (417) 616-1839",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "616 State Hwy JJ, Sparta",
+ "Job_Codes": "3597 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 616 State Hwy JJ, Sparta - Meyers, Steve",
+ "Job_Name": "Remodel",
+ "Job_Number": "3597",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3597 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 3:15 PM Beth Cardoza Eddie to look at this at 9 tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176161839",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3597 - Remodel - 616 State Hwy JJ, Sparta - Meyers, Steve - Steve Meyers (417) 616-1839 - 4176161839",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.022Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9680g3hl75o2cnq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.424Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Const",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland (417) 536-8445",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Galena",
+ "Job_Codes": "3596 - Puckett",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3596%20Puckett%20%28Galena%29%20%28Sutherland%20Const%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Puckett - Galena - Sutherland Const",
+ "Job_Name": "Puckett",
+ "Job_Number": "3596",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3596 - Puckett",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/24/24 12:19 PM Beth Cardoza Won't be ready till winter---\n03/15/24 4:01 PM Beth Cardoza Can you please price both smooth option vs knock down\n8ft walls---\n03/15/24 4:01 PM Beth Cardoza Plans appear cut off but he says that's the end of the house.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175368445",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3596 - Puckett - Galena - Sutherland Const - Angel Sutherland (417) 536-8445 - 4175368445",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.066Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "etfpsqwwsc6kecg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.524Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty (417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Wicklow Lot 16, Nixa",
+ "Job_Codes": "3595 - Meadows",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3595%20Meadows%20%28Wicklow%20Lot%2016%2C%20Nixa%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Meadows - Wicklow Lot 16, Nixa - Essick, Dusty",
+ "Job_Name": "Meadows",
+ "Job_Number": "3595",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3595 - Meadows",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/04/24 1:58 PM Beth Cardoza \"RR ceilings and light texture walls\".---\n12/04/24 8:12 AM david cardoza Coldwall stock 480\nLeftover from coldwall 192\nFirst stock 19,608\nSecond stock 1,088\nFinal leftover 162\nFinal hang to Angel 20,726---\n11/06/24 1:20 PM Beth Cardoza Won’t be ready for a month or so. REW board count should be coming in soon.---\n11/27/24 1:37 PM Beth Cardoza Started this week. Considering finish. Could change (estimated for L5 smooth walls and RR ceilings)---\n10/12/24 4:45 PM Beth Cardoza Coming up. Estimate needs review (and confirm ceiling height)---\n11/01/24 11:40 AM Beth Cardoza Waiting for walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3595 - Meadows - Wicklow Lot 16, Nixa - Essick, Dusty - Dusty (417) 860-1127 - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.126Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u2glmbtyi5ge2r1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.633Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen McMillin (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Battlefield",
+ "Job_Codes": "3594 - Vaughan",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Vaughan - Battlefield - McMillin, Allen",
+ "Job_Name": "Vaughan",
+ "Job_Number": "3594",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3594 - Vaughan",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/14/24 2:28 PM Beth Cardoza Basket weave ceilings, light orange walls square corners, no return on windows, fire rock in garage.\n\njob is in Battlefield MO. Ready in 4-5 months.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3594 - Vaughan - Battlefield - McMillin, Allen - Allen McMillin (417) 839-2812 - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.174Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ny4hf08y5v0e7cl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.732Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryan Weber",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2213 N Clark Way Ln, Strafford",
+ "Job_Codes": "3593 - Caretaker Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3593FX%20Caretaker%20Garage%202213%20N%20Clark%20Way%20%28Weber%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Caretaker Garage - 2213 N Clark Way Ln, Strafford - Weber, Bryon",
+ "Job_Name": "Caretaker Garage",
+ "Job_Number": "3593",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3593 - Caretaker Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/15/24 10:56 AM Beth Cardoza CO: Patching around electrical panels, and stuff that we were not aware of---\n07/15/24 11:21 AM Beth Cardoza Also back wall of bathroom and patches throughout.\nAlso needed insulation---\n07/17/24 5:48 PM Beth Cardoza 6 extra sheets of drywall.---\n07/17/24 5:50 PM Beth Cardoza Coat recess joints? Was that figured? \nPrime entire garage. New and old board, particularly the old.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3593 - Caretaker Garage - 2213 N Clark Way Ln, Strafford - Weber, Bryon - Bryan Weber - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.237Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a526kd32rgxp8nm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.840Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "303 State Hwy 174, Republic",
+ "Job_Codes": "3592 - Hope Springs Church",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hope Springs Church - 303 State Hwy 174, Republic - Larsen, Steve",
+ "Job_Name": "Hope Springs Church",
+ "Job_Number": "3592",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3592 - Hope Springs Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178136889",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3592 - Hope Springs Church - 303 State Hwy 174, Republic - Larsen, Steve - Steve Larsen 417-813-6889 - 4178136889",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.286Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "26vbq5iecz3yv4e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:25.945Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "3591 - BL Bld 10 #405 Water Damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL Bld 10 #405 Water Damage - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL Bld 10 #405 Water Damage",
+ "Job_Number": "3591",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3591 - BL Bld 10 #405 Water Damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3591 - BL Bld 10 #405 Water Damage - Branson Landing - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.337Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "srexcmefvphh6cu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.048Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Red Rock Companies",
+ "Contact_Notes": "",
+ "Contact_Person": "aignatovetsjr@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rogersville MO",
+ "Job_Codes": "3590 - Village Square Apartments",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3590%20Red%20Rock%20%28Village%20Square%20Apartments%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Village Square Apartments - Rogersville MO - Red Rock Companies",
+ "Job_Name": "Village Square Apartments",
+ "Job_Number": "3590",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3590 - Village Square Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3590 - Village Square Apartments - Rogersville MO - Red Rock Companies - aignatovetsjr@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.393Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "adxy6n1qupgpl4k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.160Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Lead: Cheryl Griffeth Estimator • +1 417-865-5959 • bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "101 North Cartage Lane, Strafford, MO 65757",
+ "Job_Codes": "3589 - QT Properties",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3589%20RKC%20%28QT%20Properties%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "QT Properties - 101 North Cartage Lane, Strafford, MO 65757 - RKC",
+ "Job_Name": "QT Properties",
+ "Job_Number": "3589",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3589 - QT Properties",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3589 - QT Properties - 101 North Cartage Lane, Strafford, MO 65757 - RKC - Lead: Cheryl Griffeth Estimator • +1 417-865-5959 • bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.441Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "74xoymmwre67pi7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.247Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kendrick, Kolby",
+ "Contact_Notes": "",
+ "Contact_Person": "Kolby Kendrick (417) 818-0437",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6457 S Barrel Blvd, Republic",
+ "Job_Codes": "3588 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3588%20%20%28Republic%29%20%28Kendrick%2C%20Kolby%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 6457 S Barrel Blvd, Republic - Kendrick, Kolby",
+ "Job_Name": "N/A",
+ "Job_Number": "3588",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3588 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/09/24 7:21 AM david cardoza Still trying to get all this info straight as of 9/25/24\n\nPrestock for coldwalls 1,216 x 1/2\"\nNo leftover?\n\nStock 5/8\" = 1488\nLeftover from 5/8 = 288\n\nPrimary Stock 15,336 x 1/2\"\n\nfinal stock 1376\n\n\n\nLeftover after coldwall\n09/06/24 2:13 PM Beth Cardoza Barrel rd\nRepublic\nKolby Kendrick\nThree car garage currently over uneven rough gravel at 10 1/2 to 11 feet high.\nTwo-story house\nMain height on main level is 9 foot\nMain room has double vault to a center beam that runs the l\n09/06/24 2:14 PM Beth Cardoza Lines up pretty closely to what I had estimated except the entry way showed 10' on plans. Check footage and see if adjustment needs to be made.---\n08/21/24 2:17 PM Beth Cardoza Kolby residence ready in about three weeks. I’ll do a walk-through on it when I return.---\n03/12/24 10:55 AM Beth Cardoza I won’t start the house until around June, so I’m guessing drywall in August?? I’m getting my quotes together for the bank right now so I need the bid ASAP. We would like tree bark on the ceiling and orange peel on the walls",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178180437",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3588 - N/A - 6457 S Barrel Blvd, Republic - Kendrick, Kolby - Kolby Kendrick (417) 818-0437 - 4178180437",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.489Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q698yr6g5o513b1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.344Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "3587 - BL Bld 9 #407",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL Bld 9 #407 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL Bld 9 #407",
+ "Job_Number": "3587",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3587 - BL Bld 9 #407",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/07/24 2:00 PM Beth Cardoza Eddie to view tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3587 - BL Bld 9 #407 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.537Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mvb5h7vt39tg6vq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.447Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hencey, Robert",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Hencey (417) 869-6190",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2306 N Weller Ave, Spfld",
+ "Job_Codes": "3586 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 2306 N Weller Ave, Spfld - Hencey, Robert",
+ "Job_Name": "Ceiling",
+ "Job_Number": "3586",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3586 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/06/24 2:05 PM Beth Cardoza Hencey called last Monday. I left a voice mail today---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178696190",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3586 - Ceiling - 2306 N Weller Ave, Spfld - Hencey, Robert - Bob Hencey (417) 869-6190 - 4178696190",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.590Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f3yietqw7htx2gp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.555Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4498 Lancaster, Spfd",
+ "Job_Codes": "3585 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4498 Lancaster, Spfd - Everlasting Homes",
+ "Job_Name": "N/A",
+ "Job_Number": "3585",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3585 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 8:17 AM david cardoza Stock 18,728\nSecond stock 1,080\nTotal stock 19,808\nNo leftover---\n03/07/24 4:39 PM Beth Cardoza Dave walk through notes:\n\n4498 Lancaster Way\nSpringfield Missouri \n\n(on the corner lot of Marlowe and Lancaster Way)\n\nThree car garage over concrete at 11 foot high\n\nWalk out basement house with main floor living area at 10 f",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3585 - N/A - 4498 Lancaster, Spfd - Everlasting Homes - Gerald Burnett 636-299-1362 - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.633Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "93vrglwzslyp73n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.663Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gatlin, Wilber",
+ "Contact_Notes": "",
+ "Contact_Person": "Wilber Gatlin (417) 825-0557",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "874 Kenmare Ct, Nixa",
+ "Job_Codes": "3584 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 874 Kenmare Ct, Nixa - Gatlin, Wilber",
+ "Job_Name": "Repairs",
+ "Job_Number": "3584",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3584 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178250557",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3584 - Repairs - 874 Kenmare Ct, Nixa - Gatlin, Wilber - Wilber Gatlin (417) 825-0557 - 4178250557",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.681Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mptrwkg612jrxtw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Occupant: Joe Sharp (817) 798-0164",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1253 S Rosemoor Dr, Nixa",
+ "Job_Codes": "3583 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 1253 S Rosemoor Dr, Nixa - Solar Solutions",
+ "Job_Name": "Step thru",
+ "Job_Number": "3583",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3583 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8177980164",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3583 - Step thru - 1253 S Rosemoor Dr, Nixa - Solar Solutions - Occupant: Joe Sharp (817) 798-0164 - 8177980164",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.733Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "72xksxilg8dgdzu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.868Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gatlin, Wilber",
+ "Contact_Notes": "",
+ "Contact_Person": "Wilber Gatlin",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4208 E Fairhaven Dr, Nixa",
+ "Job_Codes": "3582 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 4208 E Fairhaven Dr, Nixa - Gatlin, Wilber",
+ "Job_Name": "Repairs",
+ "Job_Number": "3582",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3582 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3582 - Repairs - 4208 E Fairhaven Dr, Nixa - Gatlin, Wilber - Wilber Gatlin - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.782Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "77dhzvven53d3ss",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:26.969Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Branson Cowherd (417) 234-4451",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "788 Rene Rd, Nixa",
+ "Job_Codes": "3581 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 788 Rene Rd, Nixa - Cowherd",
+ "Job_Name": "Garage",
+ "Job_Number": "3581",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3581 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/17/24 7:44 AM david cardoza Stock 2700\nLeftover 432\nHang 2268---\n10/09/24 1:53 PM Beth Cardoza Original job was a bathroom, as noted above it was canceled. However now we are doing the garage at the same address. 3 car garage with 10' flat ceilings. 2700 sqft of drywall per Bill Maybarry.We aren't---\n03/28/24 1:48 PM Beth Cardoza They decided they didn't want any drywall after all---\n03/13/24 3:37 PM Beth Cardoza They are demoing this week. Eddie to view after demo---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172344451",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3581 - Garage - 788 Rene Rd, Nixa - Cowherd - Branson Cowherd (417) 234-4451 - 4172344451",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.833Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uvind3qchvo1vjb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.199Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3580 - BL Lobby Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3580%20BL%20Lobby%20Texture%20%28%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "BL Lobby Texture - - Krueger, Paul",
+ "Job_Name": "BL Lobby Texture",
+ "Job_Number": "3580",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3580 - BL Lobby Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3580 - BL Lobby Texture - - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.885Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e7fot8zzw3wd246",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.307Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schmitz, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Schmitz (417) 766-1754",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1702 E Barnes, Ozark? Or Willard?",
+ "Job_Codes": "3579 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 1702 E Barnes, Ozark? Or Willard? - Schmitz, John",
+ "Job_Name": "Garage",
+ "Job_Number": "3579",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3579 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/14/24 8:37 AM Beth Cardoza He went with someone else---\n03/04/24 5:02 PM Beth Cardoza Eddie to view Friday evening---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177661754",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3579 - Garage - 1702 E Barnes, Ozark? Or Willard? - Schmitz, John - John Schmitz (417) 766-1754 - 4177661754",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:11.937Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a3icpd2msvmuian",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.427Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLachlan, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 838-9646",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1750 S Gregg Rd, Nixa",
+ "Job_Codes": "3578 - bsmt",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "bsmt - 1750 S Gregg Rd, Nixa - MacLachlan, Julie",
+ "Job_Name": "bsmt",
+ "Job_Number": "3578",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3578 - bsmt",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/15/24 3:57 PM david cardoza Stock 5,004\nleftover 1,126\nHang 3,878---\n03/05/24 10:27 AM Beth Cardoza Eddie to view today---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178389646",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3578 - bsmt - 1750 S Gregg Rd, Nixa - MacLachlan, Julie - Julie (417) 838-9646 - 4178389646",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.046Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iypha6ktw591sk2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.587Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McConnell, Terry",
+ "Contact_Notes": "",
+ "Contact_Person": "Terry McConnell (417) 849-0993",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "89 Rosepetal, Branson West",
+ "Job_Codes": "3577 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 89 Rosepetal, Branson West - McConnell, Terry",
+ "Job_Name": "Repair",
+ "Job_Number": "3577",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3577 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178490993",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3577 - Repair - 89 Rosepetal, Branson West - McConnell, Terry - Terry McConnell (417) 849-0993 - 4178490993",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.150Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "34smn4x8rrv0vum",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.691Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5250 Aviemore Dr, Spfd",
+ "Job_Codes": "3576 - Hagale repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hagale repairs - 5250 Aviemore Dr, Spfd - Weber, Bryon",
+ "Job_Name": "Hagale repairs",
+ "Job_Number": "3576",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3576 - Hagale repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3576 - Hagale repairs - 5250 Aviemore Dr, Spfd - Weber, Bryon - Bryon (417) 830-2424 - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.202Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ap5aa55tkg78wxs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.820Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1164 Oakville Rd, Spfd",
+ "Job_Codes": "3575 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1164 Oakville Rd, Spfd - Concept2Completion",
+ "Job_Name": "Repairs",
+ "Job_Number": "3575",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3575 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172242994",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3575 - Repairs - 1164 Oakville Rd, Spfd - Concept2Completion - Tim Schwenke (417) 224-2994 - 4172242994",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.253Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "05igeme4x14ts6r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:27.935Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "G4 Construction Management",
+ "Contact_Notes": "",
+ "Contact_Person": "AJ Flagg 612-735-7480 andrewf@g4cm.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3574 - Burger King",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Burger King - Ozark - G4 Construction Management",
+ "Job_Name": "Burger King",
+ "Job_Number": "3574",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3574 - Burger King",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6127357480",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3574 - Burger King - Ozark - G4 Construction Management - AJ Flagg 612-735-7480 andrewf@g4cm.com - 6127357480",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.310Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ev5yvmrdab2u9ut",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:28.051Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty 417-337-1168",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3573 - Russell",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Russell - - Baty, Gary",
+ "Job_Name": "Russell",
+ "Job_Number": "3573",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3573 - Russell",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/06/24 11:52 AM Beth Cardoza Baty withdrew from bidding on this.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173371168",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3573 - Russell - - Baty, Gary - Gary Baty 417-337-1168 - 4173371168",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.362Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l0qs1erww57oqyv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:28.159Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Frazier, Leon",
+ "Contact_Notes": "",
+ "Contact_Person": "Leon Fraizer620-253-4100",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kimberling City",
+ "Job_Codes": "3572 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - Kimberling City - Frazier, Leon",
+ "Job_Name": "Ceiling",
+ "Job_Number": "3572",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3572 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/04/24 12:46 PM Beth Cardoza He hasn't called back. I'm going to archive for now---\n03/19/24 4:11 PM Beth Cardoza Waiting on Leon to answer Rick's call/questions---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6202534100",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3572 - Ceiling - Kimberling City - Frazier, Leon - Leon Fraizer620-253-4100 - 6202534100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.422Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i4xwtlbxifjyvxj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:28.279Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna 417 298-4455?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5268 E Foxgrove Ln, Spfd",
+ "Job_Codes": "3571 - McCauley Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3571%20McCauley%20Remodel%20%285268%20E%20Foxgrove%20Ln%2C%20Spfd%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "McCauley Remodel - 5268 E Foxgrove Ln, Spfd - Construct",
+ "Job_Name": "McCauley Remodel",
+ "Job_Number": "3571",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3571 - McCauley Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/06/24 4:49 PM Beth Cardoza CO: New skylight leaks in the foxgrove house.---\n08/23/24 4:12 PM Beth Cardoza CO on 3571.2: They are wanting us to do drywall on the hood first. Radius, detail work.---\n07/10/24 10:16 AM Beth Cardoza still working on stuff through end of this week at least---\n06/20/24 8:38 AM Beth Cardoza CO: Patching around skylights, water leak damage---\n06/06/24 8:41 AM Beth Cardoza CO: Added wall in bathroom upstairs, per Rick. \nPatch return air vent in kitchen\nChange door height pantry\n12 can light patches---\n06/06/24 8:29 AM Beth Cardoza CO? Possible change order for providing water including $27 for 5 gallon buckets---\n05/30/24 12:25 PM Beth Cardoza CO?: Possible change orders. See videos on voxer chats: exterior closet, Patch around toilet room exterior door and lids and doorway wraps on cubbies that were previously blocked off. Waiting on confirmation of these items.\n05/30/24 7:27 AM david cardoza First stock 12,276\nSecond stock 920\nBoard delivered from summer rd 216\nTotal 13,412\nLeftover 64\nHang 13,348---\n05/27/24 2:47 PM Beth Cardoza Possible CO: supply water---\n05/06/24 9:40 AM Beth Cardoza probably won’t be ready for two more weeks. Best guess.---\n04/25/24 3:35 PM Beth Cardoza More COs: \n - heavy trowel texture on ceilings NOT smoothed out, but areas we are patching, we will need to match that trowel texture. \n\n - Bonus room above garage \n\n - Entertainment room? Removing skylights somewhere that ma\n04/25/24 3:35 PM Beth Cardoza Dave visiting job tomorrow to figure these things out.---\n04/04/24 10:26 AM Beth Cardoza CO: Adding the theater room. Dave will measure sometime.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172984455",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3571 - McCauley Remodel - 5268 E Foxgrove Ln, Spfd - Construct - Johanna 417 298-4455? - 4172984455",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.475Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5p42nwkerx88i1w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:28.408Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Robinson, Charlene",
+ "Contact_Notes": "",
+ "Contact_Person": "Charlene",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2658 Forrest Heights, Spfd",
+ "Job_Codes": "3570 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2658 Forrest Heights, Spfd - Robinson, Charlene",
+ "Job_Name": "N/A",
+ "Job_Number": "3570",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3570 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3570 - N/A - 2658 Forrest Heights, Spfd - Robinson, Charlene - Charlene - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.521Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "24bprfz8jv8pvg0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:28.763Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Clark Way, Strafford",
+ "Job_Codes": "3569 - Wilson patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wilson patches - Clark Way, Strafford - Weber, Bryon",
+ "Job_Name": "Wilson patches",
+ "Job_Number": "3569",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3569 - Wilson patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3569 - Wilson patches - Clark Way, Strafford - Weber, Bryon - Bryon (417) 830-2424 - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.574Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xw8ax8h79q6pt0p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:28.874Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "ADI Construction of Virginia LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Paige Pohopin (908) 668-0600 • (703) 750-3911 • ppohopin@adigc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2929 Green Mountain Drive Branson MO 65616",
+ "Job_Codes": "3568 - Willow Ridge Lodge",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3568%20Willow%20Ridge%20Lodge&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Willow Ridge Lodge - 2929 Green Mountain Drive Branson MO 65616 - ADI Construction of Virginia LLC",
+ "Job_Name": "Willow Ridge Lodge",
+ "Job_Number": "3568",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3568 - Willow Ridge Lodge",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3568 - Willow Ridge Lodge - 2929 Green Mountain Drive Branson MO 65616 - ADI Construction of Virginia LLC - Paige Pohopin (908) 668-0600 • (703) 750-3911 • ppohopin@adigc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.625Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ly6sjofpw2064cv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.002Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson (417) 414-3232",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "790 E Robidoux St, Nixa",
+ "Job_Codes": "3567 - Kitchen remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen remodel - 790 E Robidoux St, Nixa - A2D",
+ "Job_Name": "Kitchen remodel",
+ "Job_Number": "3567",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3567 - Kitchen remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/22/24 1:54 PM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174143232",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3567 - Kitchen remodel - 790 E Robidoux St, Nixa - A2D - Nathan Henderson (417) 414-3232 - 4174143232",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.674Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5egbdporco9csrm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.135Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric 417-830-7880",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1289 Osceola Rd, Fordland",
+ "Job_Codes": "3566 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 1289 Osceola Rd, Fordland - Friga",
+ "Job_Name": "Rehab",
+ "Job_Number": "3566",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3566 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/09/24 10:48 AM Beth Cardoza Step thru. Figuring on TM---\n04/17/24 11:10 AM Beth Cardoza Re-do ready to start (what we had Seth do didn't work and it needs to be demoed, rehung and refinished. about 10 sheets)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3566 - Rehab - 1289 Osceola Rd, Fordland - Friga - Eric 417-830-7880 - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.726Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i85xxzqp62zyok0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.251Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Staley, David",
+ "Contact_Notes": "",
+ "Contact_Person": "David Staley (417) 522-6925",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7146 W Staley Acres Ln, Willard",
+ "Job_Codes": "3565 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3565%20%20%287146%20W%20Staley%20Acres%20Ln%2C%20Willard%29%20%28Staley%2C%20David%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 7146 W Staley Acres Ln, Willard - Staley, David",
+ "Job_Name": "N/A",
+ "Job_Number": "3565",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3565 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/19/24 7:36 AM david cardoza Stock 8,496\nColdwall 112\nPay Hanger 8,496\nPay taper 8,608---\n09/05/24 4:16 PM Beth Cardoza Ready mid to end of next week.---\n02/28/24 1:17 PM Beth Cardoza Late spring/early summer\nSmall one story home with partial vaulted ceilings\n\n1541 sq ft - house only\n\n9' ceilings throughout with vaulted ceilings on a 7/12 pitch in the living room,\n\nkitchen, and dining room.\n\nWe will be tri",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175226925",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3565 - N/A - 7146 W Staley Acres Ln, Willard - Staley, David - David Staley (417) 522-6925 - 4175226925",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.770Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tlm73m5qoty7ykb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.351Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kelso, Kent",
+ "Contact_Notes": "",
+ "Contact_Person": "Kent Kelso (417) 880-4619",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2057 S Wellington, Spfd",
+ "Job_Codes": "3564 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2057 S Wellington, Spfd - Kelso, Kent",
+ "Job_Name": "Remodel",
+ "Job_Number": "3564",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3564 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/28/24 1:26 PM Beth Cardoza No response. Not able to contact.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178804619",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3564 - Remodel - 2057 S Wellington, Spfd - Kelso, Kent - Kent Kelso (417) 880-4619 - 4178804619",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.818Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7wwx65v99faej4n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.463Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Retana, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Retana (417) 833-7137",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2512 S Camber Ave, Spfd",
+ "Job_Codes": "3563 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 2512 S Camber Ave, Spfd - Retana, Mark",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "3563",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3563 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 4:50 PM Beth Cardoza Assume not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178337137",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3563 - Popcorn scrape - 2512 S Camber Ave, Spfd - Retana, Mark - Mark Retana (417) 833-7137 - 4178337137",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.870Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "20kmnusnapb53cl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.587Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "421 Stillwood, Branson",
+ "Job_Codes": "3562 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 421 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3562",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3562 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3562 - N/A - 421 Stillwood, Branson - Still, Mark - Mike Steel - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.930Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j3h5knpuz8e79z2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.690Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie (417) 848-0010",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3561 - Pantry",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pantry - - Bateman, Ronnie",
+ "Job_Name": "Pantry",
+ "Job_Number": "3561",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3561 - Pantry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/24 11:09 AM Beth Cardoza homeowner took care of it---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178480010",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3561 - Pantry - - Bateman, Ronnie - Ronnie (417) 848-0010 - 4178480010",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:12.986Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "krz6utvyno8zacd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.809Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger (417) 337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "245 N Wildwood Dr, Branson",
+ "Job_Codes": "3560 - Grand Plaza Hotel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3560%20Grand%20Plaza%20Hotel%20%28245%20N%20Wildwood%20Dr%2C%20Branson%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Grand Plaza Hotel - 245 N Wildwood Dr, Branson - Krueger, Paul",
+ "Job_Name": "Grand Plaza Hotel",
+ "Job_Number": "3560",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3560 - Grand Plaza Hotel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/22/24 11:24 AM Beth Cardoza owner decided not to do this project right now---\n02/28/24 10:05 AM Beth Cardoza Eddie to view Friday morning. Get template together before Friday morning so that the estimate can go out on Friday morning.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3560 - Grand Plaza Hotel - 245 N Wildwood Dr, Branson - Krueger, Paul - Paul Krueger (417) 337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.038Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8g3a1rgy6rf033o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:29.927Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael McNamer Project Manager • +1 417-830-8756 • michael.mcnamer@nabholz.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2110 S. Garrison Ave. Carthage MO 64836",
+ "Job_Codes": "3559 - Penske",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3559%20Nabholtz%20%28Penske%2C%20Carthage%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Penske - 2110 S. Garrison Ave. Carthage MO 64836 - Nabholtz",
+ "Job_Name": "Penske",
+ "Job_Number": "3559",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3559 - Penske",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3559 - Penske - 2110 S. Garrison Ave. Carthage MO 64836 - Nabholtz - Michael McNamer Project Manager • +1 417-830-8756 • michael.mcnamer@nabholz.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.098Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "81laj19sc11zovg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.035Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bullcreek Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Christian Arnold",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3558 - Burger King",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Burger King - Ozark - Bullcreek Construction",
+ "Job_Name": "Burger King",
+ "Job_Number": "3558",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3558 - Burger King",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3558 - Burger King - Ozark - Bullcreek Construction - Christian Arnold - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.146Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ltqu4kut4ydovcb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.147Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3557 - SNA",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SNA - Springfield - A2D",
+ "Job_Name": "SNA",
+ "Job_Number": "3557",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3557 - SNA",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3557 - SNA - Springfield - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.213Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uxxndmdm50zykvq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.259Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen brady.bowen@nabholz.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1300 East Bradford Parkway Spfd",
+ "Job_Codes": "3556 - Burrell Behavioral Health",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3556%20Nabholtz%20%28Burrell%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Burrell Behavioral Health - 1300 East Bradford Parkway Spfd - Nabholtz",
+ "Job_Name": "Burrell Behavioral Health",
+ "Job_Number": "3556",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3556 - Burrell Behavioral Health",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3556 - Burrell Behavioral Health - 1300 East Bradford Parkway Spfd - Nabholtz - Brady Bowen brady.bowen@nabholz.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "25dwyz38enszday",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.366Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3555 - Burger King",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3555%20A2D%20Burger%20King%20%28Ozark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Burger King - Ozark - A2D",
+ "Job_Name": "Burger King",
+ "Job_Number": "3555",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3555 - Burger King",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3555 - Burger King - Ozark - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.326Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5eolnn7jfvcizyr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.470Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5906 S Holland, Spfd",
+ "Job_Codes": "3554 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5906 S Holland, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3554",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3554 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/19/24 5:10 PM david cardoza stock \n12,492 sf\nLeftover 64\nHang 12,428---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172992407",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3554 - N/A - 5906 S Holland, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - 4172992407",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.382Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "82reqtrdcepglhc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.591Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "431 Stillwood Ln, Branson",
+ "Job_Codes": "3553 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 431 Stillwood Ln, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3553",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3553 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/14/24 3:24 PM Beth Cardoza CO: Little patches this week---\n02/27/24 8:42 AM david cardoza Stock 8,744\nNo leftover---\n02/20/24 3:00 PM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3553 - N/A - 431 Stillwood Ln, Branson - Still, Mark - Mike Steel 417-840-7855 - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.426Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6rehlegobj2oeml",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.723Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Lavina (417) 773-4702",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3225 N Farm Rd 123 Spfd",
+ "Job_Codes": "3552 - North Campus Wish List",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "North Campus Wish List - 3225 N Farm Rd 123 Spfd - JRC",
+ "Job_Name": "North Campus Wish List",
+ "Job_Number": "3552",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3552 - North Campus Wish List",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/13/24 3:31 PM Beth Cardoza Budgetary quote sent---\n03/07/24 2:01 PM Beth Cardoza Rick put info in voxer, but it's all demoing walls and replacing doors and stuff like that that I don't even know where to start with estimating so I'm just waiting on him to help me create a voxer.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4177734702",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3552 - North Campus Wish List - 3225 N Farm Rd 123 Spfd - JRC - Lavina (417) 773-4702 - 4177734702",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.470Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e4v68nw0731cj6a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.830Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Construct",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3967 E Eaglescliffe Dr, Spfd",
+ "Job_Codes": "3551 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 3967 E Eaglescliffe Dr, Spfd - Construct",
+ "Job_Name": "Remodel",
+ "Job_Number": "3551",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3551 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/24/24 3:05 PM Beth Cardoza CO: Repair needed next week---\n04/04/24 7:13 AM Beth Cardoza Doing additional billable work per Dave.---\n03/28/24 7:51 AM Beth Cardoza Probably needs some change orders. Dave to work on it.---\n03/28/24 7:59 AM Beth Cardoza 8 hours. see notes---\n03/04/24 7:20 AM david cardoza Stock 2,372---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3551 - Remodel - 3967 E Eaglescliffe Dr, Spfd - Construct - Construct - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.526Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "06z8c3k3g7c224m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:30.935Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Signature Home Comfort",
+ "Contact_Notes": "",
+ "Contact_Person": "Homeowner Rod: 417-207-0206, Client Justin Kellogg 417-224-3743",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3988 Dunrobin, Spfd",
+ "Job_Codes": "3550 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 3988 Dunrobin, Spfd - Signature Home Comfort",
+ "Job_Name": "Patch",
+ "Job_Number": "3550",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3550 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3550 - Patch - 3988 Dunrobin, Spfd - Signature Home Comfort - Homeowner Rod: 417-207-0206, Client Justin Kellogg 417-224-3743 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.594Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a5fqltabjg1lqu5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.047Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Office 417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3680 W. Overland",
+ "Job_Codes": "3549 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3680 W. Overland - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3549",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3549 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/21/24 3:14 PM Beth Cardoza CO: Can you please put us on the schedule for a mud and texture touch up at 3680 W Overland? It’s in the garage. We just moved the attic access and need the old patch up. Thanks\nJob 3549 \nOn Overland \nFrom Jacob, the superint\n05/23/24 10:47 AM Beth Cardoza CO: May need to go back and replace drywall under stairs due to water damage---\n06/03/24 9:05 AM Beth Cardoza We aren’t doing anything at this point---\n05/10/24 8:27 AM david cardoza Original stock 8,812\n2nd stock 1,296\nTotal stock 10,108\nLeftover 80\nFinal hang 10,028---\n02/13/24 2:44 PM Beth Cardoza Dave walkthrough notes 2/13/24\n3680 W. Overland, Springfield, Missouri\n\nThree car garage over concrete at 9 foot\n\nTwo-story house no basement.\n\nMain level primarily 8 foot flat except for master bedroom has a pop-up to a larg",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178871600",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3549 - N/A - 3680 W. Overland - Cowherd - Office 417-887-1600 - 4178871600",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.662Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7ie4rl4h8relv1k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.169Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Strafford",
+ "Job_Codes": "3548 - Allphin",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Allphin - Strafford - McMillin, Allen",
+ "Job_Name": "Allphin",
+ "Job_Number": "3548",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3548 - Allphin",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/14/24 9:57 AM Beth Cardoza 10' walls main floor. 9' walls upstairs and basement. Light orange peel on walls. no wrapped windows. square corners. The job is in Strafford.\nCriss cross on ceilings, Master bedroom has 16' vault. Great room is 2 story. Won'",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3548 - Allphin - Strafford - McMillin, Allen - Allen (417) 839-2812 - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.722Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tqhe5eevxqpeaiu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.291Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Office 417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3668 W Overland, Spfd",
+ "Job_Codes": "3547 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3668 W Overland, Spfd - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3547",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3547 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/19/24 6:45 AM david cardoza Stock 8,904\nLeftover 56\nHang 8,848---\n02/13/24 2:00 PM Beth Cardoza Dave walkthrough notes: \nThree car garage over concrete at 9 foot high\n\nHouse is primarily 8 foot flat except the living room has a slight vault on one side and then it goes up to mostly flat at 10 foot.\n\nThe master bedroom i",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178871600",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3547 - N/A - 3668 W Overland, Spfd - Cowherd - Office 417-887-1600 - 4178871600",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.774Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bqfqxhij0bzwwnb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.396Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Smith (417) 522-6119",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3546 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - Branson - Smith, Paul",
+ "Job_Name": "Repair",
+ "Job_Number": "3546",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3546 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/20/24 11:29 AM Beth Cardoza He hired a general construction guy that can do everything---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175226119",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3546 - Repair - Branson - Smith, Paul - Paul Smith (417) 522-6119 - 4175226119",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.829Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kybhzfbh7lpcvvs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.515Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Calhoun, Tyler",
+ "Contact_Notes": "",
+ "Contact_Person": "Tyler Calhoun (417) 300-0757",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4319 N 8th St, Ozark",
+ "Job_Codes": "3545 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 4319 N 8th St, Ozark - Calhoun, Tyler",
+ "Job_Name": "Remodel",
+ "Job_Number": "3545",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3545 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/20/24 11:37 AM Beth Cardoza He did it himself---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173000757",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3545 - Remodel - 4319 N 8th St, Ozark - Calhoun, Tyler - Tyler Calhoun (417) 300-0757 - 4173000757",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.890Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sbx91yrm9uj6kcm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.631Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2213 N Clark Way Ln, Strafford",
+ "Job_Codes": "3544 - Spa House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spa House - 2213 N Clark Way Ln, Strafford - Weber, Bryon",
+ "Job_Name": "Spa House",
+ "Job_Number": "3544",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3544 - Spa House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3544 - Spa House - 2213 N Clark Way Ln, Strafford - Weber, Bryon - Bryon (417) 830-2424 - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.941Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fdm59hetda0a1e7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.739Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3950 E St Andrews Dr, Spfd",
+ "Job_Codes": "3543 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 3950 E St Andrews Dr, Spfd - Weber, Bryon",
+ "Job_Name": "Remodel",
+ "Job_Number": "3543",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3543 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/24 3:52 PM Beth Cardoza Additional patches needed here---\n07/03/24 3:06 PM Beth Cardoza They hired Jeremy Batson instead---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3543 - Remodel - 3950 E St Andrews Dr, Spfd - Weber, Bryon - Bryon (417) 830-2424 - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:13.993Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8lchs1rga3auwqk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.851Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3542 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3542%2E1%20Ayres%20addition%20%283426%20Oak%20Ave%2C%20%20Spfd%29%20%28Sutherland%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3542",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3542 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3542 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.042Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lmvj4fby6knxm5v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:31.947Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Marsha Major",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1121 Vineyard Dr, Nixa",
+ "Job_Codes": "3541 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement - 1121 Vineyard Dr, Nixa - A2D",
+ "Job_Name": "Basement",
+ "Job_Number": "3541",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3541 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/19/24 1:35 PM Beth Cardoza I checked the EVA and it's about $500 underbudget so I told Anita she could bill it---\n04/03/24 9:16 AM Beth Cardoza Possible CO: The owner wants us to build a small soffit for the transition between drop ceiling and drywall on the other side. Talked to Nathan and he explained how he wants it---\n04/03/24 9:16 AM Beth Cardoza Also, other miscellaneous stuff that Rick knows about. Need to check EVA at end of job before billing.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3541 - Basement - 1121 Vineyard Dr, Nixa - A2D - Marsha Major - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.093Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "29vew5xo5k9o9t2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.071Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC West Campus",
+ "Contact_Notes": "",
+ "Contact_Person": "Gianna Perretta (708) 925-2209",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3953 W Farm Rd 168 Spfd",
+ "Job_Codes": "3540 - Add door",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Add door - 3953 W Farm Rd 168 Spfd - JRC West Campus",
+ "Job_Name": "Add door",
+ "Job_Number": "3540",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3540 - Add door",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "7089252209",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3540 - Add door - 3953 W Farm Rd 168 Spfd - JRC West Campus - Gianna Perretta (708) 925-2209 - 7089252209",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.141Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2ah29jfliowgrpa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.183Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lebanon",
+ "Job_Codes": "3539 - Equipment Share",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3539%20Equipment%20Share&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Equipment Share - Lebanon - A2D",
+ "Job_Name": "Equipment Share",
+ "Job_Number": "3539",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3539 - Equipment Share",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3539 - Equipment Share - Lebanon - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.194Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v0lvpt5mphm9law",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.288Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Alexander, Kate",
+ "Contact_Notes": "",
+ "Contact_Person": "Kate Alexander (417) 840-9360",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "941 E Minnehaha",
+ "Job_Codes": "3538 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 941 E Minnehaha - Alexander, Kate",
+ "Job_Name": "Repairs",
+ "Job_Number": "3538",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3538 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/29/24 1:57 PM Beth Cardoza Would like to do this March 11-14th. If it can't happen during that time frame it may need to wait till end of May.---\n02/13/24 10:14 AM Beth Cardoza She rescheduled for 10 am monday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178409360",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3538 - Repairs - 941 E Minnehaha - Alexander, Kate - Kate Alexander (417) 840-9360 - 4178409360",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.237Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kqt3fn7i8je3wan",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.423Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Strange, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Strange (925)260-2050",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5601 S Dunrobin Dr",
+ "Job_Codes": "3537 - Hart",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3537%20Hart%20%285601%20S%20Dunrobin%20Dr%2C%20Rogersville%29%20%28Strange%2C%20Mike%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hart - 5601 S Dunrobin Dr - Strange, Mike",
+ "Job_Name": "Hart",
+ "Job_Number": "3537",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3537 - Hart",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/26/24 5:26 PM Beth Cardoza Went with Oscar's bid that was like $8,000 under our's. (I think we were legitimately too high maybe a few thousand due to the plans having changed and we weren't notified about changes and Oscar's was a unit price bid). We w\n02/12/24 10:48 AM Beth Cardoza Hi, they would like everything including ceilings in light orange peel\nAlso no windows wrapped\nCorners round, except the bottom square for baseboards\nThanks\nMike---\n02/08/24 11:54 AM Beth Cardoza Highland Springs---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "9252602050",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3537 - Hart - 5601 S Dunrobin Dr - Strange, Mike - Mike Strange (925)260-2050 - 9252602050",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.289Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d3ku6xz2qidq16u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.603Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "441 Stillwood Ln, Branson",
+ "Job_Codes": "3536 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 441 Stillwood Ln, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3536",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3536 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/06/24 9:56 AM Beth Cardoza They had to remove Tile from the fireplace and it tore up the drywall. So they did rehang the drywall above the mantle and they will need it refinished and textured. I told him might not happen until beginning of next week u\n02/15/24 7:49 AM david cardoza Stock 9,604\nLeftover 748\nHang 8,856---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3536 - N/A - 441 Stillwood Ln, Branson - Still, Mark - Mike Steel 417-840-7855 - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.346Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z1fmxcuysl2n15h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.758Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BNC Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric (417) 209-5052",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2942 W Lombard, Spfd",
+ "Job_Codes": "3535 - Eric's Personal Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Eric's Personal Repairs - 2942 W Lombard, Spfd - BNC Builders",
+ "Job_Name": "Eric's Personal Repairs",
+ "Job_Number": "3535",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3535 - Eric's Personal Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/08/24 12:00 PM Beth Cardoza Eddie has appt Friday morning at 7 to look at this.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172095052",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3535 - Eric's Personal Repairs - 2942 W Lombard, Spfd - BNC Builders - Eric (417) 209-5052 - 4172095052",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.389Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kb9jpjimvinta5u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:32.919Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Embree Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Pete Okon - pokon@embreegroup.com - 512-635-3157",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 S. Glenstone Ave Suite H-08j",
+ "Job_Codes": "3534 - Kendra Scott",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3534%20Embree%20Group%20%28Kendra%20Scott%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kendra Scott - 2825 S. Glenstone Ave Suite H-08j - Embree Construction",
+ "Job_Name": "Kendra Scott",
+ "Job_Number": "3534",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3534 - Kendra Scott",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5126353157",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3534 - Kendra Scott - 2825 S. Glenstone Ave Suite H-08j - Embree Construction - Pete Okon - pokon@embreegroup.com - 512-635-3157 - 5126353157",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.442Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lv92m8c2eg8ne4t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.047Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "George, Keith",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith George (417) 693-1182",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2449 E FR 194, Ozark",
+ "Job_Codes": "3533 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2449 E FR 194, Ozark - George, Keith",
+ "Job_Name": "Remodel",
+ "Job_Number": "3533",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3533 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/04/24 2:00 PM Beth Cardoza Originally bid this job for Ronnie Bateman, but doing it directly for Keith George now.---\n12/03/24 10:56 AM Beth Cardoza Eddie walking tomorrow so we can review and adjust estimate as neccessary---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4176931182",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3533 - Remodel - 2449 E FR 194, Ozark - George, Keith - Keith George (417) 693-1182 - 4176931182",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.497Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ufu2d8m7g99v581",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.156Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Abby Hardy 417-485-8633 or cell: 417-437-8783",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N 19th St, Ozark",
+ "Job_Codes": "3532 - Office Cork Boards",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3532%20Office%20Cork%20Boards%20%286100%20N%2019th%20St%2C%20Ozark%29%20%28James%20River%20Church%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Office Cork Boards - 6100 N 19th St, Ozark - James River Church",
+ "Job_Name": "Office Cork Boards",
+ "Job_Number": "3532",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3532 - Office Cork Boards",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174378783",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3532 - Office Cork Boards - 6100 N 19th St, Ozark - James River Church - Abby Hardy 417-485-8633 or cell: 417-437-8783 - 4174378783",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.550Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "shxssjgdtgyvx20",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.268Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Builders International",
+ "Contact_Notes": "",
+ "Contact_Person": "Fred",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1648 W Lloyd St, Ozark",
+ "Job_Codes": "3531 - Fred",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3531%20Fred%20%281648%20W%20Lloyd%20St%2C%20Ozark%29%20%28Builders%20International%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Fred - 1648 W Lloyd St, Ozark - Builders International",
+ "Job_Name": "Fred",
+ "Job_Number": "3531",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3531 - Fred",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3531 - Fred - 1648 W Lloyd St, Ozark - Builders International - Fred - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.595Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i0ijikfqmjlhzrb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.382Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Johnson, Leanne",
+ "Contact_Notes": "",
+ "Contact_Person": "Leanne Johnson (206) 412-5636",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4374 E University St, Spfd",
+ "Job_Codes": "3530 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 4374 E University St, Spfd - Johnson, Leanne",
+ "Job_Name": "Patch",
+ "Job_Number": "3530",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3530 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "2064125636",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3530 - Patch - 4374 E University St, Spfd - Johnson, Leanne - Leanne Johnson (206) 412-5636 - 2064125636",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.650Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "adi2kvis8g9nek8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.572Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Shands, Melanie",
+ "Contact_Notes": "",
+ "Contact_Person": "Melanie Mlshands71@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "517 Hickory Dr, Ozark",
+ "Job_Codes": "3529 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 517 Hickory Dr, Ozark - Shands, Melanie",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "3529",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3529 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/15/24 3:15 PM Beth Cardoza Lockbox code: 1018 (our lockbox)---\n02/07/24 4:06 PM Beth Cardoza Supposed to be looking at it tomorrow morning. Called the other day and wasn't able to reach---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3529 - Popcorn scrape - 517 Hickory Dr, Ozark - Shands, Melanie - Melanie Mlshands71@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.710Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qpx26svo7nxi58y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.687Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric (417) 830-7880",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1200 W Main St, Branson Apt #5",
+ "Job_Codes": "3528 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1200 W Main St, Branson Apt #5 - Friga",
+ "Job_Name": "Repairs",
+ "Job_Number": "3528",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3528 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/05/24 4:45 PM Beth Cardoza Estimate pending walkthrough (tomorrow morning)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178307880",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3528 - Repairs - 1200 W Main St, Branson Apt #5 - Friga - Eric (417) 830-7880 - 4178307880",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.770Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hao7wgw6r2rqqdg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.782Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4002 E FR 156, Spfd",
+ "Job_Codes": "3527 - Repairs Johns Res",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs Johns Res - 4002 E FR 156, Spfd - Weber, Bryon",
+ "Job_Name": "Repairs Johns Res",
+ "Job_Number": "3527",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3527 - Repairs Johns Res",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3527 - Repairs Johns Res - 4002 E FR 156, Spfd - Weber, Bryon - Bryon (417) 830-2424 - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.821Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4rgumewe0mx8w6l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.882Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLaughlin, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 838-9646",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3526 - Cubby",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cubby - - MacLaughlin, Julie",
+ "Job_Name": "Cubby",
+ "Job_Number": "3526",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3526 - Cubby",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178389646",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3526 - Cubby - - MacLaughlin, Julie - Julie (417) 838-9646 - 4178389646",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.894Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ff3jblf7birmn7i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:33.990Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Signature Home Comfort",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin (417) 224-3743",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7011 Calabash, Nixa",
+ "Job_Codes": "3525 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 7011 Calabash, Nixa - Signature Home Comfort",
+ "Job_Name": "Step thru",
+ "Job_Number": "3525",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3525 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/01/24 2:02 PM Beth Cardoza 8 am Monday Feb 4th.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172243743",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3525 - Step thru - 7011 Calabash, Nixa - Signature Home Comfort - Justin (417) 224-3743 - 4172243743",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:14.946Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b7764gzkoqb7jbb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.102Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1735 N Raeley Ln, Spfd",
+ "Job_Codes": "3524 - Whitlock",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3524%20Whitlock%20rebuild%20%281735%20N%20Raeley%20Ln%2C%20Spfd%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Whitlock - 1735 N Raeley Ln, Spfd - Pitts, Doug",
+ "Job_Name": "Whitlock",
+ "Job_Number": "3524",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3524 - Whitlock",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/02/25 12:50 PM Beth Cardoza CO: work around front door and some moving outlets, etc. See Voxer---\n03/25/25 4:50 PM Beth Cardoza CO: Drywall opening from the foyer to hall - twisted framing. Bob 3/26---\n12/26/24 10:16 AM Beth Cardoza CO: Delayed safe room door wall---\n11/26/24 6:49 AM david cardoza First stock 33,068\nSecond stock 2,968\nTotal stock 36,036\nFinal leftover 192?\nFinal hang 35,844---\n11/18/24 10:27 AM Beth Cardoza Gate code: 0213#---\n11/12/24 12:07 PM Beth Cardoza CO: Lots of bad wood, both studs, that kind of stuff. I told Doug and he said if we can just do it and we’ll just charge him. I’ll have Angel do it. There is at least 50 studs that need attention on the main floor and upstai\n11/11/24 9:32 AM Beth Cardoza Footage is now \n33068\n(Per Phil, with bsmt areas added. See below. My count excluding John Deere room already figured)---\n11/11/24 9:33 AM Beth Cardoza Re Railey ln basement \n\nSo the basement should be 174 12’ sheets for walls and storm shelter ceilings plus I figured 10 sheets for MMR walls \nThis does not include basement garage. (REW measured 32 sheets for walls and 22 5/8\n02/19/24 1:52 PM Beth Cardoza They are asking for a budget cutting ideas…can you leave out everything in basement except john deere room?---\n01/30/24 3:27 PM Beth Cardoza Same finish as last time - L4 smooth walls, random roll ceilings. orange peel closets (except maybe loft closet? CO for that to go smooth last time). Maybe orange peel garage? Checking on if windows are wrapped or not.---\n01/30/24 5:19 PM Beth Cardoza Currently no window wraps planned---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178405759",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3524 - Whitlock - 1735 N Raeley Ln, Spfd - Pitts, Doug - Doug 417-840-5759 - 4178405759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.006Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zx27y3ek8qez9oz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.211Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whistler, Deanna",
+ "Contact_Notes": "",
+ "Contact_Person": "Deanna (417) 300-0145",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1497 W Shelvin Rock Rd, Nixa",
+ "Job_Codes": "3523 - Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3523%20Kitchen%20%281497%20W%20Shelvin%20Rock%20Rd%2C%20Nixa%29%20%28Whistler%2C%20Deanna%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kitchen - 1497 W Shelvin Rock Rd, Nixa - Whistler, Deanna",
+ "Job_Name": "Kitchen",
+ "Job_Number": "3523",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3523 - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 4:43 PM Beth Cardoza Assume not awarded---\n02/21/24 2:42 PM Beth Cardoza Wants estimate on the other scopes. Rick to view---\n04/04/24 12:45 PM Beth Cardoza He hasn't had time and she hasn't called him back and we don't even know if we want to do it so we are putting it on the back burner. She has a quote for the repairs so if she wants us to do that in the meantime we can, but \n02/08/24 1:50 PM Beth Cardoza She just called me back. Eddie will look at that on Tuesday the 13th at 7 am.---\n02/08/24 9:37 AM Beth Cardoza I’ve called twice and left messages both times. - Stephanie---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173000145",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3523 - Kitchen - 1497 W Shelvin Rock Rd, Nixa - Whistler, Deanna - Deanna (417) 300-0145 - 4173000145",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.114Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wq4bjyme53w96nj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.303Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "482 Stillwood Ln, Branson",
+ "Job_Codes": "3522 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 482 Stillwood Ln, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "3522",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3522 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/01/24 6:35 AM david cardoza Stock 9,124\nNo Leftover---\n01/29/24 10:34 AM Beth Cardoza Estimate waiting on job walk/approval---\n01/29/24 10:16 AM Beth Cardoza 9,124 sqft measured---\n01/29/24 10:16 AM Beth Cardoza Stillwood code\n#3009---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178407855",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3522 - N/A - 482 Stillwood Ln, Branson - Still, Mark - Mike Steel 417-840-7855 - 4178407855",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.166Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gd3xipcb06q611k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.415Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holtz Builders Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Bart Lechner",
+ "Docs_Uploaded": false,
+ "Due_Date": "2024-02-01 00:00:00.000Z",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "1PM",
+ "EXT": 0,
+ "Email": "blechner@holtzbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3521 - IRH Big Cedar",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3521%20Holtz%20Builders%20%28Big%20Cedar%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "IRH Big Cedar - Branson - Holtz Builders Inc.",
+ "Job_Name": "IRH Big Cedar",
+ "Job_Number": "3521",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3521 - IRH Big Cedar",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/17/25 9:12 AM Regina McClain Need change orders submitted ASAP for possible billing---",
+ "Office_Rep": "Regina McClain",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6082178686",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3521 - IRH Big Cedar - Branson - Holtz Builders Inc. - Bart Lechner - 6082178686",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.218Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ksycjnrcd57uv1c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.538Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Blauvelt, Teddy",
+ "Contact_Notes": "",
+ "Contact_Person": "tbluefield99@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "600 W Kerr St, Spfd",
+ "Job_Codes": "3520 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 600 W Kerr St, Spfd - Blauvelt, Teddy",
+ "Job_Name": "Patch",
+ "Job_Number": "3520",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3520 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/21/24 4:11 PM Beth Cardoza assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3520 - Patch - 600 W Kerr St, Spfd - Blauvelt, Teddy - tbluefield99@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.274Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5qj98cakebzzuxw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.663Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Builders International",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy Godwin",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lloyd St, Ozark",
+ "Job_Codes": "3519 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Lloyd St, Ozark - Builders International",
+ "Job_Name": "N/A",
+ "Job_Number": "3519",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3519 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3519 - N/A - Lloyd St, Ozark - Builders International - Jeremy Godwin - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.319Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g1mag0jurdkoj56",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.769Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Eric",
+ "Contact_Notes": "",
+ "Contact_Person": "?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1302 S Amber Ridge Dr, Nixa",
+ "Job_Codes": "3518 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1302 S Amber Ridge Dr, Nixa - Davis, Eric",
+ "Job_Name": "Remodel",
+ "Job_Number": "3518",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3518 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/08/24 3:42 PM david cardoza Stock 3,670\nLeftover 416\nHang 3,254---\n04/15/24 1:48 PM Beth Cardoza He's not asking for a price, but we do need to put something together for billing at minimum.---\n03/07/24 4:37 PM Beth Cardoza They are framing next week so can do a walkthrough after that---\n01/30/24 4:30 PM Beth Cardoza Will do a walkthrough late March probably for a bid---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3518 - Remodel - 1302 S Amber Ridge Dr, Nixa - Davis, Eric - ? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.378Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3baagn1dgo5awws",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:34.895Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2720 W, Kearney St.",
+ "Job_Codes": "3517 - AMPM C- Store",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3517 - AMPM C-Store - A2D",
+ "Job_Full_Name": "AMPM C- Store - 2720 W, Kearney St. - A2D",
+ "Job_Name": "AMPM C- Store",
+ "Job_Number": "3517",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3517 - AMPM C- Store",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3517 - AMPM C- Store - 2720 W, Kearney St. - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.437Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wrftpwd8f6exxlu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:35:10.656Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zahirsha, Sultan",
+ "Contact_Notes": "",
+ "Contact_Person": "Sultan Zahirsha",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1441 South Farm Road 133 Greene County",
+ "Job_Codes": "3516 - American Momin Park",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3516%20American%20Momin%20Park&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "American Momin Park - 1441 South Farm Road 133 Greene County - Zahirsha, Sultan",
+ "Job_Name": "American Momin Park",
+ "Job_Number": "3516",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3516 - American Momin Park",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3516 - American Momin Park - 1441 South Farm Road 133 Greene County - Zahirsha, Sultan - Sultan Zahirsha - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.486Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vhlqljlwkmbsbs0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.103Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dale, Rick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick Dale (417) 6938508",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10640 W State Highway 174, Republic",
+ "Job_Codes": "3515 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3515%20%2810640%20W%20State%20Highway%20174%2C%20Republic%29%20%28Dale%2C%20Rick%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 10640 W State Highway 174, Republic - Dale, Rick",
+ "Job_Name": "N/A",
+ "Job_Number": "3515",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3515 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/16/24 10:11 AM Beth Cardoza CO: patch 2 holes, some screws that were missed in the master bath by the toilet and retexture two window seal, also above the door to the garage (at least some of that would be billable)---\n08/14/24 9:46 AM Beth Cardoza Possible CO for framing scopes per Dave message: \n\nThere are four doorway that we had to wrap on this house. I didn’t see any mention of that in the estimate. \nAlso, some framing issues that I’ll probably give Angel a couple \n08/14/24 9:48 AM Beth Cardoza Note: 2 doorways were specifically included and 4 way window wraps in the updated estimate.---\n08/14/24 6:49 AM david cardoza Stock 7,568\nLeftover 144\nHang 7424---\n01/25/24 10:42 AM Beth Cardoza Orange Peel walls, stomp / knock down ceiling, square corners, 3/4 wrap windows. Tape, but no texture in basement---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3515 - N/A - 10640 W State Highway 174, Republic - Dale, Rick - Rick Dale (417) 6938508 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.538Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rmju3qaejqjiihr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.231Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cripple Creek",
+ "Contact_Notes": "",
+ "Contact_Person": "Wes Spencer 918-346-9950",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "124 W. Geworge E Phelps Blvd. Carthage MO 64836",
+ "Job_Codes": "3514 - Lumio Dental Carthage",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3514%20Lumio%20Dental%20Carthage&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lumio Dental Carthage - 124 W. Geworge E Phelps Blvd. Carthage MO 64836 - Cripple Creek",
+ "Job_Name": "Lumio Dental Carthage",
+ "Job_Number": "3514",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3514 - Lumio Dental Carthage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3514 - Lumio Dental Carthage - 124 W. Geworge E Phelps Blvd. Carthage MO 64836 - Cripple Creek - Wes Spencer 918-346-9950 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.597Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "svflj5c36rh4wpj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.347Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": true,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Grier Branch, Strafford",
+ "Job_Codes": "3513 - Larson",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3513%20Larson%20%28Strafford%29%20%28McMillin%2C%20Allen%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Larson - Grier Branch, Strafford - McMillin, Allen",
+ "Job_Name": "Larson",
+ "Job_Number": "3513",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3513 - Larson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/22/25 10:41 AM Beth Cardoza CO?: No beams? But also Foyer was 12' instead of 10'.---\n09/19/25 8:58 AM david cardoza Coldwall delivery 25-12’\nleftover : none\n\nShop building measured 1,560\n\nStrafford house and shop measured 21,132 sq ft---\n10/16/24 4:06 PM Beth Cardoza New plans. Will be ready in probably about 3 months---\n01/23/24 3:34 PM Beth Cardoza 10' ceilings on main floor. 9' ceilings on 2nd. floor. Light texture on walls, square corners.\nThis job is in Strafford. Should be ready in 4 to 5 weeks.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3513 - Larson - Grier Branch, Strafford - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.646Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x4pb7xuflivggs1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:35:11.064Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Douglas Contracting",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Douglas greg@douglas-contracting.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4214 West Republic Rd. Ste A",
+ "Job_Codes": "3512 - Celebrate Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3512%20Celebrate%20Dental&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Celebrate Dental - 4214 West Republic Rd. Ste A - Douglas Contracting",
+ "Job_Name": "Celebrate Dental",
+ "Job_Number": "3512",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3512 - Celebrate Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3512 - Celebrate Dental - 4214 West Republic Rd. Ste A - Douglas Contracting - Greg Douglas greg@douglas-contracting.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.713Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "smqzn7x3qzy2t30",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.559Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Contact: Seth - scunningham@construct-com.com Office: (417) 306-9680 Fax: (417) 306-9679 Cell: (573) 590-2828",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3861 South Ave. Springfield MO",
+ "Job_Codes": "3511 - Grooms Office Remodel and addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3511%20Construct%20%28Grooms%20Office%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Grooms Office Remodel and addition - 3861 South Ave. Springfield MO - Construct",
+ "Job_Name": "Grooms Office Remodel and addition",
+ "Job_Number": "3511",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3511 - Grooms Office Remodel and addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3511 - Grooms Office Remodel and addition - 3861 South Ave. Springfield MO - Construct - Contact: Seth - scunningham@construct-com.com Office: (417) 306-9680 Fax: (417) 306-9679 Cell: (573) 590-2828 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.768Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a82smio9t4smvxf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.687Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1090 W Woodhill Ct, Spfd",
+ "Job_Codes": "3510 - Personal Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Personal Bath - 1090 W Woodhill Ct, Spfd - Weber, Bryon",
+ "Job_Name": "Personal Bath",
+ "Job_Number": "3510",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3510 - Personal Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3510 - Personal Bath - 1090 W Woodhill Ct, Spfd - Weber, Bryon - Bryon (417) 830-2424 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.827Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bi75ijwt1y9kxph",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.800Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Royal Dornoch, Branson",
+ "Job_Codes": "3509 - Rea",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rea - Royal Dornoch, Branson - Ozark Mountain Homes",
+ "Job_Name": "Rea",
+ "Job_Number": "3509",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3509 - Rea",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/30/24 1:41 PM Beth Cardoza This job is cancelled. Owners bought a house instead---\n01/19/24 3:28 PM Beth Cardoza There are 9 foot walls in the basement and main floor with a 400 sq ft bonus room over the garage with 8' walls. Three way window wrap and standard textures with square corners. This is located in Branson Hills on Royal Dorn",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3509 - Rea - Royal Dornoch, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.875Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r066sxdvhyg2aw1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:35.898Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gurian, Rita",
+ "Contact_Notes": "",
+ "Contact_Person": "Rita Gurian (417) 848-7004",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5043 S Glenhaven, Spfd",
+ "Job_Codes": "3508 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 5043 S Glenhaven, Spfd - Gurian, Rita",
+ "Job_Name": "Water damage",
+ "Job_Number": "3508",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3508 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3508 - Water damage - 5043 S Glenhaven, Spfd - Gurian, Rita - Rita Gurian (417) 848-7004 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.926Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "to9itpqx4k2lmmz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.015Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Marco Contractors",
+ "Contact_Notes": "",
+ "Contact_Person": "Jayne Baxter",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3125 Green Mountain Drive Branson, MO 65616",
+ "Job_Codes": "3507 - C3 High Profile",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3507%20Marco%20Contracting%20%28C3%20High%20Profile%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "C3 High Profile - 3125 Green Mountain Drive Branson, MO 65616 - Marco Contractors",
+ "Job_Name": "C3 High Profile",
+ "Job_Number": "3507",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3507 - C3 High Profile",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3507 - C3 High Profile - 3125 Green Mountain Drive Branson, MO 65616 - Marco Contractors - Jayne Baxter - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:15.994Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dfrc6ll6b75k0dm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.135Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DAVACO, LP - Irving",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryan Sartin | +1 817-307-1363 | bryan.sartin@davaco.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 S. Glenstone Ave. Spfd 65804",
+ "Job_Codes": "3506 - JC Penny",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3506%20Davaco%20%28JC%20Pennys%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "JC Penny - 2825 S. Glenstone Ave. Spfd 65804 - DAVACO, LP - Irving",
+ "Job_Name": "JC Penny",
+ "Job_Number": "3506",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3506 - JC Penny",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3506 - JC Penny - 2825 S. Glenstone Ave. Spfd 65804 - DAVACO, LP - Irving - Bryan Sartin | +1 817-307-1363 | bryan.sartin@davaco.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.047Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bzzy9kr6s55at0y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.242Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rogersville",
+ "Job_Codes": "3505 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Rogersville - Larsen, Steve",
+ "Job_Name": "Remodel",
+ "Job_Number": "3505",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3505 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3505 - Remodel - Rogersville - Larsen, Steve - Steve Larsen 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.110Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r6qp3z4vnyapkjn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.355Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schrock, Levi",
+ "Contact_Notes": "",
+ "Contact_Person": "Levi Schrock (816) 517-2558",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rasberry Rd, Highlandville",
+ "Job_Codes": "3504 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3504%20Rasberry%20Rd%2C%20Highlandville%20%28Highlandville%29%20%28Schrock%2C%20Levi%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Rasberry Rd, Highlandville - Schrock, Levi",
+ "Job_Name": "N/A",
+ "Job_Number": "3504",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3504 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/14/24 10:37 AM Beth Cardoza I have a new set of plans and would like another bid from you all if I could. House will have 9 ft ceilings throughout house and garage except for living room that will have a small vaulted ceiling.---\n05/22/24 9:29 AM Beth Cardoza Decided it was too expensive to build at this time. So not awarded.---\n01/17/24 4:16 PM Beth Cardoza s for the attic storage space, I will not need then finished as of now. \n\nFor the windows, could I get a bid for both? I am not sure what rout I want to take on that yet. If not, then bid with wrapped in sheet rock and wha",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3504 - N/A - Rasberry Rd, Highlandville - Schrock, Levi - Levi Schrock (816) 517-2558 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.179Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1jkd9wuc530wx1r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.467Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims | +1 417-450-6018 | jarrett.sims@nabholz.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3801 South National Avenue, Springfield, MO 65807",
+ "Job_Codes": "3503 - Cox South",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cox South - 3801 South National Avenue, Springfield, MO 65807 - Nabholtz",
+ "Job_Name": "Cox South",
+ "Job_Number": "3503",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3503 - Cox South",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3503 - Cox South - 3801 South National Avenue, Springfield, MO 65807 - Nabholtz - Jarrett Sims | +1 417-450-6018 | jarrett.sims@nabholz.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.222Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5dol39ltpdaqzq1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.575Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz Construction Corporation - Constr - Springfield",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims | +1 417-450-6018 | jarrett.sims@nabholz.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2000 North Lyon Avenue, Springfield, MO 65803",
+ "Job_Codes": "3502 - New Reed Academy",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3502%20Nabholtz%20%28New%20Reed%20Academy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "New Reed Academy - 2000 North Lyon Avenue, Springfield, MO 65803 - Nabholz Construction Corporation - Constr - Springfield",
+ "Job_Name": "New Reed Academy",
+ "Job_Number": "3502",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3502 - New Reed Academy",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3502 - New Reed Academy - 2000 North Lyon Avenue, Springfield, MO 65803 - Nabholz Construction Corporation - Constr - Springfield - Jarrett Sims | +1 417-450-6018 | jarrett.sims@nabholz.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.282Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ffb2ab9y5jo260g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.691Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Invicta Construction Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Avery Harper Estimator• avery@invicta.us • +1 252-245-0306",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1746 South 20th Street, Ozark, MO 65721",
+ "Job_Codes": "3501 - Earthwise Pet",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3501%20Earthwise%20Pet&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Earthwise Pet - 1746 South 20th Street, Ozark, MO 65721 - Invicta Construction Solutions",
+ "Job_Name": "Earthwise Pet",
+ "Job_Number": "3501",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3501 - Earthwise Pet",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3501 - Earthwise Pet - 1746 South 20th Street, Ozark, MO 65721 - Invicta Construction Solutions - Avery Harper Estimator• avery@invicta.us • +1 252-245-0306 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.338Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "np5c7a4ahulpxa3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.790Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Dwight",
+ "Contact_Notes": "",
+ "Contact_Person": "Father in law to show Dale Hartwell 417-880-5417. Client: Dwight (417) 840-7711",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1015 Hawk Pond Rd, Elkland",
+ "Job_Codes": "3500 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3500%2E2%20Repairs%20%281015%20Hawk%20Pond%20Rd%2C%20Elkland%29%20%28Smith%2C%20Dwight%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Repairs - 1015 Hawk Pond Rd, Elkland - Smith, Dwight",
+ "Job_Name": "Repairs",
+ "Job_Number": "3500",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3500 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/23/24 12:08 PM Beth Cardoza Repairs requested Nov 11th---\n10/23/24 12:10 PM Beth Cardoza CO: Going back to finish a hole we missed and then there is return air and vent patches and a 4x12' area he is cutting out that will be extras if I understood right.---\n05/14/24 11:35 AM Beth Cardoza CO: Getting 17 sticks of 8 ft paper face bead they added 4 door way wraps and possibly 3 sticks of 10 ft zip, don’t know if they want it or to trim it out,\n\nAlso two patches in the laundry room---\n05/14/24 11:37 AM Beth Cardoza patches are about 2'x5' and 2'x7'---\n05/20/24 2:41 PM Beth Cardoza finishing up today/tomorrow---\n04/15/24 12:31 PM Beth Cardoza CO: He wants us to haul debris---\n04/12/24 2:04 PM Beth Cardoza He's ready for us now!---\n01/24/24 12:37 PM Beth Cardoza Eddie has an appointment for Monday 29th at 11:30---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3500 - Repairs - 1015 Hawk Pond Rd, Elkland - Smith, Dwight - Father in law to show Dale Hartwell 417-880-5417. Client: Dwight (417) 840-7711 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.397Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fu179kfqcw3eh2j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:36.922Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3499 - Lot 16 Skyline Ridge",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3499%20Lot%2016%20Skyline%20Ridge%20%28Omaha%2C%20AR%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lot 16 Skyline Ridge - Omaha, AR - Peach Tree",
+ "Job_Name": "Lot 16 Skyline Ridge",
+ "Job_Number": "3499",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3499 - Lot 16 Skyline Ridge",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/25/24 6:40 PM david cardoza Stock 7,584\nLeftover 108\nHang 7476---\n09/26/24 4:28 PM Beth Cardoza Stock was only 7504!. So actual final hang was 7396. Finish will be less because he was not supposed to hang the mechanical room so we should not be doing anything else in that room.---\n09/26/24 4:32 PM Beth Cardoza Paper and finish should be 7204 sqft---\n01/16/24 9:14 AM Beth Cardoza level four finish with window wraps. Probably be ready around June/July---\n01/15/24 3:46 PM Beth Cardoza Same plan for Lot 15 & Lot 16---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3499 - Lot 16 Skyline Ridge - Omaha, AR - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.450Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5cm4vl1wv9lyc2d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.030Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3498 - Lot 15 Skyline Ridge",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3498%20Lot%2015%20Skyline%20Ridge%20%28Omaha%2C%20AR%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lot 15 Skyline Ridge - Omaha, AR - Peach Tree",
+ "Job_Name": "Lot 15 Skyline Ridge",
+ "Job_Number": "3498",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3498 - Lot 15 Skyline Ridge",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/25/24 6:35 PM david cardoza Stock 5104\nLeftover 432\nHang 4672---\n01/16/24 9:14 AM Beth Cardoza level four finish with window wraps. Probably be ready around June/July---\n01/15/24 3:46 PM Beth Cardoza Same plan for Lot 15 & Lot 16---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3498 - Lot 15 Skyline Ridge - Omaha, AR - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.518Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ig8z5oa136lit4t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.142Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso 417-336-3895",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "222 Fireside Rd., Blue Eye",
+ "Job_Codes": "3497 - Pfeiffer",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3497%20Pfeiffer%20%28Blue%20Eye%29%20%28Masterpiece%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pfeiffer - 222 Fireside Rd., Blue Eye - Masterpiece",
+ "Job_Name": "Pfeiffer",
+ "Job_Number": "3497",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3497 - Pfeiffer",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/24 10:24 AM david cardoza Stock 11,160\nLeftover 96\nhang 11,064---\n03/18/24 2:27 PM Beth Cardoza Estimate may need adjustment. vault is lower than figured---\n03/18/24 9:05 AM Beth Cardoza DIRECTIONS: It doesn’t show up on GPS but take hwy 13 to Blue Eye and turn left on EE which is just before the Blue Eye middle school. Stay on EE and it will turn into Avery Ridge Rd. Just stay on it and eventually it will be\n03/11/24 2:25 PM Beth Cardoza Ready middle of next week---\n01/12/24 2:28 PM Beth Cardoza I need a price on this one also. It's in Blue Eye, Mo.\norange peel texture, square corners, basement gets done also.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3497 - Pfeiffer - 222 Fireside Rd., Blue Eye - Masterpiece - Tom Caruso 417-336-3895 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.570Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "29rx8jnuh94ajj0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.251Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "513 N. Pine Mountainview MO 65548",
+ "Job_Codes": "3496 - Mountainview Subway",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mountainview Subway - 513 N. Pine Mountainview MO 65548 - A2D",
+ "Job_Name": "Mountainview Subway",
+ "Job_Number": "3496",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3496 - Mountainview Subway",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3496 - Mountainview Subway - 513 N. Pine Mountainview MO 65548 - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.626Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wyxsna6h5gotsmt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.370Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kuhn, Kimberly",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Kuhn (417) 619-0938",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7394 W William Blake Cir, Spfd",
+ "Job_Codes": "3495 - Fix Smooth",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fix Smooth - 7394 W William Blake Cir, Spfd - Kuhn, Kimberly",
+ "Job_Name": "Fix Smooth",
+ "Job_Number": "3495",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3495 - Fix Smooth",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/11/24 8:58 AM Beth Cardoza Assume not awarded---\n01/11/24 4:15 PM Beth Cardoza Due to look at this Thursday the 18 th at 8 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3495 - Fix Smooth - 7394 W William Blake Cir, Spfd - Kuhn, Kimberly - Kim Kuhn (417) 619-0938 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.678Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vwc9f1d9lyz96fs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.471Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "426 N George Ave, Republic",
+ "Job_Codes": "3494 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 426 N George Ave, Republic - Temple Remodeling",
+ "Job_Name": "Remodel",
+ "Job_Number": "3494",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3494 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/30/24 12:12 PM Beth Cardoza Estimate waiting on job walk after they remove paneling and stuff---\n01/10/24 3:39 PM Beth Cardoza Hey Beth! Can I get rough numbers for a job? It'll be about 965sf of walls hang and orange peel texture, and 1560 sf of popcorn removal and knockdown texture. It's all 8' tall ceilings. You will be working straight on subfloo\n01/10/24 3:39 PM Beth Cardoza My responses: Is the hang, hanging over paneling?\n\nA quick rough estimate would be around $7500---\n01/11/24 4:25 PM Beth Cardoza They are removing the paneling---\n01/10/24 3:38 PM Beth Cardoza https://www.zillow.com/homedetails/426-N-George-Ave-Republic-MO-65738/50275810_zpid/ for photos---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3494 - Remodel - 426 N George Ave, Republic - Temple Remodeling - Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.738Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uklx4af1s1q18u4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.582Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3493 - LWH 46",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 46 - - Everlasting Homes",
+ "Job_Name": "LWH 46",
+ "Job_Number": "3493",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3493 - LWH 46",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/10/24 2:29 PM Beth Cardoza CO: Patches---\n01/23/24 8:57 AM david cardoza Drywall that was moved to this house from some other house of Jerry’s. I don’t know which one it was. Doesn’t matter.\n11-10’ sheets\nStock 11,404 ( not including the above)\nSo total stock 11,844\nLeftover 136\nHang 11,708---\n01/10/24 10:58 AM Beth Cardoza Estimate waiting on info---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3493 - LWH 46 - - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.794Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bd01dpcgeb28vuf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.699Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Alldredge, Boyd",
+ "Contact_Notes": "",
+ "Contact_Person": "Boyd Alldredge (816) 2626523",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "125 Brandy Ln, Kimberling City",
+ "Job_Codes": "3492 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3492%20Remodel%20%28125%20Brandy%20Ln%2C%20Kimberling%20City%29%20%28Alldredge%2C%20Boyd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 125 Brandy Ln, Kimberling City - Alldredge, Boyd",
+ "Job_Name": "Remodel",
+ "Job_Number": "3492",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3492 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/24 1:28 PM Beth Cardoza We took too long to send a quote (due to Rick's unavailability. I created it day of call, but he didn't review it for 10 days)---\n01/10/24 5:29 PM Beth Cardoza Yes, it's just to close off the opening between the outside door and the wall. Drywall on both sides. The opening is approximately 49 inches wide and 8 feet tall.\nAnd yes, you would need to cut back a few inches of carpet to",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3492 - Remodel - 125 Brandy Ln, Kimberling City - Alldredge, Boyd - Boyd Alldredge (816) 2626523 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.855Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v827in7e8xdyb1d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.799Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso 417-336-3895",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5925 S. Audrey Ct, Spfd",
+ "Job_Codes": "3491 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5925 S. Audrey Ct, Spfd - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "3491",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3491 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/06/24 7:20 AM david cardoza Stock 16,000\nno leftover---\n01/09/24 2:51 PM Beth Cardoza 5925 S. Audrey Ct. Springfield.\nSquare Corners\nLight Orange Peel on walls and ceilings \nNo window wraps \nProbably ready in about 2 1/2 months---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3491 - N/A - 5925 S. Audrey Ct, Spfd - Masterpiece - Tom Caruso 417-336-3895 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.907Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4mkg3qmz93lppwm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:37.927Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BNC Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Jenkins. 417-209-5052",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3250 West Division St.",
+ "Job_Codes": "3490 - Division Street Paving",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3490%20BNC%20Builders%20%28Division%20Street%20Paving%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Division Street Paving - 3250 West Division St. - BNC Builders",
+ "Job_Name": "Division Street Paving",
+ "Job_Number": "3490",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3490 - Division Street Paving",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/16/24 4:08 PM Beth Cardoza Eric Jenkins didn't know if they needed drywall in the shop area or not. He will check on that.---\n01/16/24 4:04 PM Beth Cardoza As of 1/16/24 they decided upstairs they want heavy knockdown texture on the ceiling and SMOOTH walls---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3490 - Division Street Paving - 3250 West Division St. - BNC Builders - Eric Jenkins. 417-209-5052 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:16.958Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wtjf032j37ifslw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.026Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3489 - #75BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#75BC - Branson Cove - Still, Mark",
+ "Job_Name": "#75BC",
+ "Job_Number": "3489",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3489 - #75BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3489 - #75BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.022Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wi1fhecxsapl52j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.162Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3488 - #74BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#74BC - Branson Cove - Still, Mark",
+ "Job_Name": "#74BC",
+ "Job_Number": "3488",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3488 - #74BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3488 - #74BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.074Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "miiclr5nxfjbzpk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.269Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3487 - #73BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#73BC - Branson Cove - Still, Mark",
+ "Job_Name": "#73BC",
+ "Job_Number": "3487",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3487 - #73BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3487 - #73BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.126Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nvivkqt3lx2cgar",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.371Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3486 - #72BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#72BC - Branson Cove - Still, Mark",
+ "Job_Name": "#72BC",
+ "Job_Number": "3486",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3486 - #72BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3486 - #72BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.186Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xuiw76dhj2sbph9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.490Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3485 - #71BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#71BC - Branson Cove - Still, Mark",
+ "Job_Name": "#71BC",
+ "Job_Number": "3485",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3485 - #71BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3485 - #71BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.234Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4iebhffxh7yx753",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.606Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3484 - #70BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#70BC - Branson Cove - Still, Mark",
+ "Job_Name": "#70BC",
+ "Job_Number": "3484",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3484 - #70BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3484 - #70BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.294Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i74co6f22buukoq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.707Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "183 James Ford Ln, Ozark",
+ "Job_Codes": "3483 - Closet",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Closet - 183 James Ford Ln, Ozark - Essick, Dusty",
+ "Job_Name": "Closet",
+ "Job_Number": "3483",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3483 - Closet",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3483 - Closet - 183 James Ford Ln, Ozark - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.347Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vgoj3edqqixmlfc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.818Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "450 Sanity Pl, Galena",
+ "Job_Codes": "3482 - Shop",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3482%20Shop%20%28Galena%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Shop - 450 Sanity Pl, Galena - Pitts, Doug",
+ "Job_Name": "Shop",
+ "Job_Number": "3482",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3482 - Shop",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/29/24 4:42 PM Beth Cardoza Canceled---\n01/15/24 2:14 PM Beth Cardoza We are going back and forth on whether we want drywall or all wood walls and ceiling. Please hold for now.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3482 - Shop - 450 Sanity Pl, Galena - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.402Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bjz3ohshuxy2syt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:38.922Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hostetler",
+ "Contact_Notes": "",
+ "Contact_Person": "Eli Kempf (417) 733-1532",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "El Dorado Springs",
+ "Job_Codes": "3481 - Shop office infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3481%20Shop%20office%20infill%20%28El%20Dorado%20Springs%29%20%28Hostetler%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Shop office infill - El Dorado Springs - Hostetler",
+ "Job_Name": "Shop office infill",
+ "Job_Number": "3481",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3481 - Shop office infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/18/24 8:56 AM Beth Cardoza Door code 2620---\n02/26/24 2:44 PM Beth Cardoza Change: one bathroom with a shower in it, that he wanted to change to vinyl rock. Might not charge him for that.---\n02/21/24 10:35 AM Beth Cardoza CO: Went back to white grid and tile---\n02/21/24 10:34 AM Beth Cardoza CO: There will be some changes. Extra drywall, insulation and sound board. Rick has footages on his dictaphone.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3481 - Shop office infill - El Dorado Springs - Hostetler - Eli Kempf (417) 733-1532 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.462Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vdl28hblldj65mc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.026Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kempf, Eli",
+ "Contact_Notes": "",
+ "Contact_Person": "Eli Kempf (417) 733-1532",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "225 South West Hwy 54, Osceola",
+ "Job_Codes": "3480 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 225 South West Hwy 54, Osceola - Kempf, Eli",
+ "Job_Name": "Remodel",
+ "Job_Number": "3480",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3480 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/10/24 9:15 AM Beth Cardoza Eddie viewed it in January and we never heard back. Assuming not awarded---\n01/04/24 2:05 PM Beth Cardoza Eli is affiliated with Hostetler---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3480 - Remodel - 225 South West Hwy 54, Osceola - Kempf, Eli - Eli Kempf (417) 733-1532 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.514Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zm9ski3ct5bk1tv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.134Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Howard, Bob",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Howard (816) 392-2402",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2198 W Misty River Dr, Nixa",
+ "Job_Codes": "3479 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 2198 W Misty River Dr, Nixa - Howard, Bob",
+ "Job_Name": "Repair",
+ "Job_Number": "3479",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3479 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/21/24 2:07 PM Beth Cardoza Assumed not awarded. Never heard back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3479 - Repair - 2198 W Misty River Dr, Nixa - Howard, Bob - Bob Howard (816) 392-2402 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.566Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "051j9a5egn1u483",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.268Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "3478 - Rocky Shores Pool House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores Pool House - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores Pool House",
+ "Job_Number": "3478",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3478 - Rocky Shores Pool House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/23/24 1:08 PM david cardoza First stock 8,384\nSecond stock 480\nLeftover 280\nHang 8,584---\n01/05/24 4:50 PM Beth Cardoza Estimate waiting on information---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3478 - Rocky Shores Pool House - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.614Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "usy51m3920lavii",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.395Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "510 N. Main Springfield Mo 65804",
+ "Job_Codes": "3477 - Island Park Properties",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3477%20A2D%20%28Island%20Park%20Properties%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Island Park Properties - 510 N. Main Springfield Mo 65804 - A2D",
+ "Job_Name": "Island Park Properties",
+ "Job_Number": "3477",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3477 - Island Park Properties",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3477 - Island Park Properties - 510 N. Main Springfield Mo 65804 - A2D - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.666Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9h9gyaxlzqb7d4p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.512Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10032 N FR 163, Pleasant Hope",
+ "Job_Codes": "3476 - Tiny House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Tiny House - 10032 N FR 163, Pleasant Hope - Larsen, Steve",
+ "Job_Name": "Tiny House",
+ "Job_Number": "3476",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3476 - Tiny House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/05/24 4:49 PM Beth Cardoza Ready in about 2 weeks---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3476 - Tiny House - 10032 N FR 163, Pleasant Hope - Larsen, Steve - Steve Larsen 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.742Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4xn33drmosbp0yq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.623Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "808 E Carleton",
+ "Job_Codes": "3475 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 808 E Carleton - Larsen, Steve",
+ "Job_Name": "N/A",
+ "Job_Number": "3475",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3475 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/24 3:15 PM Beth Cardoza Went back and patched around a doorway we missed---\n10/04/24 3:16 PM Beth Cardoza Assuming it was part of the TM stuff so billing it TM---\n05/14/24 12:00 PM Beth Cardoza We'll bill this stuff TM/after the fact---\n05/14/24 11:45 AM Beth Cardoza We are going back to wrap windows and stuff! Everything will need shimming out and there's trim up and stuff so there will be masking involved, etc.---\n02/06/24 7:05 AM david cardoza Main level stock 6,680\nBasement stock 960\nFinal 3rd stock 672\nTotal stock 8,312\nNo leftover---\n01/05/24 4:49 PM Beth Cardoza Complete upstairs to do in about a week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3475 - N/A - 808 E Carleton - Larsen, Steve - Steve Larsen 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.794Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jmrdp6w43rs6bml",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.739Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1858 N Phillips Rd, Nixa",
+ "Job_Codes": "3474 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1858 N Phillips Rd, Nixa - Larsen, Steve",
+ "Job_Name": "Remodel",
+ "Job_Number": "3474",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3474 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/01/24 12:57 PM Beth Cardoza Also, there were 3 ceiling patches that were not originally there that we had to patch. - possible CO---\n02/01/24 12:56 PM Beth Cardoza CO: soffit in basement (basement was excluded!). 10 sheets of drywall (2 already there) to hang and finish.---\n01/05/24 4:48 PM Beth Cardoza \"larger job\"---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3474 - Remodel - 1858 N Phillips Rd, Nixa - Larsen, Steve - Steve Larsen 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.859Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c08kk1f8wz9az4f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.843Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Southpaw Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Noah Williams Assistant Project Manager • +1 864-305-3596 •",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 South Glenstone Avenue, H08J,",
+ "Job_Codes": "3473 - H08J",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3473%20SouthPaw%20%28Battlefield%20Mall%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "H08J - 2825 South Glenstone Avenue, H08J, - Southpaw Solutions",
+ "Job_Name": "H08J",
+ "Job_Number": "3473",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3473 - H08J",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3473 - H08J - 2825 South Glenstone Avenue, H08J, - Southpaw Solutions - Noah Williams Assistant Project Manager • +1 864-305-3596 • - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.910Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "68zeiaisbng099o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:39.967Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Trent C (417) 840-6116",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "TBD",
+ "Job_Codes": "3472 - Mini Storage",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mini Storage - TBD - Cowherd Construction",
+ "Job_Name": "Mini Storage",
+ "Job_Number": "3472",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3472 - Mini Storage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3472 - Mini Storage - TBD - Cowherd Construction - Trent C (417) 840-6116 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:17.969Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o4zyyukbrghhphc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.075Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "David Hurd",
+ "Contact_Notes": "",
+ "Contact_Person": "David Hurd",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Taney Co.",
+ "Job_Codes": "3471 - WTCFP",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3471%20David%20Hurd%20%28WTCFP%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "WTCFP - Taney Co. - David Hurd",
+ "Job_Name": "WTCFP",
+ "Job_Number": "3471",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3471 - WTCFP",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3471 - WTCFP - Taney Co. - David Hurd - David Hurd - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.031Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yiok8m9srd4uume",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.200Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Leon Frazier",
+ "Contact_Notes": "",
+ "Contact_Person": "620.253.4100 frazierleon@gmail.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kimberling City",
+ "Job_Codes": "3470 - Kimberling City Laundrymat",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kimberling City Laundrymat - Kimberling City - Leon Frazier",
+ "Job_Name": "Kimberling City Laundrymat",
+ "Job_Number": "3470",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3470 - Kimberling City Laundrymat",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3470 - Kimberling City Laundrymat - Kimberling City - Leon Frazier - 620.253.4100 frazierleon@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.087Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8028sd8sjurf5sa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.303Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elder-Jones Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Ron Fitch",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd. Space #211 Tanger Outlets at Branson Branson, MO 65616",
+ "Job_Codes": "3469 - Lululemon (Tanger Mall)",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lululemon (Tanger Mall) - 300 Tanger Blvd. Space #211 Tanger Outlets at Branson Branson, MO 65616 - Elder-Jones Inc.",
+ "Job_Name": "Lululemon (Tanger Mall)",
+ "Job_Number": "3469",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3469 - Lululemon (Tanger Mall)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3469 - Lululemon (Tanger Mall) - 300 Tanger Blvd. Space #211 Tanger Outlets at Branson Branson, MO 65616 - Elder-Jones Inc. - Ron Fitch - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.154Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1g2px89zblxgseo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.412Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Axxys Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tyler Allie Bid Coordinator • tallie@axxysconstruction.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Boulevard, 211, Branson, MO 65616",
+ "Job_Codes": "3468 - Lululemon (Tanger Mall)",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3468%20Lululemon&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lululemon (Tanger Mall) - 300 Tanger Boulevard, 211, Branson, MO 65616 - Axxys Construction",
+ "Job_Name": "Lululemon (Tanger Mall)",
+ "Job_Number": "3468",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3468 - Lululemon (Tanger Mall)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3468 - Lululemon (Tanger Mall) - 300 Tanger Boulevard, 211, Branson, MO 65616 - Axxys Construction - Tyler Allie Bid Coordinator • tallie@axxysconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.214Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ygo6baeqm4qzvb1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.526Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Old Wire, Battlefield",
+ "Job_Codes": "3467 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Old Wire, Battlefield - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3467",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3467 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/26/24 4:24 PM Beth Cardoza No one knows about this job. archiving now.---\n01/11/24 3:18 PM Beth Cardoza Estimate waiting on walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3467 - N/A - Old Wire, Battlefield - Cowherd - 417-887-1600 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2ctf79jeu88c7f6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.631Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Palomino Dr, Ozark",
+ "Job_Codes": "3466 - Sutton",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3466%20Sutton%20%28Palomina%20Dr%2C%20Ozark%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Sutton - Palomino Dr, Ozark - Essick, Dusty",
+ "Job_Name": "Sutton",
+ "Job_Number": "3466",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3466 - Sutton",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "CO: 4\"x4\" ceiling patch. Bob repairing 10/6---09/26/25 2:49 PM Beth Cardoza CO: Patches (assuming billable. Confirm)---\n07/25/25 1:06 PM Beth Cardoza CO: Side of a door they furred in and a couple of patches in a closet.---\n04/11/25 9:53 AM Beth Cardoza There was a pool room or something added. Waiting on measurements to create a change order.---\n03/03/25 3:10 PM Beth Cardoza Tearaway at beams only, not window wraps---\n02/26/25 4:57 PM Beth Cardoza Waiting to find out if they need tearaway at window wraps.---\n02/26/25 12:05 PM david cardoza Final left over from coldwall delivery after coldwall hang is 64 ft.²---\n02/26/25 12:05 PM david cardoza Final left over from coldwall delivery after coldwall hang is 64 ft.²---\n10/12/24 3:57 PM Beth Cardoza Coming up. Needs review---\n11/01/24 11:40 AM Beth Cardoza Waiting for walkthrough---\n01/29/25 11:09 AM Beth Cardoza Angel looking at it tomorrow/Thursday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3466 - Sutton - Palomino Dr, Ozark - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.319Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3oun0vkkq6kpqos",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.738Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Morrow, Matthew",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 308-7115",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3946 S Clay Ave, Spfd",
+ "Job_Codes": "3465 - Re-texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Re-texture - 3946 S Clay Ave, Spfd - Morrow, Matthew",
+ "Job_Name": "Re-texture",
+ "Job_Number": "3465",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3465 - Re-texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3465 - Re-texture - 3946 S Clay Ave, Spfd - Morrow, Matthew - (417) 308-7115 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:18.366Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0qg8lw7y4jxbdvd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:30:40.846Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Seth Cunningham 18. No extras.---\n10/04/23 1:26 PM Beth Cardoza Dave walkthrough notes: 5831 E. Farm Rd 68\nStrafford, Mo. \n\n\nThree car garage about 10 foot over concrete. Stairway goes right up the middle of it to storage area upstairs. \n\nHang drywall on stairwell wall only. Also, there \n10/03/23 2:38 PM Beth Cardoza 37.31695° N, 93.16596° W---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3323 - N/A - 5831 E Farm Rd 68, Strafford - Meyers, David - David Meyers - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.550Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r0wmz2pngz2hx3o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.098Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2954 Old Jericho Rd, Seymour",
+ "Job_Codes": "3322 - House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "House - 2954 Old Jericho Rd, Seymour - Concept2Completion",
+ "Job_Name": "House",
+ "Job_Number": "3322",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3322 - House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/23/24 1:17 PM Beth Cardoza Anita is billing TM. I just need to create an estimate to match for EVA---\n04/18/24 12:01 PM Beth Cardoza CO: 2 water leaks. 6\"x18\". and 1'x1'. (8 screw pops that are warranty done at the same time). Eddie working on it today (people moving in on Monday)---\n04/18/24 2:15 PM Beth Cardoza Couldn't find screw pops! So all billable. Thursday and Friday, Eddie's time at this job.---\n10/18/23 7:17 AM david cardoza Cold wall stock 1,440\nLeftover on the coldwall 96\nFirst stock 36,932\nSecond stock 2,850\nTotal stock 39,782 (does not include the cold wall)\nfinal leftover 400\nFinisher 40,726---\n10/09/23 3:48 PM Beth Cardoza It's the Messengale Residence that we sent budgetary number in February for. We'll keep this number and archive the other---\n10/03/23 5:29 PM Beth Cardoza Ready probably mid November or a little sooner---\n10/03/23 5:28 PM Beth Cardoza Waiting for plans or info---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3322 - House - 2954 Old Jericho Rd, Seymour - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.602Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1r9fnb9q5slsf9p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.206Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fair & True Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Brown(417) 630-1649",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3321 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - - Fair & True Construction",
+ "Job_Name": "Addition",
+ "Job_Number": "3321",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3321 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/24/24 2:02 PM Beth Cardoza Thought it was awarded, but no response. Assume he went elsewhere---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3321 - Addition - - Fair & True Construction - Ben Brown(417) 630-1649 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.685Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c6cmwp1zsxpxrtt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.329Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Galle, Andy",
+ "Contact_Notes": "",
+ "Contact_Person": "Andy Galle (417) 619-0141",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1523 N Meadowood Ave, Spfd",
+ "Job_Codes": "3320 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1523 N Meadowood Ave, Spfd - Galle, Andy",
+ "Job_Name": "Patch",
+ "Job_Number": "3320",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3320 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3320 - Patch - 1523 N Meadowood Ave, Spfd - Galle, Andy - Andy Galle (417) 619-0141 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.743Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ja9wvdaek421xk5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.434Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reynolds, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle (417) 598-0010",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "35 White River Mountain Blvd, Hollister",
+ "Job_Codes": "3319 - Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wall - 35 White River Mountain Blvd, Hollister - Reynolds, Kyle",
+ "Job_Name": "Wall",
+ "Job_Number": "3319",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3319 - Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:58 PM Beth Cardoza Assume not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3319 - Wall - 35 White River Mountain Blvd, Hollister - Reynolds, Kyle - Kyle (417) 598-0010 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.793Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n40nvk0gu2zft1n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.542Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5569 Michigan Ave, Spfd",
+ "Job_Codes": "3318 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 5569 Michigan Ave, Spfd - Larsen, Steve",
+ "Job_Name": "Repair",
+ "Job_Number": "3318",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3318 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3318 - Repair - 5569 Michigan Ave, Spfd - Larsen, Steve - Steve Larsen 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.854Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t81zr5j38o7avt7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.638Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2126 W Swallow, Spfd",
+ "Job_Codes": "3317 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2126 W Swallow, Spfd - McMillin, Allen",
+ "Job_Name": "Repairs",
+ "Job_Number": "3317",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3317 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3317 - Repairs - 2126 W Swallow, Spfd - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.905Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uyzl7zi8pcqug90",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.729Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3316 - Hartville Community Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3316%20A2D%20%28Hartville%20Community%20Center%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hartville Community Center - - A2D Constructors LLC",
+ "Job_Name": "Hartville Community Center",
+ "Job_Number": "3316",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3316 - Hartville Community Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3316 - Hartville Community Center - - A2D Constructors LLC - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:26.950Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2lymj2kv8czlgw5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.846Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ellingson, Dave",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave (417) 353- 5637",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2707 W Bridlewood Trl, Ozark",
+ "Job_Codes": "3315 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2707 W Bridlewood Trl, Ozark - Ellingson, Dave",
+ "Job_Name": "Repairs",
+ "Job_Number": "3315",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3315 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/04/24 1:09 PM Beth Cardoza No response/communication. Assuming not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3315 - Repairs - 2707 W Bridlewood Trl, Ozark - Ellingson, Dave - Dave (417) 353- 5637 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.100Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b84ru3sq8oepkxi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:45.954Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ellingson, Dave",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave (417) 353- 5637",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "700 S 11th St, Ozark",
+ "Job_Codes": "3314 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 700 S 11th St, Ozark - Ellingson, Dave",
+ "Job_Name": "Repairs",
+ "Job_Number": "3314",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3314 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3314 - Repairs - 700 S 11th St, Ozark - Ellingson, Dave - Dave (417) 353- 5637 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.180Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ul9q8kph4l7tjb3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.058Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Winkley Home Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Corey (417) 990-0023",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "705 Hanging Branch Ridge, Cape Fair",
+ "Job_Codes": "3313 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3313%20%20%28705%20Hanging%20Branch%20Ridge%2C%20Cape%20Fair%29%20%28Winkley%20Home%20Builders%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 705 Hanging Branch Ridge, Cape Fair - Winkley Home Builders",
+ "Job_Name": "N/A",
+ "Job_Number": "3313",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3313 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 10:32 AM Beth Cardoza Left voicemail following up to find out if awarded 10/4 10:30 am---\n10/04/23 3:21 PM Beth Cardoza Still in review. Sent to owners and waiting to hear back from them.---\n09/29/23 9:42 AM Beth Cardoza Metal building with wood walls for Infill. Single level.\nBase height, 10 foot flat.\nSome vaulted ceilings on the sides that come down to 8 foot.\nMain room is double vaulted to a narrow flat at the top.\nOverall size probably a\n09/29/23 9:24 AM Beth Cardoza Could be ready around the week of 13th October---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3313 - N/A - 705 Hanging Branch Ridge, Cape Fair - Winkley Home Builders - Corey (417) 990-0023 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.240Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xa4levyfjek1og9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.174Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Anthony Moore",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3312 - Access Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3312%20Construct%20Access%20Dental%202&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Access Dental - - Construct",
+ "Job_Name": "Access Dental",
+ "Job_Number": "3312",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3312 - Access Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3312 - Access Dental - - Construct - Anthony Moore - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.285Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7642zmxjp2omp4a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.286Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zhogan, Igor",
+ "Contact_Notes": "",
+ "Contact_Person": "Igor (417) 755-0026",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1070 E National Place Blvd, Spfd",
+ "Job_Codes": "3311 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1070 E National Place Blvd, Spfd - Zhogan, Igor",
+ "Job_Name": "Remodel",
+ "Job_Number": "3311",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3311 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/28/23 9:58 AM Beth Cardoza Bob showed up and someone was already started on the job and he was told that the client met with another contractor the evening before and hired someone else. Don't know why they didn't tell us that before the appointment!--\n09/26/23 3:08 PM Beth Cardoza Bob to view at 5 pm today---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3311 - Remodel - 1070 E National Place Blvd, Spfd - Zhogan, Igor - Igor (417) 755-0026 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.336Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5i13q5fd7ks59z3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.402Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essicks",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty Essicks",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "HIghlandville",
+ "Job_Codes": "3310 - Outdoor Wonders",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3310%20Essicks%20Outdoor%20Wonders&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Outdoor Wonders - HIghlandville - Essicks",
+ "Job_Name": "Outdoor Wonders",
+ "Job_Number": "3310",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3310 - Outdoor Wonders",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3310 - Outdoor Wonders - HIghlandville - Essicks - Dusty Essicks - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "np6cws6v0pa4omz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.510Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hoey Homebuilders",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey (417) 300-4001",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "245 N Cedar Dr, Blue Eye",
+ "Job_Codes": "3309 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 245 N Cedar Dr, Blue Eye - Hoey Homebuilders",
+ "Job_Name": "N/A",
+ "Job_Number": "3309",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3309 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/07/23 7:50 AM david cardoza Stock 7,544\nLeftover96\nHang 7,448---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3309 - N/A - 245 N Cedar Dr, Blue Eye - Hoey Homebuilders - Bill Hoey (417) 300-4001 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.444Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o0vnm3gy94kn3pr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.635Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zernco",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Schmidt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3308 - Wendys Springfield",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wendys Springfield - Springfield - Zernco",
+ "Job_Name": "Wendys Springfield",
+ "Job_Number": "3308",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3308 - Wendys Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3308 - Wendys Springfield - Springfield - Zernco - Michael Schmidt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.492Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4gbk0a7sw5lw6y9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.750Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zernco",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Schmidt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3307 - Wendys Ozark",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wendys Ozark - Ozark - Zernco",
+ "Job_Name": "Wendys Ozark",
+ "Job_Number": "3307",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3307 - Wendys Ozark",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3307 - Wendys Ozark - Ozark - Zernco - Michael Schmidt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.536Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jlmb548t1nfzyyq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.854Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ruff, Thelma",
+ "Contact_Notes": "",
+ "Contact_Person": "Thelma (417) 848-8993",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "9656 N FR 239, Strafford",
+ "Job_Codes": "3306 - Utility Rm",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Utility Rm - 9656 N FR 239, Strafford - Ruff, Thelma",
+ "Job_Name": "Utility Rm",
+ "Job_Number": "3306",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3306 - Utility Rm",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3306 - Utility Rm - 9656 N FR 239, Strafford - Ruff, Thelma - Thelma (417) 848-8993 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.581Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k4cuzke0vtwb2ok",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:46.961Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wells, Clent & Cami",
+ "Contact_Notes": "",
+ "Contact_Person": "Cwells@jamesriver.org",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3502 N Bobolink Dr, Ozark",
+ "Job_Codes": "3305 - Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen - 3502 N Bobolink Dr, Ozark - Wells, Clent & Cami",
+ "Job_Name": "Kitchen",
+ "Job_Number": "3305",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3305 - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3305 - Kitchen - 3502 N Bobolink Dr, Ozark - Wells, Clent & Cami - Cwells@jamesriver.org - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.624Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o0x8vrzsrzpmazp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.053Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth Estimator Rich Kramer Construction 417.860.0995",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3369 West Jackson Street, Nixa, MO 65714",
+ "Job_Codes": "3304 - OTC Richwood Valley EDS & Ag Building",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3304%20OTC%20Richwood%20Valley&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "OTC Richwood Valley EDS & Ag Building - 3369 West Jackson Street, Nixa, MO 65714 - RKC",
+ "Job_Name": "OTC Richwood Valley EDS & Ag Building",
+ "Job_Number": "3304",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3304 - OTC Richwood Valley EDS & Ag Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3304 - OTC Richwood Valley EDS & Ag Building - 3369 West Jackson Street, Nixa, MO 65714 - RKC - Cheryl Griffeth Estimator Rich Kramer Construction 417.860.0995 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.668Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z4pp4y3iasl5hhk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.153Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1994 Hwy HH Highlandville",
+ "Job_Codes": "3303 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1994 Hwy HH Highlandville - Essick, Dusty",
+ "Job_Name": "N/A",
+ "Job_Number": "3303",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3303 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 10:37 AM david cardoza 1st Stock 4,928\n2nd stock 560\ntotal 5,488\nNo leftover?---\n10/02/23 12:55 PM Beth Cardoza Not ready yet. Dave looked at it but they are taking down a wall, etc so we'll look at it again when they've done what they are going to do.---\n10/02/23 12:58 PM Beth Cardoza Ready maybe this week??---\n09/26/23 3:09 PM Beth Cardoza Not asking for a price. Need to look at it again when the do some work, demoing walls and stuff.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3303 - N/A - 1994 Hwy HH Highlandville - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.721Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6ojdbjjzmp4yma2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.262Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zernco",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Schmidt Estimator • +1 316-559-2299 • +1 316-680-7887 • mschmidt@zernco.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1723 West Republic Road, Springfield, MO 65807",
+ "Job_Codes": "3302 - Wendys Springfield",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3302%20Wendys%20Springfield&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wendys Springfield - 1723 West Republic Road, Springfield, MO 65807 - Zernco",
+ "Job_Name": "Wendys Springfield",
+ "Job_Number": "3302",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3302 - Wendys Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3302 - Wendys Springfield - 1723 West Republic Road, Springfield, MO 65807 - Zernco - Michael Schmidt Estimator • +1 316-559-2299 • +1 316-680-7887 • mschmidt@zernco.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.777Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ay5dyci3r7t5z77",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.375Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wagner, Levi",
+ "Contact_Notes": "",
+ "Contact_Person": "Levi (417) 689-6572",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3301 - Office wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office wall - Springfield - Wagner, Levi",
+ "Job_Name": "Office wall",
+ "Job_Number": "3301",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3301 - Office wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 11:00 AM Beth Cardoza Probably mid to end of October. Having permit issues. He will call when ready---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3301 - Office wall - Springfield - Wagner, Levi - Levi (417) 689-6572 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.844Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c6l4t1hwl7na83p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.478Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Stewart",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3300 - Counseling Office/ Community Care rework",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3300%20JRC%20Counseling%20Community%20Office&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Counseling Office/ Community Care rework - Ozark - James River Church",
+ "Job_Name": "Counseling Office/ Community Care rework",
+ "Job_Number": "3300",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3300 - Counseling Office/ Community Care rework",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3300 - Counseling Office/ Community Care rework - Ozark - James River Church - Keith Stewart - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.888Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bgmikgmz8b7hxvo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.582Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Campbell, Daniel",
+ "Contact_Notes": "",
+ "Contact_Person": "Daniel 417-569-5860",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1530 South St Charles Ave, Springfield",
+ "Job_Codes": "3299 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1530 South St Charles Ave, Springfield - Campbell, Daniel",
+ "Job_Name": "Remodel",
+ "Job_Number": "3299",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3299 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 2:13 PM Beth Cardoza CO: install R19 insulation where soffit were removed. 1 bag (5 pieces)---\n09/19/23 2:10 PM Beth Cardoza made an appt for tomorrow at 1:30 for Bob to look at this.---\n09/18/23 2:59 PM Beth Cardoza Name: Daniel Campbell\nEmail Address: campbelldanielb@gmail.com\nGood Morning! I just purchased a home a few weeks ago, and need some help with projects on the ceiling. I would like to remove the soffits from the kitchen, and t",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3299 - Remodel - 1530 South St Charles Ave, Springfield - Campbell, Daniel - Daniel 417-569-5860 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.936Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dhb0y2xx9gfhymx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.698Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Set Free Ministry",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 605-3142",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "13425 S 690 Rd, Wyandotte, OK",
+ "Job_Codes": "3298 - Set Free Ministry",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Set Free Ministry - 13425 S 690 Rd, Wyandotte, OK - Set Free Ministry",
+ "Job_Name": "Set Free Ministry",
+ "Job_Number": "3298",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3298 - Set Free Ministry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3298 - Set Free Ministry - 13425 S 690 Rd, Wyandotte, OK - Set Free Ministry - (417) 605-3142 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:27.984Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kftlcleheq1rv5y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.790Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construx",
+ "Contact_Notes": "",
+ "Contact_Person": "Callie Kral 913.244.7246",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "200 E Commercial St, Lebanon",
+ "Job_Codes": "3297 - Allen Lofts",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3297%20Allen%20Lofts%20%28Lebanon%29%20%28Construx%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Allen Lofts - 200 E Commercial St, Lebanon - Construx",
+ "Job_Name": "Allen Lofts",
+ "Job_Number": "3297",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3297 - Allen Lofts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3297 - Allen Lofts - 200 E Commercial St, Lebanon - Construx - Callie Kral 913.244.7246 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.028Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6trdil1rdov1nhb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:47.894Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "LaMastus, Les",
+ "Contact_Notes": "",
+ "Contact_Person": "Les (928) 486-1983",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "694 Summer Rd, Kimberling City",
+ "Job_Codes": "3296 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 694 Summer Rd, Kimberling City - LaMastus, Les",
+ "Job_Name": "N/A",
+ "Job_Number": "3296",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3296 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/16/24 10:38 AM Beth Cardoza CO: \n\nSomebody had a step through on the ceiling. He wants us to fix it and he says he has a few minor touchups in the house that need to be done now that the paint is on you can see it. He was wondering how much it costs it\n11/01/24 11:23 AM Beth Cardoza Between Bob and Jay, we have put in 8.6 hours in so far. Maybe five dollars worth of material. It doesn’t sound like most of it was warranty. Outlet patch, and 3 to 4 dings throughout and step through. We have to come back s\n08/16/24 4:49 PM Beth Cardoza CO: Misc. Need to talk to Bob. At least patches in garage. Don't know if there is other stuff.---\n07/12/24 11:43 AM Beth Cardoza Change order; showers---\n05/06/24 9:44 AM Beth Cardoza CO: texture change to medium spray knock down ceilings and light orange peel walls---\n05/10/24 5:34 PM Beth Cardoza except basement---\n04/09/24 3:14 PM Beth Cardoza CO?: no longer 3 way wraps---\n04/09/24 3:29 PM Beth Cardoza Need to wait for accountant's copy to be released to create credit CO---\n04/25/24 2:17 PM Beth Cardoza We can make a credit memo, but we are waiting till end of job and seeing how it goes.---\n02/28/24 1:59 PM david cardoza Stock 22,920\nLeftover 378\nHang 22,542---\n09/19/23 12:06 PM Beth Cardoza To answer your questions on the scope of work I’m looking for a light hand texture on the walls and ceilings. The corners are to be square. Windows to be wrapped on three corners.---\n09/18/23 11:31 AM Beth Cardoza Estimate due 22nd---\n09/14/23 6:30 PM Beth Cardoza Rick Ragsdale neighbor. Rick referred him to us. New house. Intends to email plans tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3296 - N/A - 694 Summer Rd, Kimberling City - LaMastus, Les - Les (928) 486-1983 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.072Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w299kfjs06dslsy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.014Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1472 Copper Creek Rd, Nixa",
+ "Job_Codes": "3295 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1472 Copper Creek Rd, Nixa - McMillin, Allen",
+ "Job_Name": "Remodel",
+ "Job_Number": "3295",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3295 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 2:37 PM Beth Cardoza Sent follow up email---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3295 - Remodel - 1472 Copper Creek Rd, Nixa - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.128Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ipue32tqbcjxi1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.202Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLachlan, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 838-9646",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2750 Liberty Rd, Rogersville",
+ "Job_Codes": "3294 - Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen - 2750 Liberty Rd, Rogersville - MacLachlan, Julie",
+ "Job_Name": "Kitchen",
+ "Job_Number": "3294",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3294 - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/29/23 12:18 PM Beth Cardoza Eddie walk-through notes 9/29:\n\nCeiling with window is 8 ft ceiling in kitchen just over 9 ft, I say this because why I was there they discovered termite infestation, we need 1 roll of 2x6 r-13 insulation client does not lik\n09/26/23 3:09 PM Beth Cardoza Eddie to view on Friday---\n09/14/23 2:05 PM Beth Cardoza Eddie to view for estimate. Start around Oct 4th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3294 - Kitchen - 2750 Liberty Rd, Rogersville - MacLachlan, Julie - Julie (417) 838-9646 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.172Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r0wujehgafc2hcp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.297Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cook, Anna",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 619-8832 akbjorkman@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "532 W Portland St, Springfield",
+ "Job_Codes": "3293 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 532 W Portland St, Springfield - Cook, Anna",
+ "Job_Name": "Patch",
+ "Job_Number": "3293",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3293 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 2:43 PM Beth Cardoza Sent an email to follow up. (last communication was a week and a half ago when she was asking about schedule)---\n09/14/23 2:05 PM Beth Cardoza Stephanie called her yesterday and left a voicemail. Haven't heard back from her yet.---\n09/13/23 12:40 PM Beth Cardoza BBB lead. I sent her to our website---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3293 - Patch - 532 W Portland St, Springfield - Cook, Anna - (417) 619-8832 akbjorkman@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.224Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "anfz659ogrpkrgz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.390Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5318 S Parklane Ave, Spfd",
+ "Job_Codes": "3292 - Inset",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Inset - 5318 S Parklane Ave, Spfd - McMillin, Allen",
+ "Job_Name": "Inset",
+ "Job_Number": "3292",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3292 - Inset",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/14/23 2:03 PM Beth Cardoza TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3292 - Inset - 5318 S Parklane Ave, Spfd - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bxwb5jlqq8tx8gl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.490Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Zernco",
+ "Contact_Notes": "",
+ "Contact_Person": "Lead: Michael Schmidt Estimator • +1 316-559-2299 • mschmidt@zernco.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1931 West Marler Lane, Ozark, MO 65721",
+ "Job_Codes": "3291 - Wendys Ozark",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3291%20Wendys%20Ozark&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wendys Ozark - 1931 West Marler Lane, Ozark, MO 65721 - Zernco",
+ "Job_Name": "Wendys Ozark",
+ "Job_Number": "3291",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3291 - Wendys Ozark",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3291 - Wendys Ozark - 1931 West Marler Lane, Ozark, MO 65721 - Zernco - Lead: Michael Schmidt Estimator • +1 316-559-2299 • mschmidt@zernco.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.316Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "djb25umzkf9vhvw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.603Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Scaletty, John",
+ "Contact_Notes": "",
+ "Contact_Person": "jscaletty@dykeind.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2119 W Battlefield St 4175, Spfd",
+ "Job_Codes": "3290 - Dyke Lumber",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Dyke Lumber - 2119 W Battlefield St 4175, Spfd - Scaletty, John",
+ "Job_Name": "Dyke Lumber",
+ "Job_Number": "3290",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3290 - Dyke Lumber",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3290 - Dyke Lumber - 2119 W Battlefield St 4175, Spfd - Scaletty, John - jscaletty@dykeind.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.360Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aq61elsry3gnnk2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.710Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "+1 417-862-0622 | estimating@federalconstruction.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2500 North Airport Commerce, Springfield",
+ "Job_Codes": "3289 - Branson Bank-Branson West",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3289%20FX%20Branson%20Bank&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Bank-Branson West - 2500 North Airport Commerce, Springfield - Federal Construction",
+ "Job_Name": "Branson Bank-Branson West",
+ "Job_Number": "3289",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3289 - Branson Bank-Branson West",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3289 - Branson Bank-Branson West - 2500 North Airport Commerce, Springfield - Federal Construction - +1 417-862-0622 | estimating@federalconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.416Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uqiszevtcdvk3uc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.806Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Duffey Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Levy Fry (870) 654-3324",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5101 N Towne Centre Dr, Ozark",
+ "Job_Codes": "3288 - Discount Freight",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Discount Freight - 5101 N Towne Centre Dr, Ozark - Duffey Construction",
+ "Job_Name": "Discount Freight",
+ "Job_Number": "3288",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3288 - Discount Freight",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/17/23 12:04 PM Beth Cardoza Too high. They went with someone else that was $600 lower.---\n09/27/23 3:05 PM Beth Cardoza Dad walking again. We need to do a change order---\n09/08/23 11:08 AM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3288 - Discount Freight - 5101 N Towne Centre Dr, Ozark - Duffey Construction - Levy Fry (870) 654-3324 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.460Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ttfa1qh0e62hf9b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Parsley, Kurt",
+ "Contact_Notes": "",
+ "Contact_Person": "Kurt or Tami Parsley",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3311 S Dogwood Ln, Spfd",
+ "Job_Codes": "3287 - Brenda",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Brenda - 3311 S Dogwood Ln, Spfd - Parsley, Kurt",
+ "Job_Name": "Brenda",
+ "Job_Number": "3287",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3287 - Brenda",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/25 2:11 PM Beth Cardoza Never heard back on this---\n10/09/23 3:48 PM Beth Cardoza Waiting on drawings to complete the estimate---\n09/26/23 3:09 PM Beth Cardoza Will need to be walked again---\n09/08/23 11:08 AM Beth Cardoza Estimate waiting on walkthrough notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3287 - Brenda - 3311 S Dogwood Ln, Spfd - Parsley, Kurt - Kurt or Tami Parsley - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.508Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m7fyo3onvc97p9a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:48.998Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "804 West Catalpa St, Spfd",
+ "Job_Codes": "3286 - Boys and Girls Club",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/General/Operations [Server]/1 Job Pages/COMMERCIAL/3286 - Boys and Girls Club - Ross",
+ "Job_Full_Name": "Boys and Girls Club - 804 West Catalpa St, Spfd - Ross Construction Group",
+ "Job_Name": "Boys and Girls Club",
+ "Job_Number": "3286",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3286FXEX - Boys and Girls Club",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3286FXEX - Boys and Girls Club - 804 West Catalpa St, Spfd - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.552Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "djz60o1wg29vqyw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:35:27.350Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bryan, Chad",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Bryan (417) 838-6543",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "78 Golden Ponds, Urbana",
+ "Job_Codes": "3285 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 78 Golden Ponds, Urbana - Bryan, Chad",
+ "Job_Name": "N/A",
+ "Job_Number": "3285",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3285 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/22/23 12:22 PM Beth Cardoza Possible CO: Office walls to be smooth (ceiling still texture). forgot to tell us. 520 sqft---\n11/22/23 12:24 PM Beth Cardoza @ .30 = $156 for reference.---\n10/24/23 9:19 AM david cardoza Stock 19,896\nLeftover 160\nHang 19,736---\n09/21/23 2:47 PM Beth Cardoza 1 hr 10 minute drive from office---\n09/21/23 2:47 PM Beth Cardoza Per phone call on 9/6: Orange peel stomp, no window wraps, square corners. Ready maybe middle of October. Spray foam mid Sept. He said we did work for him before about 10 miles away from this place.---\n09/21/23 11:14 AM Beth Cardoza A few notes, and places that don't need to be in the bid\n- The stairwell, doesn't need sheet rocked \n- The 2nd story ceiling in the main room won't be sheet rocked \n- The 2 rooms in the basement labeled as \"Storage\" will nee\n09/07/23 4:18 PM Beth Cardoza He said he would send plans when he got back to his desk last night. Haven't seen them yet. If they don't come in, follow up---\n09/14/23 1:59 PM Beth Cardoza Still nothing... all the way in Urbana though.. so not sure if I should follow up---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3285 - N/A - 78 Golden Ponds, Urbana - Bryan, Chad - Chad Bryan (417) 838-6543 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.596Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "24rrxcsi0stdmix",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.209Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hencey, Robert",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Hencey (417) 869-6190",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2306 N Weller Ave, Spfld",
+ "Job_Codes": "3284 - Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wall - 2306 N Weller Ave, Spfld - Hencey, Robert",
+ "Job_Name": "Wall",
+ "Job_Number": "3284",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3284 - Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3284 - Wall - 2306 N Weller Ave, Spfld - Hencey, Robert - Bob Hencey (417) 869-6190 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.644Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w2i3zn37c5ll470",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.318Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson (417) 414-3232",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3283 - Anderson",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3283%20Anderson%20%28A2D%20Constructors%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Anderson - - A2D Constructors",
+ "Job_Name": "Anderson",
+ "Job_Number": "3283",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3283 - Anderson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 2:46 PM Beth Cardoza Sent email to follow up on status---\n09/07/23 3:54 PM Beth Cardoza Located in Ozark/Christian County\nDrywall Start – Feb/March 2024\nWrap 4 sides of windows\nKnockdown ceiling\nOrange peel walls.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3283 - Anderson - - A2D Constructors - Nathan Henderson (417) 414-3232 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.692Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h2dxlaksnmawccz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Northstar Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Bids@Northstar.build Nelson @ (417)-234-7993",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1705 W Sunshine Street Springfield, MO",
+ "Job_Codes": "3282 - Pizza Hut Springfield",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3282%20Pizza%20Hut%20Spfd&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pizza Hut Springfield - 1705 W Sunshine Street Springfield, MO - Northstar Construction",
+ "Job_Name": "Pizza Hut Springfield",
+ "Job_Number": "3282",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3282 - Pizza Hut Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3282 - Pizza Hut Springfield - 1705 W Sunshine Street Springfield, MO - Northstar Construction - Bids@Northstar.build Nelson @ (417)-234-7993 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.736Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9l8ybbibi9ygn4f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.538Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth 417-860-0995",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 West Bumgarner Boulevard, Strafford, MO 65757",
+ "Job_Codes": "3281 - Strafford Fire Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3281%20RKC%20Strafford%20Fire%20Station&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Strafford Fire Station - 300 West Bumgarner Boulevard, Strafford, MO 65757 - RKC",
+ "Job_Name": "Strafford Fire Station",
+ "Job_Number": "3281",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3281 - Strafford Fire Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3281 - Strafford Fire Station - 300 West Bumgarner Boulevard, Strafford, MO 65757 - RKC - Cheryl Griffeth 417-860-0995 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.780Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c4c85fuhfaasznn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.626Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "West, Carol",
+ "Contact_Notes": "",
+ "Contact_Person": "Carol West (417) 844-4934",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1900 W Alamo, Nixa",
+ "Job_Codes": "3280 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement - 1900 W Alamo, Nixa - West, Carol",
+ "Job_Name": "Basement",
+ "Job_Number": "3280",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3280 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/10/24 2:01 PM Beth Cardoza Eddie walking this Friday morning at 8:30---\n10/06/23 2:40 PM Beth Cardoza Assumed not awarded---\n10/04/23 2:47 PM Beth Cardoza Emailed 9/21 checking on status. No response---\n09/05/23 12:52 PM Beth Cardoza Eddie viewing on Thursday 9/7---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3280 - Basement - 1900 W Alamo, Nixa - West, Carol - Carol West (417) 844-4934 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.829Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x43cjweb6r8ize2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.714Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy (417) 598-0828",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Emory Creek",
+ "Job_Codes": "3279 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Emory Creek - Vision Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "3279",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3279 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/10/24 12:13 PM Beth Cardoza Originally Steven Duesenberry called this job in and we sent him the estimate. But Carol is the homeowner and he was just helping her since she was going out of town. She wanted to wait till she had the money and for warmer \n11/10/23 2:18 PM Beth Cardoza Never heard from him again---\n09/18/23 4:11 PM Beth Cardoza Was supposed to send plans. I emailed like a week ago asking and again today to remind him to send plans.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3279 - N/A - Emory Creek - Vision Construction - Jeremy (417) 598-0828 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.872Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "57lo91m8lpssvr7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.814Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McDonald, Logan",
+ "Contact_Notes": "",
+ "Contact_Person": "Logan (417) 414-9148 or his mom RaeAnn McDonald raeanndana@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2916 E Clovis Circle, Spfd",
+ "Job_Codes": "3278 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3278%20Remodel%20%282916%20E%20Clovis%20Circle%2C%20Spfd%29%20%28McDonald%2C%20Logan%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 2916 E Clovis Circle, Spfd - McDonald, Logan",
+ "Job_Name": "Remodel",
+ "Job_Number": "3278",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3278 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/05/23 11:49 AM Beth Cardoza Sent follow up email to check on schedule---\n10/05/23 12:41 PM Beth Cardoza still working on floor joists. will be in touch when ready---\n09/01/23 12:27 PM Beth Cardoza Friend of Nathan Cardoza---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3278 - Remodel - 2916 E Clovis Circle, Spfd - McDonald, Logan - Logan (417) 414-9148 or his mom RaeAnn McDonald raeanndana@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.920Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ljz0m5v8v7u71c9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:49.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hill, Terry",
+ "Contact_Notes": "",
+ "Contact_Person": "Terry Hill terhilled@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3277 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - - Hill, Terry",
+ "Job_Name": "Remodel",
+ "Job_Number": "3277",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3277 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/25 2:10 PM Beth Cardoza Needed a general contractor. Referred---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3277 - Remodel - - Hill, Terry - Terry Hill terhilled@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:28.964Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vqsylsj116zld52",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.022Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Duffy, Tristen",
+ "Contact_Notes": "",
+ "Contact_Person": "Tristan (417) 319-9004",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1121 E 520th Rd, Morrisville",
+ "Job_Codes": "3276 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 1121 E 520th Rd, Morrisville - Duffy, Tristen",
+ "Job_Name": "Addition",
+ "Job_Number": "3276",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3276 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3276 - Addition - 1121 E 520th Rd, Morrisville - Duffy, Tristen - Tristan (417) 319-9004 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.009Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mu1kz1fnnmrc88p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.130Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1398 E Indian Valley Dr, Ozark",
+ "Job_Codes": "3275 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1398 E Indian Valley Dr, Ozark - Essick, Dusty",
+ "Job_Name": "Remodel",
+ "Job_Number": "3275",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3275 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/11/24 11:26 AM Beth Cardoza Need review before billing---\n01/11/24 7:22 AM david cardoza Stock 3,808\nSecond stock 128\nTotal stock 3,728\nLeftover 200\nHang 3,736---\n01/03/24 10:31 PM Beth Cardoza Kurt & Tami Parsley's house---\n10/05/23 11:54 AM Beth Cardoza re-sent the estimate the other day because Dusty must've forgot we'd sent it like a month ago and was asking about it. Today I followed up asking about schedule.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3275 - Remodel - 1398 E Indian Valley Dr, Ozark - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.057Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xrr8nx8bmardmbh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.230Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen Davis (417) 827-2382",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2218 S Cave Creek, Spfd",
+ "Job_Codes": "3274 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 2218 S Cave Creek, Spfd - Davis, Allen",
+ "Job_Name": "Cracks",
+ "Job_Number": "3274",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3274 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3274 - Cracks - 2218 S Cave Creek, Spfd - Davis, Allen - Allen Davis (417) 827-2382 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.116Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u6s58u9w0lmxdsy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.349Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cotner, Dave",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave Cotner (417) 839-3659",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3273 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3273%20%20%28Ozark%29%20%28Cotner%2C%20Dave%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Ozark - Cotner, Dave",
+ "Job_Name": "N/A",
+ "Job_Number": "3273",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3273 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/08/25 2:59 PM Beth Cardoza Never heard back. Sent a couple of follow up emails in June with no response. Assumed not awarded.---\n03/14/25 12:18 PM Beth Cardoza Just breaking ground now. Needing a rebid. Plans and everything the same.---\n08/25/23 3:27 PM Beth Cardoza Plan to break ground in February. Textures unknown so far. Probably bullnose. emailing plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3273 - N/A - Ozark - Cotner, Dave - Dave Cotner (417) 839-3659 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.164Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o6vbya2vl8ykzt5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.454Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "John Seawright jseawright@construct-com.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "922 S. Eastgate Ave. Spfd",
+ "Job_Codes": "3272 - Courageous Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3272%20Construct%20%28%20Courageous%20Church%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Courageous Church - 922 S. Eastgate Ave. Spfd - Construct",
+ "Job_Name": "Courageous Church",
+ "Job_Number": "3272",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3272 - Courageous Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3272 - Courageous Church - 922 S. Eastgate Ave. Spfd - Construct - John Seawright jseawright@construct-com.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.208Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1ou28crwyo0vfjx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.562Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Williams, Hershel",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 872-5374",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "104 Barnridge Rd, Highlandville",
+ "Job_Codes": "3271 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 104 Barnridge Rd, Highlandville - Williams, Hershel",
+ "Job_Name": "Repairs",
+ "Job_Number": "3271",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3271 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/06/23 1:30 PM Beth Cardoza Neither he, nor his son are being responsive. Assumed not awarded.---\n08/22/23 9:44 AM Beth Cardoza No email address---\n08/22/23 9:44 AM Beth Cardoza In Stoneridge subdivision. Hwy 160 to HH and GPS will get you there from there.---\n08/22/23 9:43 AM Beth Cardoza James River connection. Son, Tim Williams suggested he call us. He's got 3 bedrooms that need drywall repair, 2 of them pretty bad. No hurry at all. I told him someone could look at it next week to get him an estimate. His wi",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3271 - Repairs - 104 Barnridge Rd, Highlandville - Williams, Hershel - (417) 872-5374 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.261Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n5w2jbuwiuwb4u1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.654Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "250 Palomino Dr, Ozark",
+ "Job_Codes": "3270 - Zachman",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Zachman - 250 Palomino Dr, Ozark - Concept2Completion",
+ "Job_Name": "Zachman",
+ "Job_Number": "3270",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3270 - Zachman",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/21/24 7:39 AM david cardoza Stock 11,008\nLeftover 784\nHang 10,224---\n08/21/23 10:31 AM Beth Cardoza Location: Woodsfork in Christain county south of Ozark 8 miles\nWindow wraps\nAll sq bead\norange peel wall\nstomp knock down all ceilings.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3270 - Zachman - 250 Palomino Dr, Ozark - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.313Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dljsowdimmg5l37",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Larsen 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6387 E FR 112, Strafford",
+ "Job_Codes": "3269 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 6387 E FR 112, Strafford - Larsen, Steve",
+ "Job_Name": "Patch",
+ "Job_Number": "3269",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3269 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/21/23 9:48 AM Beth Cardoza GPS Coordinates 37°14'40.2\"N 93°09'24.0\"W---\n08/21/23 9:47 AM Beth Cardoza The guys dropped a board on the ceiling---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3269 - Patch - 6387 E FR 112, Strafford - Larsen, Steve - Steve Larsen 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.360Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1ignopiz7j5zaaa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.863Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Griffin, Charles",
+ "Contact_Notes": "",
+ "Contact_Person": "Charles (417) 882-9658",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3240 W Winchester Rd, Spfd",
+ "Job_Codes": "3268 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 3240 W Winchester Rd, Spfd - Griffin, Charles",
+ "Job_Name": "Repairs",
+ "Job_Number": "3268",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3268 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 3:00 PM Beth Cardoza CO: Replace termite damaged studs---\n08/30/23 3:37 PM Beth Cardoza Jeremy Timm---\n08/24/23 5:37 PM Beth Cardoza Tentatively scheduled to start Wednesday morning between 8:30 and 9am---\n08/24/23 5:36 PM Beth Cardoza He's supposed to figure out about payment with insurance agent tomorrow. Make sure insurance will cover it and how it works.---\n08/18/23 3:55 PM Beth Cardoza Someone to call on Monday or Tuesday to arrange to look at it---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3268 - Repairs - 3240 W Winchester Rd, Spfd - Griffin, Charles - Charles (417) 882-9658 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.408Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5sj5tixh1dyl8pj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:50.978Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sandrik, Amy",
+ "Contact_Notes": "",
+ "Contact_Person": "(906) 281-7700",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2290 Day Rd, Walnut Shade",
+ "Job_Codes": "3267 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2290 Day Rd, Walnut Shade - Sandrik, Amy",
+ "Job_Name": "Repairs",
+ "Job_Number": "3267",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3267 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/18/23 3:56 PM Beth Cardoza Waiting to hear if Eddie was able to look at this today or not.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3267 - Repairs - 2290 Day Rd, Walnut Shade - Sandrik, Amy - (906) 281-7700 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.457Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pd1z1dkyabdob4y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King Built",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad King",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "382 Redbud St. Rogersville MO",
+ "Job_Codes": "3266 - Kelly Tillage Rogersville",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3266%20King%20Built%20%28%20Kelly%20Tillage%20Rogersville%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kelly Tillage Rogersville - 382 Redbud St. Rogersville MO - King Built",
+ "Job_Name": "Kelly Tillage Rogersville",
+ "Job_Number": "3266",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3266 - Kelly Tillage Rogersville",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3266 - Kelly Tillage Rogersville - 382 Redbud St. Rogersville MO - King Built - Brad King - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.500Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "outi2pnzn4z0aji",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.186Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "200 N. Glenstone Ave",
+ "Job_Codes": "3265 - Sturdefant & Jordan Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3265%20A2D%20%2D%20Sturdefant%20%26%20Jordan%20Office%20Remodel&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Sturdefant & Jordan Office - 200 N. Glenstone Ave - A2D Constructors LLC",
+ "Job_Name": "Sturdefant & Jordan Office",
+ "Job_Number": "3265",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3265 - Sturdefant & Jordan Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3265 - Sturdefant & Jordan Office - 200 N. Glenstone Ave - A2D Constructors LLC - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.549Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xj0haqpqtj7zkvn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.301Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Aalpha Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim (417) 337-1505",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10 Hawthorne, Kimberling City",
+ "Job_Codes": "3264 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 10 Hawthorne, Kimberling City - Aalpha Construction",
+ "Job_Name": "Garage",
+ "Job_Number": "3264",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3264 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/25/23 12:31 PM Beth Cardoza Look for down payment---\n08/16/23 4:30 PM Beth Cardoza Tim is Ann Ferguson's contractor on her house. Ready now 2 car garage with overhead doors installed---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3264 - Garage - 10 Hawthorne, Kimberling City - Aalpha Construction - Tim (417) 337-1505 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.608Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "412p62q4ikhzqwc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.410Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "425 Woodland Hills, Branson",
+ "Job_Codes": "3263 - Cossiboom",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3263%20Cossiboom%20%28425%20Woodland%20Hills%2C%20Branson%29%20%28Ozark%20Mountain%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cossiboom - 425 Woodland Hills, Branson - Ozark Mountain Homes",
+ "Job_Name": "Cossiboom",
+ "Job_Number": "3263",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3263 - Cossiboom",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/24 2:08 PM Beth Cardoza CO: Woodland Hills repair \n\nGarage ceilings patch 2 c 2\n\n3 vanity outlets in bathroom \n\nAbove island in kitchen 2/3 can lite patches---\n03/14/24 6:57 AM david cardoza Coldwall stock 576\nLeftover cold wall 144\nCold wall hang 432\nRegular stock after coldwall 19,192\nSecond stock 320\nNo leftover\nHang to Angel 19,336\n---------Pay finisher total stock less utility room wall that he did not fini\n08/16/23 2:08 PM Beth Cardoza (North of Branson off 160). Please figure 6:12 pitch on the vaults and I believe the tray says its 12\". We are probably 1-2 months out. Square corners, standard texture, 3 way window wrap.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3263 - Cossiboom - 425 Woodland Hills, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.656Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d547vbzi9s3q7xk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.506Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BNC Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Cardoza (417) 844-7094",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1010 Summit St, Cabool",
+ "Job_Codes": "3262 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1010 Summit St, Cabool - BNC Builders",
+ "Job_Name": "Patches",
+ "Job_Number": "3262",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3262 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/15/23 4:35 PM Beth Cardoza We aren't able to do this in the time frame Jason needed.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3262 - Patches - 1010 Summit St, Cabool - BNC Builders - Jason Cardoza (417) 844-7094 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.704Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1bufo6a58ln2rdq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.615Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "D6 Automotive",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeffrey Spencer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "413 N Old Wilderness Rd, Nixa, MO 65714",
+ "Job_Codes": "3261 - D6 Automotive",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "D6 Automotive - 413 N Old Wilderness Rd, Nixa, MO 65714 - D6 Automotive",
+ "Job_Name": "D6 Automotive",
+ "Job_Number": "3261",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3261 - D6 Automotive",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3261 - D6 Automotive - 413 N Old Wilderness Rd, Nixa, MO 65714 - D6 Automotive - Jeffrey Spencer - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.752Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xkd7wx1m262jn76",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.722Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1148 Riverdale Rd, Nixa",
+ "Job_Codes": "3260 - Oven hood",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Oven hood - 1148 Riverdale Rd, Nixa - King, Brad",
+ "Job_Name": "Oven hood",
+ "Job_Number": "3260",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3260 - Oven hood",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3260 - Oven hood - 1148 Riverdale Rd, Nixa - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.796Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y3s2sk6pj9ahjea",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.842Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Keeley Construction Company - Saint Louis",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Grzesik | +1 314-379-3291 | jgrzesik@keeleyconstruction.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4415 West Success Place, Springfield, MO",
+ "Job_Codes": "3259 - UPS Springfield MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3259%20UPS&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "UPS Springfield MO - 4415 West Success Place, Springfield, MO - Keeley Construction Company - Saint Louis",
+ "Job_Name": "UPS Springfield MO",
+ "Job_Number": "3259",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3259 - UPS Springfield MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3259 - UPS Springfield MO - 4415 West Success Place, Springfield, MO - Keeley Construction Company - Saint Louis - Jim Grzesik | +1 314-379-3291 | jgrzesik@keeleyconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.844Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v6dnmssadxdi6yn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:51.938Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5937 S Clay St, Spfd",
+ "Job_Codes": "3258 - AP16",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "AP16 - 5937 S Clay St, Spfd - Colton, Jim",
+ "Job_Name": "AP16",
+ "Job_Number": "3258",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3258 - AP16",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/04/23 12:51 PM david cardoza Stock 10,452\nSecond stock 280\nTotal stock 10,732\nNo leftover---\n09/20/23 1:37 PM Beth Cardoza Higher ceilings? may need new estimate---\n09/27/23 3:07 PM Beth Cardoza It was actually 3257 that needed walking. Not sure if this one is any different than plans.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3258 - AP16 - 5937 S Clay St, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.896Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ys6iwju7bmrh4uq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.039Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5969 S Holland St, Spfd",
+ "Job_Codes": "3257 - AP42",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "AP42 - 5969 S Holland St, Spfd - Colton, Jim",
+ "Job_Name": "AP42",
+ "Job_Number": "3257",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3257 - AP42",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/09/23 4:44 PM Beth Cardoza Bonus room delayed for fixing framing. CO?---\n10/03/23 2:48 PM david cardoza Stock 12,830\nLeftover 96 ft\nHang 12,734---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3257 - AP42 - 5969 S Holland St, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.940Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aht24mxn5u0fqiv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.138Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3256 - RS Pool House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "RS Pool House - Rocky Shores - Still, Mark",
+ "Job_Name": "RS Pool House",
+ "Job_Number": "3256",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3256 - RS Pool House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3256 - RS Pool House - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:29.988Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hheuitwjtlvgogj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.234Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "652 Loftis Rd, Ozark",
+ "Job_Codes": "3255 - Seam",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Seam - 652 Loftis Rd, Ozark - Nav Construction",
+ "Job_Name": "Seam",
+ "Job_Number": "3255",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3255 - Seam",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3255 - Seam - 652 Loftis Rd, Ozark - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.040Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4b9yj4si5q5n1i0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.322Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Medley, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Medley 844-0942",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1004 S Carrington Drive, Nixa",
+ "Job_Codes": "3254 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1004 S Carrington Drive, Nixa - Medley, Jim",
+ "Job_Name": "Repairs",
+ "Job_Number": "3254",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3254 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3254 - Repairs - 1004 S Carrington Drive, Nixa - Medley, Jim - Jim Medley 844-0942 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j4puwiryn1g2cwk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.438Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ferguson, Ann",
+ "Contact_Notes": "",
+ "Contact_Person": "Ann Ferguson (417) 830-0175",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "23 Midview Dr, Kimberling City",
+ "Job_Codes": "3253 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 23 Midview Dr, Kimberling City - Ferguson, Ann",
+ "Job_Name": "N/A",
+ "Job_Number": "3253",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3253 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/10/23 6:29 PM david cardoza Stock 13,316\nLeftover 490( 270 in basement)\nTotal hang 12,826---\n08/10/23 10:48 AM Beth Cardoza L5 smooth, square corners, no window wraps. She's sending plans---\n08/10/23 10:47 AM Beth Cardoza Ann is a Branson area real estate agent. It'll probably be ready in a couple of weeks. Roof on Monday, then insulation...---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3253 - N/A - 23 Midview Dr, Kimberling City - Ferguson, Ann - Ann Ferguson (417) 830-0175 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.136Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bijndtpawkuw849",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.542Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "291 Michaels Dr, Hollister",
+ "Job_Codes": "3252 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 291 Michaels Dr, Hollister - Still, Mark",
+ "Job_Name": "Repair",
+ "Job_Number": "3252",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3252 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/09/23 10:34 AM Beth Cardoza No one home. No work done---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3252 - Repair - 291 Michaels Dr, Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.184Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3bl1xfud1ahx4h2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.646Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "314 Pine Hill Ct, Nixa",
+ "Job_Codes": "3251 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 314 Pine Hill Ct, Nixa - Nav Construction",
+ "Job_Name": "Patch",
+ "Job_Number": "3251",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3251 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3251 - Patch - 314 Pine Hill Ct, Nixa - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.235Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q67j7yv2cckax4d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.754Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1301 E McDaniels St, Ozark",
+ "Job_Codes": "3250 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1301 E McDaniels St, Ozark - Nav Construction",
+ "Job_Name": "Patches",
+ "Job_Number": "3250",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3250 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3250 - Patches - 1301 E McDaniels St, Ozark - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.288Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "721b2nzpryz7vud",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.858Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "156 Larose Ln, Rogersville",
+ "Job_Codes": "3249 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 156 Larose Ln, Rogersville - Nav Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "3249",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3249 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3249 - Repairs - 156 Larose Ln, Rogersville - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.337Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "879ou8tp05hyb1w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:52.974Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baker, Tim & Cheryl",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Baker (337) 257-3837",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2053 Quiet Acres Rd, Lampe",
+ "Job_Codes": "3248 - ICF",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3248%20%20%282053%20Quiet%20Acres%20Rd%2C%20Lampe%29%20%28Baker%2C%20Tim%20%26%20Cheryl%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "ICF - 2053 Quiet Acres Rd, Lampe - Baker, Tim & Cheryl",
+ "Job_Name": "ICF",
+ "Job_Number": "3248",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3248 - ICF",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:23 PM Beth Cardoza Assume not awarded---\n08/10/23 3:02 PM Beth Cardoza ICF. David Samples client---\n08/10/23 3:02 PM Beth Cardoza Probably orange peel walls and ceilings.. Square corners, no window wraps. just the one story house, not the garage and living space above that is also on the plans. It's about 6-8 months out probably. They haven't broken gro",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3248 - ICF - 2053 Quiet Acres Rd, Lampe - Baker, Tim & Cheryl - Cheryl Baker (337) 257-3837 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.389Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kjd7h0xhnj39xlb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Panetta, Antonio",
+ "Contact_Notes": "",
+ "Contact_Person": "Antonio (417) 844-7909",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2445 S Ferguson Ave, Spfd",
+ "Job_Codes": "3247 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 2445 S Ferguson Ave, Spfd - Panetta, Antonio",
+ "Job_Name": "Patches",
+ "Job_Number": "3247",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3247 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/09/23 4:09 PM Beth Cardoza Eddie Going to look at this at 9:30 tomorrow morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3247 - Patches - 2445 S Ferguson Ave, Spfd - Panetta, Antonio - Antonio (417) 844-7909 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.437Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lryszbub4ayph6i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.198Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "CC & 65",
+ "Job_Codes": "3246 - Signal Gas Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Signal Gas Station - CC & 65 - A2D Constructors LLC",
+ "Job_Name": "Signal Gas Station",
+ "Job_Number": "3246",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3246 - Signal Gas Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3246 - Signal Gas Station - CC & 65 - A2D Constructors LLC - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.492Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t4nnjdkw0z4zbih",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.302Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "242 Forest Oak Dr, Branson",
+ "Job_Codes": "3245 - Niemiec",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3245%20Niemiec%20%28%29%20%28Ozark%20Mountain%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Niemiec - 242 Forest Oak Dr, Branson - Ozark Mountain Homes",
+ "Job_Name": "Niemiec",
+ "Job_Number": "3245",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3245 - Niemiec",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/07/23 4:29 PM Beth Cardoza The basement will be 9' walls and there is a vault in the main living room and the main floor walls beyond that seem to be 10' tall. Standard textures and square corners with three way window wrap. I am going to guess the in",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3245 - Niemiec - 242 Forest Oak Dr, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.548Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "julp55yt0jd0tnp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.406Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna 417 298-4455",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4175 E Forrest Ridge Ln, Rogersville",
+ "Job_Codes": "3244 - Argueta",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3244%20Argueta%20%284175%20E%20Forrest%20Ridge%20Ln%2C%20Rogersville%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Argueta - 4175 E Forrest Ridge Ln, Rogersville - Construct",
+ "Job_Name": "Argueta",
+ "Job_Number": "3244",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3244 - Argueta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/11/24 3:32 PM Beth Cardoza Unfortunately, I think this one is dead in the water for right now. We never have heard back from the client after submitting our pricing - Johanna---\n10/18/23 12:44 PM Beth Cardoza Hey Beth,\nThis project is a go and we will be getting it going as soon as possible. We have been asked to revise our numbers to include some remodel items in the existing home. The clients want to take the whole number to th\n08/30/23 10:44 AM Beth Cardoza Overbudget but working with client currently. Keep on your list. - Johanna---\n08/04/23 4:42 PM Beth Cardoza Yes, corners are square. I would say ready for drywall a couple months after we start. True start date will be determined by costs and the client saying to go ahead.---\n08/04/23 3:24 PM Beth Cardoza Needing price by the 10th please, only looking for ½” drywall and the finish levels as usual. Windows will not be drywall wrapped.---\n08/04/23 3:25 PM Beth Cardoza I think that means options for L4 and L5---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3244 - Argueta - 4175 E Forrest Ridge Ln, Rogersville - Construct - Johanna 417 298-4455 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.604Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3gv8e25ntwh6dav",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.530Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Morris, Jerry",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Morris (417) 839-6300",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Twin Rivers Loop",
+ "Job_Codes": "3243 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - Twin Rivers Loop - Morris, Jerry",
+ "Job_Name": "Garage",
+ "Job_Number": "3243",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3243 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:21 PM Beth Cardoza Assume not awarded---\n01/02/24 2:28 PM Beth Cardoza He called us last Thursday about it! Ready probably the end of this week---\n10/25/23 10:21 AM Beth Cardoza Nothing ever came of this and we have no contact information.---\n08/30/23 1:04 PM Beth Cardoza No number on the house. Homeowner out of town according to neighbors. Eddie hasn't been able to reach him.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3243 - Garage - Twin Rivers Loop - Morris, Jerry - Jerry Morris (417) 839-6300 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.652Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "52p72969ehah703",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.639Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reynolds, Warren",
+ "Contact_Notes": "",
+ "Contact_Person": "Warren (417) 581-3275",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "415 N Main St, Nixa",
+ "Job_Codes": "3242 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 415 N Main St, Nixa - Reynolds, Warren",
+ "Job_Name": "Rehab",
+ "Job_Number": "3242",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3242 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:20 PM Beth Cardoza Assumed not awarded---\n08/04/23 2:39 PM Beth Cardoza Job walk scheduled for 11 AM on Monday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3242 - Rehab - 415 N Main St, Nixa - Reynolds, Warren - Warren (417) 581-3275 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.696Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "liagesvaovrkun4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.750Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kendrick, Dustin",
+ "Contact_Notes": "",
+ "Contact_Person": "Dustin Kendrick (417) 773-9956",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3241 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - Springfield - Kendrick, Dustin",
+ "Job_Name": "Rehab",
+ "Job_Number": "3241",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3241 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 9:17 AM Beth Cardoza Client was buying a property. Haven’t closed yet and may not. But if not, then plans to buy a different property to rehab and will call us.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3241 - Rehab - Springfield - Kendrick, Dustin - Dustin Kendrick (417) 773-9956 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.756Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "spk6gye9ny4nojm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.862Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cherish Kids",
+ "Contact_Notes": "",
+ "Contact_Person": "Cathi Keene (417)379-7455",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1006 E Highview Dr, Ozark",
+ "Job_Codes": "3240 - Patch & door",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch & door - 1006 E Highview Dr, Ozark - Cherish Kids",
+ "Job_Name": "Patch & door",
+ "Job_Number": "3240",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3240 - Patch & door",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3240 - Patch & door - 1006 E Highview Dr, Ozark - Cherish Kids - Cathi Keene (417)379-7455 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.799Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jkx1dg39o5fwuii",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:53.970Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Saddlebrooke",
+ "Job_Codes": "3239 - Stowe",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3239%20Stowe%20%28Saddlebrooke%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Stowe - Saddlebrooke - Essick, Dusty",
+ "Job_Name": "Stowe",
+ "Job_Number": "3239",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3239 - Stowe",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3239 - Stowe - Saddlebrooke - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.844Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "othqzpuq1ybbl7r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.074Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Koontz, Matthew",
+ "Contact_Notes": "",
+ "Contact_Person": "Matthew (417) 812-9805",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1275 E Sunset Rd, Ozark",
+ "Job_Codes": "3238 - Basement",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement - 1275 E Sunset Rd, Ozark - Koontz, Matthew",
+ "Job_Name": "Basement",
+ "Job_Number": "3238",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3238 - Basement",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:53 AM david cardoza Stock 4,696\nSecond stock 336\nTotal stock 5,032\nassume no leftover\n\n-------\nAgreed to pay Alonso for 4,700 sq ft\n\n2 coats @ .18/ ft.\nSkim coat L4 @.08/ ft.\nSkim over op 480 sq ft = $120.00---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3238 - Basement - 1275 E Sunset Rd, Ozark - Koontz, Matthew - Matthew (417) 812-9805 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.897Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xbpeepem06ywx5w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.174Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5988 S Holland Ave, Spfd",
+ "Job_Codes": "3237 - AP27",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "AP27 - 5988 S Holland Ave, Spfd - HC Rogers",
+ "Job_Name": "AP27",
+ "Job_Number": "3237",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3237 - AP27",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/10/23 9:55 AM Beth Cardoza Three car garage at about 11 foot over gravel\nWalkout basement house.\nMain level all 9 foot flat except for the main living area and entry which is 11 foot flat and goes over the stairway. Probably about 14 foot from the midw\n08/03/23 5:31 PM Beth Cardoza 3 way window wraps except main living area. sq bead. ceilings medium spray knockdown, walls are light orange peel. pretty light, but full coverage.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3237 - AP27 - 5988 S Holland Ave, Spfd - HC Rogers - Jake - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:30.945Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "an6p8x3pqsdyxnr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.294Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5996 S Holland Ave, Spfd",
+ "Job_Codes": "3236 - AP26",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "AP26 - 5996 S Holland Ave, Spfd - HC Rogers",
+ "Job_Name": "AP26",
+ "Job_Number": "3236",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3236 - AP26",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/10/23 9:57 AM Beth Cardoza Dave walk through notes 8/10:\n\n5996 S Holland Dr\nSpringfield \n\nGarage is 10 1/2 feet over gravel. Three car. Walkout basement house. \n\nMost of the main level is 9 foot flat except for the living room and entry is 11 foot fl\n08/03/23 5:31 PM Beth Cardoza 3 way window wraps except main living area. sq bead. ceilings medium spray knockdown, walls are light orange peel. pretty light, but full coverage.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3236 - AP26 - 5996 S Holland Ave, Spfd - HC Rogers - Jake - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.001Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "881zdkvcn0pbzz4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.407Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reeves, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Reeves (417) 830-5588",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "753 Serendipity, Galena",
+ "Job_Codes": "3235 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3235%20%20%28753%20Serendipity%2C%20Galena%29%20%28Reeves%2C%20Jim%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 753 Serendipity, Galena - Reeves, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3235",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3235 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/14/24 9:43 AM Beth Cardoza The last thing was we were not doing the ceilings but we were finishing the walls to L4 smooth. But then they decided to cancel the storm room work altogether. May come back to it in the future (like months down the road), bu\n07/08/24 1:11 PM Beth Cardoza We may go ahead and do the ceilings [in safe rooms]. When time allows, add the ceilings to see where we end up. No rush.\n\nJim and Jennifer Reeves---\n07/02/24 9:02 AM Beth Cardoza Jim Reeves had some moisture issues in the safe room of his basement. The storm room if you will. He wants to know the cost for us to rehang all the drywall on the walls only. No ceilings and finish. \nJob 3235\nI said we proba\n04/25/24 7:16 AM david cardoza Stock 19,388\nLeftover 322\nHang 19,066---\n04/24/24 12:20 PM Beth Cardoza Stock 19,388---\n03/27/24 11:11 AM Beth Cardoza Stock delayed until tentatively April 5---\n01/19/24 12:49 PM Beth Cardoza New email address: reevesfam1@outlook.com---\n01/19/24 12:49 PM Beth Cardoza It will probably be March or April before they are ready for drywall. HVAC etc taking a while---\n01/03/24 10:24 PM Beth Cardoza Called December 21st to let us know it was dried in and ready to get walked through to confirm quote.---\n08/03/23 5:28 PM Beth Cardoza Sent the following with the plans: We are looking for bids with spray texture throughout. This would be similar to what you did for us in 2018. There will 11 ft ceilings in living, dining and kitchen. \n\nSheetrock in the m\n08/03/23 11:09 AM Beth Cardoza 4 way window wraps, square corners. Skip trowel walls?? Need to get photos from him.. He will email plans. We did drywall for Rusty MacLaughlin for his house in Rogersville several years ago in 2018 job 7644---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3235 - N/A - 753 Serendipity, Galena - Reeves, Jim - Jim Reeves (417) 830-5588 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.044Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "po48ecufa9olsz3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.518Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Holtz Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matthew Wilant | Field Superintendent | Holtz Builders Mobile: (262) 365-9590",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson West Missouri",
+ "Job_Codes": "3234 - SDC Tenant Space",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3234%20Holtz%20Builders%20%28SDC%20Tenant%20Infill%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "SDC Tenant Space - Branson West Missouri - Holtz Builders",
+ "Job_Name": "SDC Tenant Space",
+ "Job_Number": "3234",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3234 - SDC Tenant Space",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/29/23 9:24 AM david cardoza Total stock including tile backer per Brian:\n41,868\n(Tile backer portion was 320)\nLeftover 400\nTotal board installed including tile backer 41,468\n\nHANG:\nAngel \nMiguel May\nCristobal\nVincente Cen 3,120\n\nFINISH:\nRuben 16,692\nJo",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3234 - SDC Tenant Space - Branson West Missouri - Holtz Builders - Matthew Wilant | Field Superintendent | Holtz Builders Mobile: (262) 365-9590 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.109Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u6kmiyu7iwrggck",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.626Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Not Known at this time",
+ "Job_Codes": "3233 - Courageous Church",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Courageous Church - Not Known at this time - Ross Construction Group",
+ "Job_Name": "Courageous Church",
+ "Job_Number": "3233",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3233 - Courageous Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3233 - Courageous Church - Not Known at this time - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.152Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yxea3683sfbcyet",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.722Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3232 - Crump Truck Facility",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3232%20Ross%20%28Crump%20Truck%20Facility%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Crump Truck Facility - Springfield - Ross Construction Group",
+ "Job_Name": "Crump Truck Facility",
+ "Job_Number": "3232",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3232 - Crump Truck Facility",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3232 - Crump Truck Facility - Springfield - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.205Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xzcoehrtjuayj0c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.846Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wu, Justin",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Wu (417) 414-8811",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2344 S Thelma, Spfd",
+ "Job_Codes": "3231 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2344 S Thelma, Spfd - Wu, Justin",
+ "Job_Name": "Patch",
+ "Job_Number": "3231",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3231 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/29/23 4:50 PM Beth Cardoza No response to quote nor answering calls to follow up---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3231 - Patch - 2344 S Thelma, Spfd - Wu, Justin - Justin Wu (417) 414-8811 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.248Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1bpwm6rya9lyvg9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:54.994Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie (417) 848-0010",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fremont Hills",
+ "Job_Codes": "3230 - Stacy Hulm",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Stacy Hulm - Fremont Hills - Bateman, Ronnie",
+ "Job_Name": "Stacy Hulm",
+ "Job_Number": "3230",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3230 - Stacy Hulm",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3230 - Stacy Hulm - Fremont Hills - Bateman, Ronnie - Ronnie (417) 848-0010 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2kw7eogvo483db5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.101Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Mitch Eise/Superintendent (417) 771-9663",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "200 Lantern Bay Ln, Branson, MO",
+ "Job_Codes": "3229 - The Cove",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3229%20The%20Cove%20%28200%20Lantern%20Bay%20Ln%2C%20Branson%2C%20MO%29%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Cove - 200 Lantern Bay Ln, Branson, MO - Construct",
+ "Job_Name": "The Cove",
+ "Job_Number": "3229",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3229 - The Cove",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/06/25 12:30 PM Beth Cardoza Possible CO: Making trips to find job not ready. May need to back charge electrician.---\n03/06/25 12:30 PM Beth Cardoza CO: Fix framing 4 hours---\n01/27/25 12:17 PM Beth Cardoza Possible CO: might need a cent for having to cut each sheet because not actually 8'---\n01/06/25 3:59 PM david cardoza The prestock ( for the common wall and attic) was 4,992 sq ft\n\nMain stock for \nthird floor:\n9,650\n(4,825 per side(\nNo leftover\n----------------------\nMain stock second floor:\n7,296\n(3,648 per side)\nLeftover 144\n-------------\n01/06/25 9:48 AM Beth Cardoza Looks like total of 5,568 was stocked---\n08/30/24 3:46 PM Beth Cardoza New details: Keep in mind the party wall in between the two units has double layer of rock on each side of the wall. To obtain the correct fire rating, it must be 5/8” drywall. We will probably install a double layer on each \n08/30/24 1:34 PM Beth Cardoza Regarding new plans: \nI know these are very difficult to read. They are very old plans, and we are not having them redrawn. You are looking at structural plans and not architectural this time. To answer some of your questions\n07/31/23 3:40 PM Beth Cardoza 1.\tSubcontractor shall furnish all labor, material, tools, equipment, insurance, taxes, licenses, permits, submittals, guarantees, supervision, cleaning, incidentals, and all work required under applicable portions of the con",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3229 - The Cove - 200 Lantern Bay Ln, Branson, MO - Construct - Mitch Eise/Superintendent (417) 771-9663 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.349Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vgd3tvue5zcmxtd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.210Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Slack, Kelly",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly Slack (417) 838-0879",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3504 S. State Hwy N Republic",
+ "Job_Codes": "3228 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3504 S. State Hwy N Republic - Slack, Kelly",
+ "Job_Name": "N/A",
+ "Job_Number": "3228",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3228 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/28/23 4:54 PM Beth Cardoza They are 9 foot walls, flat ceilings. \nBuilding site adress is \n3504 S. STATE HWY N Republic MO 65738.---\n07/28/23 2:32 PM Beth Cardoza Treebark ceiling, spray knockdown walls. Figure 4 way window wraps and bullnose for now. Confirm those later. Looking at probably end of September or early October for drywall start---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3228 - N/A - 3504 S. State Hwy N Republic - Slack, Kelly - Kelly Slack (417) 838-0879 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6dvja9tdlfpz652",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.331Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "construct",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "CC&65 Ozark",
+ "Job_Codes": "3227 - Signal Gas Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Signal Gas Station - CC&65 Ozark - Construct",
+ "Job_Name": "Signal Gas Station",
+ "Job_Number": "3227",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3227 - Signal Gas Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3227 - Signal Gas Station - CC&65 Ozark - Construct - construct - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.444Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0zhkjxooef6z8o5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.469Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sikarwar, Ankit",
+ "Contact_Notes": "",
+ "Contact_Person": "Ankit (308)249-4134",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1208 W Denali Dr, Nixa",
+ "Job_Codes": "3226 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 1208 W Denali Dr, Nixa - Sikarwar, Ankit",
+ "Job_Name": "Step thru",
+ "Job_Number": "3226",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3226 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/28/23 3:03 PM Beth Cardoza Wants to include paint---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3226 - Step thru - 1208 W Denali Dr, Nixa - Sikarwar, Ankit - Ankit (308)249-4134 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.488Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gm91jaok25v9mi1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.570Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "3225 - BL #416 BLD 10",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #416 BLD 10 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #416 BLD 10",
+ "Job_Number": "3225",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3225 - BL #416 BLD 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/16/24 1:44 PM Beth Cardoza Paul asked us to do some repairs around a tub by Tuesday. 4th floor BLD 10---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3225 - BL #416 BLD 10 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.532Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6ydumbg47wo1fwf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.683Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "3224 - BL #409 Bld 10",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #409 Bld 10 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #409 Bld 10",
+ "Job_Number": "3224",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3224 - BL #409 Bld 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3224 - BL #409 Bld 10 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.584Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "946jxmeps0deyer",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.803Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle 417-860-3628",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Johnson Rd, Sparta",
+ "Job_Codes": "3223 - Smith",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3223%20Smith%20%28Johnson%20Rd%2C%20Sparta%29%20%28Dowell%2C%20Kyle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Smith - Johnson Rd, Sparta - Dowell, Kyle",
+ "Job_Name": "Smith",
+ "Job_Number": "3223",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3223 - Smith",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/27/23 10:40 AM Beth Cardoza *Drywall- Tree bark textured ceiling, light orange peel on the walls. All windows wrapped on 3 sides\nwith wood sills.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3223 - Smith - Johnson Rd, Sparta - Dowell, Kyle - Kyle 417-860-3628 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.628Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6yze9gkl8d90ad4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:55.918Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hulbert, Kent",
+ "Contact_Notes": "",
+ "Contact_Person": "Kent Hulbert (417) 693-1017",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1410 Stonecreek Dr, Nixa",
+ "Job_Codes": "3222 - Crack",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crack - 1410 Stonecreek Dr, Nixa - Hulbert, Kent",
+ "Job_Name": "Crack",
+ "Job_Number": "3222",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3222 - Crack",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/25/23 11:46 AM Beth Cardoza emailed requesting photos and asking how high it is on the wall. Waiting for response.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3222 - Crack - 1410 Stonecreek Dr, Nixa - Hulbert, Kent - Kent Hulbert (417) 693-1017 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.672Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e9px7qzinib8t5u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.064Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hwy T, Branson",
+ "Job_Codes": "3221 - Toombs Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3221%20Toombs%20remodel%20%28%29%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Toombs Addition - Hwy T, Branson - Peach Tree",
+ "Job_Name": "Toombs Addition",
+ "Job_Number": "3221",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3221 - Toombs Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/25/23 1:23 PM Beth Cardoza New drywall\nLevel 4 finish\nNo wrap on the windows\nSquare corners\nIt's in Branson off of T Highway\n\nThere's nothing to really walk through yet, it's a garage conversion so it's half remodel half new build. Hoping to start end",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3221 - Toombs Addition - Hwy T, Branson - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.716Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fzanzznim3x15c0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.179Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highlandville",
+ "Job_Codes": "3220 - Greenville",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3220%20Greenville%20%28Highlandville%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Greenville - Highlandville - Essick, Dusty",
+ "Job_Name": "Greenville",
+ "Job_Number": "3220",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3220 - Greenville",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/25/23 11:21 AM Beth Cardoza Stomp knockdown, orange peel, bullnose---\n07/25/23 11:20 AM Beth Cardoza Disregard the tall walls, everything is 8' plate with just a cathedral (6/12 pitch) in the living room.\nI need numbers ASAP please. Please figure drywall too---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3220 - Greenville - Highlandville - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.769Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q5y6fgtguskvio1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.294Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schellinger, Melissa",
+ "Contact_Notes": "",
+ "Contact_Person": "Melissa Schellinger (417) 920-0825",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4277 Rome Ave, Ozark",
+ "Job_Codes": "3219 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 4277 Rome Ave, Ozark - Schellinger, Melissa",
+ "Job_Name": "Bath",
+ "Job_Number": "3219",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3219 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3219 - Bath - 4277 Rome Ave, Ozark - Schellinger, Melissa - Melissa Schellinger (417) 920-0825 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.865Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9vrbtmimrhrhjdt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.410Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3218 - BL #512 BLD 9",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #512 BLD 9 - - Krueger, Paul",
+ "Job_Name": "BL #512 BLD 9",
+ "Job_Number": "3218",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3218 - BL #512 BLD 9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 4:17 PM Beth Cardoza I think we did this TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3218 - BL #512 BLD 9 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.909Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c1vi40dfhys67xl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.510Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bales Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Block 417-865-5800",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3217 - Plaster Student Union for Missouri State University",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3217%20Bales%20Const%20%28%20Plaster%20Student%20Union%20for%20Missouri%20State%20University%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Plaster Student Union for Missouri State University - Springfield - Bales Construction",
+ "Job_Name": "Plaster Student Union for Missouri State University",
+ "Job_Number": "3217",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3217 - Plaster Student Union for Missouri State University",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3217 - Plaster Student Union for Missouri State University - Springfield - Bales Construction - Justin Block 417-865-5800 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.949Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5ybk3u7ub5xh6tj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.618Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3216 - #33RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#33RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#33RS",
+ "Job_Number": "3216",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3216 - #33RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3216 - #33RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:31.988Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8li0p7a1p535nic",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.790Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3215 - #32RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#32RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#32RS",
+ "Job_Number": "3215",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3215 - #32RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3215 - #32RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.041Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2385f0fhujsbsz4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:56.898Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3214 - #31RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#31RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#31RS",
+ "Job_Number": "3214",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3214 - #31RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3214 - #31RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.096Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "58brpa7gwagzs63",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.130Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3213 - #28RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#28RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#28RS",
+ "Job_Number": "3213",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3213 - #28RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3213 - #28RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.148Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ylrg66c025oa5gk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.298Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3212 - #12RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#12RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#12RS",
+ "Job_Number": "3212",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3212 - #12RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3212 - #12RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.200Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rha3mocqpdq7zfk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.406Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3211 - #11 RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#11 RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#11 RS",
+ "Job_Number": "3211",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3211 - #11 RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3211 - #11 RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.256Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vfif7ezqvgsa5mm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.519Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Faulkner, Molly",
+ "Contact_Notes": "",
+ "Contact_Person": "Molly Faulkner (417) 224-1344 (temporary?)",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4663 E FR 74, Spfd",
+ "Job_Codes": "3210 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4663 E FR 74, Spfd - Faulkner, Molly",
+ "Job_Name": "N/A",
+ "Job_Number": "3210",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3210 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/15/23 1:59 PM Beth Cardoza CO: insulation. T&M---\n07/24/23 11:54 AM Beth Cardoza Angie Lead:\n\nMolly Faulkner\n4663 E farm rd 74 \nSpringfield Mo 65803\n\nMfaulkner2001@yahoo.com\nLead fee $46.96\n417-224-1344\n\nEddie has an appt to look at it Tuesday morning at 10:30.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3210 - N/A - 4663 E FR 74, Spfd - Faulkner, Molly - Molly Faulkner (417) 224-1344 (temporary?) - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.300Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rp21crsti6tyurr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.642Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Tom",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Davis (417) 827-6851 (temporary?)",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5502 S FR 205, Rogersville",
+ "Job_Codes": "3209 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5502 S FR 205, Rogersville - Davis, Tom",
+ "Job_Name": "N/A",
+ "Job_Number": "3209",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3209 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/24/23 11:54 AM Beth Cardoza Angie Lead:\nTom Davis\n5502 South farm rd 205\nRogersville, Mo 65742\n\n417-827-6851\ntomdavisphotography@gmail.com\nLead fee $46.96\nAcoustic scrape in a large room with 12’ vault. \n\nEddie has an appt to look at it Monday morning.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3209 - N/A - 5502 S FR 205, Rogersville - Davis, Tom - Tom Davis (417) 827-6851 (temporary?) - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.344Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p4371kv9ycnje2u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.746Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3208 - #29RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#29RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#29RS",
+ "Job_Number": "3208",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3208 - #29RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3208 - #29RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qwuf7ma58ga1b90",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.857Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baldridge, Leisha",
+ "Contact_Notes": "",
+ "Contact_Person": "Leisha (417) 231-7707",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Hills",
+ "Job_Codes": "3207 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3207%20%20%28Branson%20Hills%29%20%28Baldridge%2C%20Leisha%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Branson Hills - Baldridge, Leisha",
+ "Job_Name": "N/A",
+ "Job_Number": "3207",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3207 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/08/24 7:42 AM david cardoza Stock 20,504\nSecond stock 160\nTotal stock 20,664\n\nleftovers \n3-54\n5-8\"\n3-14\"\n598 sqft---\n08/14/24 10:53 AM Beth Cardoza When I add up your leftovers, I come to 490. Don't know if there is a math error or if you missed recording some leftover.---\n06/04/24 4:24 PM Beth Cardoza Old estimate needs review---\n03/26/24 4:42 PM Beth Cardoza They are about 10-12 weeks out, which means beginning to mid June.---\n09/18/23 11:44 AM Beth Cardoza She wants to add the upstairs now---\n08/07/23 12:35 PM Beth Cardoza they are supplying their own board---\n07/21/23 4:48 PM Beth Cardoza Pouring foundation in the next two or three weeks so still several weeks out. Haven't thought about textures. Figure basic but they might want to look at texture samples at some point. No windows wraps, Bullnose. Plans show a",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3207 - N/A - Branson Hills - Baldridge, Leisha - Leisha (417) 231-7707 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.440Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wod08i1rlaymirf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:57.971Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McBride, Wade & Angela",
+ "Contact_Notes": "",
+ "Contact_Person": "Wade 417-205-9711 mrandmrsmcbride29@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1125 Vermule Rd, Billings",
+ "Job_Codes": "3206 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1125 Vermule Rd, Billings - McBride, Wade & Angela",
+ "Job_Name": "N/A",
+ "Job_Number": "3206",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3206 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/29/23 6:13 PM Beth Cardoza Assuming not awarded. they never responded to the estimate nor my follow up email---\n07/21/23 12:42 PM Beth Cardoza New house 1347 sq. feet - living room tall vaulted ceiling. I will email the prints. We should be ready for drywall in 2-3 weeks. Orange peel texture.---\n07/21/23 12:41 PM Beth Cardoza Lead through BBB---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3206 - N/A - 1125 Vermule Rd, Billings - McBride, Wade & Angela - Wade 417-205-9711 mrandmrsmcbride29@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.488Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3klamozdyhgln4u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.066Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Keene, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "Don Keene (417) 379-7454",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2610 E Belmont St, Spfd",
+ "Job_Codes": "3205 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2610 E Belmont St, Spfd - Keene, Don",
+ "Job_Name": "Remodel",
+ "Job_Number": "3205",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3205 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/05/23 9:24 AM Beth Cardoza CO: Yes we’re going back to wrap a doorway in utility room---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3205 - Remodel - 2610 E Belmont St, Spfd - Keene, Don - Don Keene (417) 379-7454 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.544Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "opg7wy768vrqhn7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.178Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso 417-336-3895",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "106 Carnoustie Ct, Branson",
+ "Job_Codes": "3204 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 106 Carnoustie Ct, Branson - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "3204",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3204 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/22/23 2:00 PM Beth Cardoza Gate codes: #2222\nOr #1982---\n08/14/23 7:57 AM david cardoza Stock 21,168\nLeftover 540\nHang 20,628---\n08/10/23 11:46 AM Beth Cardoza Dave walkthrough notes:\n\n106 Carnoustie Ct\nBranson Mo\n\nThree car garage. 9.5’ over concrete. \n\nWalkout basement house. Most of the main level is 9 foot flat. All trusses 2 foot on center. The main room is double vaulted at 1\n07/26/23 12:06 PM Beth Cardoza Please figure supplying all the material also. It's the same house we built last year at 103 Beth page Ct. Use 5/8 inch board on the upstairs ceiling but you can do 1/2 inch in the basement because it's floor trusses on a cl",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3204 - N/A - 106 Carnoustie Ct, Branson - Masterpiece - Tom Caruso 417-336-3895 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.601Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lh6ihzdls2xjttg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.319Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Strong, Logan",
+ "Contact_Notes": "",
+ "Contact_Person": "Logan (417) 989-9853",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1080 W Lakota St",
+ "Job_Codes": "3203 - Shed",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shed - 1080 W Lakota St - Strong, Logan",
+ "Job_Name": "Shed",
+ "Job_Number": "3203",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3203 - Shed",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/01/23 5:43 PM Beth Cardoza My verbal range was too high. He was supposed to send me photos and get an estimate anyway and I told him the estimate looked like it would be lower than what I said originally but he never sent photos. I think he is doing i",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3203 - Shed - 1080 W Lakota St - Strong, Logan - Logan (417) 989-9853 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.652Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z35jw2trwm17eff",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.430Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3202 - BL #? (door) BLD 10",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #? (door) BLD 10 - - Krueger, Paul",
+ "Job_Name": "BL #? (door) BLD 10",
+ "Job_Number": "3202",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3202 - BL #? (door) BLD 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3202 - BL #? (door) BLD 10 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.704Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mvwkvfreslcn0l5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.543Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3201 - BL #510 BLD 9",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #510 BLD 9 - - Krueger, Paul",
+ "Job_Name": "BL #510 BLD 9",
+ "Job_Number": "3201",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3201 - BL #510 BLD 9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 3:25 PM Beth Cardoza I think we did it TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3201 - BL #510 BLD 9 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.756Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6jp7uu34rl7a43y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.650Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3200 - BL Hall 5 BLD 9",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL Hall 5 BLD 9 - - Krueger, Paul",
+ "Job_Name": "BL Hall 5 BLD 9",
+ "Job_Number": "3200",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3200 - BL Hall 5 BLD 9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 3:25 PM Beth Cardoza I think we did it TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3200 - BL Hall 5 BLD 9 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.804Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jggp256u6f2hvzq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3199 - BL #216 BLD 9",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #216 BLD 9 - - Krueger, Paul",
+ "Job_Name": "BL #216 BLD 9",
+ "Job_Number": "3199",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3199 - BL #216 BLD 9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 3:25 PM Beth Cardoza I think we did it TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3199 - BL #216 BLD 9 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.857Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "okkufuqz7pp9y2j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.871Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Forsyth",
+ "Job_Codes": "3198 - Sears",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Sears - Forsyth - Krueger, Paul",
+ "Job_Name": "Sears",
+ "Job_Number": "3198",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3198 - Sears",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/23 10:14 AM Beth Cardoza Location: Fosyth. Ready for drywall: Jan/Feb 24. Estimate due: Tomorrow (7/20). Finish: Stomp KD ceiling/ OP walls. No wraps. Square corner. Yes cold wall.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3198 - Sears - Forsyth - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.908Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kk6xmohzymz9gvh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:58.981Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A2D Constructors",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson (414) 414-3232",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "211 E Commercial St, Spfd",
+ "Job_Codes": "3197 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3197%20Prosperiti%20Partners%20%28211%20E%2E%20Commercial%20St%2E%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 211 E Commercial St, Spfd - A2D Constructors",
+ "Job_Name": "Remodel",
+ "Job_Number": "3197",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3197 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:17 PM Beth Cardoza Assume not awarded---\n08/16/23 2:00 PM Beth Cardoza A2D quote deadline August 21st 10:00 AM---\n08/04/23 5:29 PM Beth Cardoza What they really needed was a general contractor.---\n08/04/23 5:30 PM Beth Cardoza We might end up doing it for a contractor still. We'll see---\n07/25/23 4:16 PM Beth Cardoza Job Type\tRemodel/infill\nRepair\nGeneral Description\tThe job is a remodel of an old building. The top two levels will be turned into 14 residential lofts. The first floor will have a few updates in the bathrooms and kitchen of \n07/19/23 5:18 PM Beth Cardoza Billing address: 1660 N Campbell Ave---\n07/19/23 5:17 PM Beth Cardoza The job is a remodel of an old building. The top two levels will be turned into 14 residential lofts. The first floor will have a few updates in the bathrooms and kitchen of the current tea room & bakery. The exterior of the",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3197 - Remodel - 211 E Commercial St, Spfd - A2D Constructors - Nathan Henderson (414) 414-3232 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:32.960Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3o90fxmvcg7j5rf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.083Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "David Trousdale",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "614 S. State Hwy 125 Strafford",
+ "Job_Codes": "3196 - Warson Addition",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3196%20RKC%20Warson%20Brands&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Warson Addition - 614 S. State Hwy 125 Strafford - RKC",
+ "Job_Name": "Warson Addition",
+ "Job_Number": "3196",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3196 - Warson Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3196 - Warson Addition - 614 S. State Hwy 125 Strafford - RKC - David Trousdale - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.012Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "529we8kj8t7t60j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.250Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Roberts, Marsha",
+ "Contact_Notes": "",
+ "Contact_Person": "Marsha (417) 224-7272",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2113 S Pin Oak Dr, Spfd",
+ "Job_Codes": "3195 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 2113 S Pin Oak Dr, Spfd - Roberts, Marsha",
+ "Job_Name": "Bath",
+ "Job_Number": "3195",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3195 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/26/23 5:47 PM Beth Cardoza We have an appt Friday morning at 9:30 to look at this one---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3195 - Bath - 2113 S Pin Oak Dr, Spfd - Roberts, Marsha - Marsha (417) 224-7272 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.056Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m3rvu1egk5hnjku",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3194 - BL #301-#302 BLD 10",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #301-#302 BLD 10 - - Krueger, Paul",
+ "Job_Name": "BL #301-#302 BLD 10",
+ "Job_Number": "3194",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3194 - BL #301-#302 BLD 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3194 - BL #301-#302 BLD 10 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.113Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x4qvzyjl4jsogki",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.466Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3193 - BL #401-#402 BLD 10",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #401-#402 BLD 10 - - Krueger, Paul",
+ "Job_Name": "BL #401-#402 BLD 10",
+ "Job_Number": "3193",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3193 - BL #401-#402 BLD 10",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3193 - BL #401-#402 BLD 10 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.165Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l36ase216libtej",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.574Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1799 N Waterstone",
+ "Job_Codes": "3192 - LWH",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH - 1799 N Waterstone - Everlasting Homes",
+ "Job_Name": "LWH",
+ "Job_Number": "3192",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3192 - LWH",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/19/23 12:16 PM Beth Cardoza Duplicate job---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3192 - LWH - 1799 N Waterstone - Everlasting Homes - Jerry 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.208Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "unb1ue5srg6d76a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.674Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1752 Deffer Drive",
+ "Job_Codes": "3191 - 1752 Deffer Drive",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "1752 Deffer Drive - 1752 Deffer Drive - Construct",
+ "Job_Name": "1752 Deffer Drive",
+ "Job_Number": "3191",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3191 - 1752 Deffer Drive",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3191 - 1752 Deffer Drive - 1752 Deffer Drive - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.256Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "353rl2muyri8w47",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.790Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Heritage/Stancer",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob 417-300-4890",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "W Camino St, Spfd",
+ "Job_Codes": "3190 - Car damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Car damage - W Camino St, Spfd - Heritage/Stancer",
+ "Job_Name": "Car damage",
+ "Job_Number": "3190",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3190 - Car damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3190 - Car damage - W Camino St, Spfd - Heritage/Stancer - Bob 417-300-4890 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.304Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qn4d97brg8x4ufp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:11:59.897Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hayes, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Hayes (417) 844-9477",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1437 E Primrose, Spfld",
+ "Job_Codes": "3189 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 1437 E Primrose, Spfld - Hayes, Tim",
+ "Job_Name": "Water damage",
+ "Job_Number": "3189",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3189 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/24/23 12:27 PM Beth Cardoza They went with someone else---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3189 - Water damage - 1437 E Primrose, Spfld - Hayes, Tim - Tim Hayes (417) 844-9477 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.344Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b64h4s2jae1pqzk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.006Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Indian Point, MO",
+ "Job_Codes": "3188 - River Lake",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "River Lake - Indian Point, MO - Construct",
+ "Job_Name": "River Lake",
+ "Job_Number": "3188",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3188 - River Lake",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/01/23 4:35 PM Beth Cardoza It was awarded to J Sowder. who's bid was like 15-17% lower than our bid.---\n07/24/23 5:53 PM Beth Cardoza Knockdown walls and ceilings.\n\n \n\nThe walls indicating car siding, I'm assuming we should not figure any drywall on those, right?\n\n \n\nWe are eliminating the carsiding on these. So go ahead and figures those as drywall as well\n07/17/23 10:08 AM Beth Cardoza 29 units. multi year project---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3188 - River Lake - Indian Point, MO - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1nn37lb9qghgudb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.122Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Omni Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh M Reich M: 417.655.2693 E: josh@buildwithomni.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "3187 - Vermillion Republic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3187%20Omni%20Builders%20%28Vermillion%20Republic%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Vermillion Republic - Republic - Omni Builders",
+ "Job_Name": "Vermillion Republic",
+ "Job_Number": "3187",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3187 - Vermillion Republic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3187 - Vermillion Republic - Republic - Omni Builders - Josh M Reich M: 417.655.2693 E: josh@buildwithomni.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.444Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6271p0ugumn17ye",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.230Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Lead: Cheryl Griffeth Estimator • +1 417-865-5959 • bids@richkramer.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield Branson National Airport, Springfield, MO,",
+ "Job_Codes": "3186 - OTC Airframe & Powerplant Training Center:",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3186%20RKC%20%28OTC%20Airframe%20%26%20Powerplant%20Training%20Center%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "OTC Airframe & Powerplant Training Center: - Springfield Branson National Airport, Springfield, MO, - RKC",
+ "Job_Name": "OTC Airframe & Powerplant Training Center:",
+ "Job_Number": "3186",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3186 - OTC Airframe & Powerplant Training Center:",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3186 - OTC Airframe & Powerplant Training Center: - Springfield Branson National Airport, Springfield, MO, - RKC - Lead: Cheryl Griffeth Estimator • +1 417-865-5959 • bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.496Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5o2852sh0lf7euh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.350Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McGinnis, Kelly",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly McGinnis (417) 616-1960",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4948 Hwy M, Clever",
+ "Job_Codes": "3185 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 4948 Hwy M, Clever - McGinnis, Kelly",
+ "Job_Name": "Patch",
+ "Job_Number": "3185",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3185 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/21/23 1:13 PM Beth Cardoza WE are doing this job at cost---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3185 - Patch - 4948 Hwy M, Clever - McGinnis, Kelly - Kelly McGinnis (417) 616-1960 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.548Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ssribctdijggd5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.466Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Boever, Pete",
+ "Contact_Notes": "",
+ "Contact_Person": "Pete (512) 970-9491",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "705 N 6th Ave, Ozark",
+ "Job_Codes": "3184 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 705 N 6th Ave, Ozark - Boever, Pete",
+ "Job_Name": "Repairs",
+ "Job_Number": "3184",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3184 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3184 - Repairs - 705 N 6th Ave, Ozark - Boever, Pete - Pete (512) 970-9491 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.596Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jnp2qpx1bgzdyxj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.566Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3183 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3183",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3183 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3183 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.640Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2g0h1rpvmeqb1st",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.678Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1255 Crabapple Rd, Ozark",
+ "Job_Codes": "3182 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 1255 Crabapple Rd, Ozark - Concept2Completion",
+ "Job_Name": "Addition",
+ "Job_Number": "3182",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3182 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/12/23 7:02 AM david cardoza Leftover 128---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3182 - Addition - 1255 Crabapple Rd, Ozark - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.692Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jjuz3kvyjre75cc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.786Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3444 S Kings Ave, Spfd",
+ "Job_Codes": "3181 - Personal Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Personal Addition - 3444 S Kings Ave, Spfd - Concept2Completion",
+ "Job_Name": "Personal Addition",
+ "Job_Number": "3181",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3181 - Personal Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/07/23 12:44 PM Beth Cardoza Slope ceiling get hung and tape only, he’s putting wood on those, flat ceiling are getting random roll and light orange peel on walls, he said he thinks it’s random roll on the existing part of the house , just match existin",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3181 - Personal Addition - 3444 S Kings Ave, Spfd - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.740Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9887z5oh7k4hhfh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:00.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mahnkin, Brian",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian (417) 353-0360",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3415 N. 10th St, Ozark",
+ "Job_Codes": "3180 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3415 N. 10th St, Ozark - Mahnkin, Brian",
+ "Job_Name": "Patches",
+ "Job_Number": "3180",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3180 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/26/23 10:04 AM Beth Cardoza CO: Add a wall 2’ wide by 9’ tall, reframe wall in utility room 8’ long by 9’ tall. This is a change order.---\n07/25/23 3:13 PM Beth Cardoza Wants price for extending studs in damaged areas---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3180 - Patches - 3415 N. 10th St, Ozark - Mahnkin, Brian - Brian (417) 353-0360 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.788Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qmku1zzuay9qli6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.006Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1717 Woolley Creek Rd, Cape Fair",
+ "Job_Codes": "3179 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1717 Woolley Creek Rd, Cape Fair - Peach Tree",
+ "Job_Name": "Patches",
+ "Job_Number": "3179",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3179 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/23 4:12 PM Beth Cardoza TM Job. Eddie started it himself. Needs texture still---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3179 - Patches - 1717 Woolley Creek Rd, Cape Fair - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.840Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2a9c0ncpf2f8mi3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.126Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "LCG Legacy Contracting Group - Fenton",
+ "Contact_Notes": "",
+ "Contact_Person": "Grant Wehmeyer | +1 314-677-0525 | grantw@buildlcg.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "308 Park Central East, Springfield,",
+ "Job_Codes": "3178 - Healthy Blue",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3178%20LCG%20Legacy%20Contracting%20%28Healthy%20Blue%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Healthy Blue - 308 Park Central East, Springfield, - LCG Legacy Contracting Group - Fenton",
+ "Job_Name": "Healthy Blue",
+ "Job_Number": "3178",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3178 - Healthy Blue",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3178 - Healthy Blue - 308 Park Central East, Springfield, - LCG Legacy Contracting Group - Fenton - Grant Wehmeyer | +1 314-677-0525 | grantw@buildlcg.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.892Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r5ilefy69ivdij0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.243Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "540 E. Commercial",
+ "Job_Codes": "3177 - 540 E. Commercial",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3177%20Construct%20%28540%20E%2E%20Commercial%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "540 E. Commercial - 540 E. Commercial - Construct",
+ "Job_Name": "540 E. Commercial",
+ "Job_Number": "3177",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3177 - 540 E. Commercial",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3177 - 540 E. Commercial - 540 E. Commercial - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.940Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "53sdcnlkmx3ius5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Duenich, Jake",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake 509-951-4171 jkduenich@gmail.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3176 - commercial",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3176%20commercial%20%28Branson%29%20%28Duenich%2C%20Jake%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "commercial - Branson - Duenich, Jake",
+ "Job_Name": "commercial",
+ "Job_Number": "3176",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3176 - commercial",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3176 - commercial - Branson - Duenich, Jake - Jake 509-951-4171 jkduenich@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:33.984Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lc9wgj6qj304fjz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.492Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whitmer, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "(816) 716-6747",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8304 Interlochen Dr, Nixa",
+ "Job_Codes": "3175 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 8304 Interlochen Dr, Nixa - Whitmer, Allen",
+ "Job_Name": "Patch",
+ "Job_Number": "3175",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3175 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:45 AM Beth Cardoza That work has been completed by other---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3175 - Patch - 8304 Interlochen Dr, Nixa - Whitmer, Allen - (816) 716-6747 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.036Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5s8sp9rhxsvyk4o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.622Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Adams Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark House, (417) 844-7240, markhouse20@outlook.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3174 - BLAK INVESTMENTS, LLC",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3174%20Blak%20Investments%20%2820th%20St%2E%20Ozark%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "BLAK INVESTMENTS, LLC - Ozark - Adams Construction",
+ "Job_Name": "BLAK INVESTMENTS, LLC",
+ "Job_Number": "3174",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3174 - BLAK INVESTMENTS, LLC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3174 - BLAK INVESTMENTS, LLC - Ozark - Adams Construction - Mark House, (417) 844-7240, markhouse20@outlook.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.088Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "527boef025vbwiq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.738Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hutchings, Rex",
+ "Contact_Notes": "",
+ "Contact_Person": "Rex Hutchings (417) 839-2257",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1065 Zoller Rd, Clever",
+ "Job_Codes": "3173 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1065 Zoller Rd, Clever - Hutchings, Rex",
+ "Job_Name": "N/A",
+ "Job_Number": "3173",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3173 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/23/23 9:22 AM david cardoza Stock 10,780\nLeftover 860\nAdditional stock 416\nFinal, final leftover...366\nPay finisher 10,830---\n06/23/23 3:52 PM Beth Cardoza Tree bark ceilings, light orangepeel walls, square corners, 4 way window wraps, no tearaway. Mostly 8' with vaults to 12'---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3173 - N/A - 1065 Zoller Rd, Clever - Hutchings, Rex - Rex Hutchings (417) 839-2257 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.136Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s4xgt5k54xpip5y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.858Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lott, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle Lott (417) 849-8755",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "910 S Pickwick Ave, Spfd",
+ "Job_Codes": "3172 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 910 S Pickwick Ave, Spfd - Lott, Kyle",
+ "Job_Name": "Addition",
+ "Job_Number": "3172",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3172 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/22/23 5:05 PM Beth Cardoza Eddie viewing tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3172 - Addition - 910 S Pickwick Ave, Spfd - Lott, Kyle - Kyle Lott (417) 849-8755 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.188Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yskwagsomz6h1o8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:01.970Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lewis, Amanda",
+ "Contact_Notes": "",
+ "Contact_Person": "Amanda Lewis 417-827-8884",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3171 - New house",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3171%20New%20house%20%28Lewis%2C%20Amanda%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "New house - - Lewis, Amanda",
+ "Job_Name": "New house",
+ "Job_Number": "3171",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3171 - New house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/10/23 1:14 PM Beth Cardoza Thank you for the quote. When we start the build I will let you know.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3171 - New house - - Lewis, Amanda - Amanda Lewis 417-827-8884 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.236Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "he2h74u9lsp2iuf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.086Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lewis, Amanda",
+ "Contact_Notes": "",
+ "Contact_Person": "Amanda Lewis 417-827-8884",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "831 Wilson Creek Rd, Galena",
+ "Job_Codes": "3170 - Basement repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basement repairs - 831 Wilson Creek Rd, Galena - Lewis, Amanda",
+ "Job_Name": "Basement repairs",
+ "Job_Number": "3170",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3170 - Basement repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3170 - Basement repairs - 831 Wilson Creek Rd, Galena - Lewis, Amanda - Amanda Lewis 417-827-8884 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.288Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1s2orcm59vskgjv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.174Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3169 - Added kids bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Added kids bath - - JRC",
+ "Job_Name": "Added kids bath",
+ "Job_Number": "3169",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3169 - Added kids bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3169 - Added kids bath - - JRC - Keith? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.332Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vyx9d29us3mlm3u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.291Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3168 - 2nd Grade paint",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "2nd Grade paint - - JRC",
+ "Job_Name": "2nd Grade paint",
+ "Job_Number": "3168",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3168 - 2nd Grade paint",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3168 - 2nd Grade paint - - JRC - Keith? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.380Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "47pofvvgfwhzf9r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.394Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Westhaven Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew Himebaugh",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1048 N. Republic Commons",
+ "Job_Codes": "3167 - Hampton Manor",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3167%20Westhaven%20Builders%20%28Hampton%20Manor%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hampton Manor - 1048 N. Republic Commons - Westhaven Builders",
+ "Job_Name": "Hampton Manor",
+ "Job_Number": "3167",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3167 - Hampton Manor",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3167 - Hampton Manor - 1048 N. Republic Commons - Westhaven Builders - Andrew Himebaugh - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.424Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x2nch9f92y6pazn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.511Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Thrive Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Kirby",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "3166 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Nixa - Thrive Church",
+ "Job_Name": "Remodel",
+ "Job_Number": "3166",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3166 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 3:16 PM Beth Cardoza Just as a note. If they come back at some point and want to do it, Rick confused the chat for this with the Cabbage Patch job chat and took Eddie and Stephanie off the chat and added Anita and asked for updates on the lien an\n08/30/23 3:39 PM Beth Cardoza Probably should check back with them like end of September if we haven't heard anything.---\n06/21/23 9:39 AM Beth Cardoza Eddie looked at it 6/21 and they are moving the back wall of the sanctuary in to make the reception area in the front larger. Eddie wants to look at it again with Rick to figure out some details about what to do with the ceil",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3166 - Remodel - Nixa - Thrive Church - Scott Kirby - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.484Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x086j2h0hsrkixe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.630Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt & Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke: cburke@dewitt-associates.com .",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2934 E Bennett Street",
+ "Job_Codes": "3165 - Pittman Elementary New Gym/Safe Room",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3165%20DeWitt%20%28Pittman%20Elementary%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Pittman Elementary New Gym/Safe Room - 2934 E Bennett Street - Dewitt & Associates",
+ "Job_Name": "Pittman Elementary New Gym/Safe Room",
+ "Job_Number": "3165",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3165 - Pittman Elementary New Gym/Safe Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3165 - Pittman Elementary New Gym/Safe Room - 2934 E Bennett Street - Dewitt & Associates - Chris Burke: cburke@dewitt-associates.com . - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.528Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yjq28kw8og21wfk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.761Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "1 417-862-0622 | estimating@federalconstruction.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Marionville, MO 65705,",
+ "Job_Codes": "3164 - Bank of Billings",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3164%20Federal%20Const%2E%20%28Bank%20of%20Billings%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bank of Billings - Marionville, MO 65705, - Federal Construction",
+ "Job_Name": "Bank of Billings",
+ "Job_Number": "3164",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3164 - Bank of Billings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3164 - Bank of Billings - Marionville, MO 65705, - Federal Construction - 1 417-862-0622 | estimating@federalconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.576Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ubi7ogadjcyvb5q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.866Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Brady Bowen | brady.bowen@nabholz.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3581 South Kansas Avenue, Springfield,",
+ "Job_Codes": "3163 - New Covenant Academy Liberty Improvements",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3163%20Nabholz%20%28%20New%20Covenant%20Academy%20Liberty%20Improvements%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "New Covenant Academy Liberty Improvements - 3581 South Kansas Avenue, Springfield, - Nabholtz",
+ "Job_Name": "New Covenant Academy Liberty Improvements",
+ "Job_Number": "3163",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3163 - New Covenant Academy Liberty Improvements",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3163 - New Covenant Academy Liberty Improvements - 3581 South Kansas Avenue, Springfield, - Nabholtz - Brady Bowen | brady.bowen@nabholz.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.620Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bxh2c8qbaod87jn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:02.974Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Parkway Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Katy Shepherd",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2410 W Chesterfield Street Springfield, MO 65807",
+ "Job_Codes": "3162 - The Bungalows at Chesterfield Village",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3162%20The%20Bungalows%20at%20Chesterfield%20Village&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Bungalows at Chesterfield Village - 2410 W Chesterfield Street Springfield, MO 65807 - Parkway Construction",
+ "Job_Name": "The Bungalows at Chesterfield Village",
+ "Job_Number": "3162",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3162 - The Bungalows at Chesterfield Village",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3162 - The Bungalows at Chesterfield Village - 2410 W Chesterfield Street Springfield, MO 65807 - Parkway Construction - Katy Shepherd - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.668Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vdmdur0g61g4evr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.083Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga 417-887-7134 Phone",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "330 W Scott St. Springfield, MO 65802",
+ "Job_Codes": "3161 - Greene County PSC IS Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3161%20Friga%20%28Greene%20County%20PSC%20IS%20Infill%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Greene County PSC IS Infill - 330 W Scott St. Springfield, MO 65802 - Friga Construction",
+ "Job_Name": "Greene County PSC IS Infill",
+ "Job_Number": "3161",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3161 - Greene County PSC IS Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3161 - Greene County PSC IS Infill - 330 W Scott St. Springfield, MO 65802 - Friga Construction - Eric Friga 417-887-7134 Phone - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.716Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7z7kncy0u9xyq9w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.226Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga 417-887-7134 Phone",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3160 - National Guard",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3160%20Friga%20%28national%20Guard%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "National Guard - - Friga Construction",
+ "Job_Name": "National Guard",
+ "Job_Number": "3160",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3160 - National Guard",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3160 - National Guard - - Friga Construction - Eric Friga 417-887-7134 Phone - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.764Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l5dwmaf25h96kuu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.358Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ota, Otto & Robin",
+ "Contact_Notes": "",
+ "Contact_Person": "(720) 822-3242 (home?) (303) 520-5538 Cell",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5050 Bear Creek Rd, Reeds Spring",
+ "Job_Codes": "3159 - Barndominium",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Barndominium - 5050 Bear Creek Rd, Reeds Spring - Ota, Otto & Robin",
+ "Job_Name": "Barndominium",
+ "Job_Number": "3159",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3159 - Barndominium",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/23/23 4:02 PM Beth Cardoza CO: Pocket door: opening & door wrong size. Needed another 2x4 and and another sheet of drywall. Approx an extra 4 hours, and some finish nails. May need to increase the price for that extra work.---\n07/19/23 3:48 PM Beth Cardoza I updated the board types and the footages. BUT need to confirm if texture is hand texture or stomp on the walls. If stomp, may adjust price still.---\n07/19/23 4:26 PM Beth Cardoza It is hand texture. But there is a little that needs to be measured for orange peel to deduct.---\n07/18/23 1:37 PM Beth Cardoza REW delivered concrete board but we did not use it. It needs to be returned. They also decided not to have us do the tile backer board for the record---\n07/05/23 11:08 AM david cardoza 6,464 sq ft\nNo leftover---\n06/30/23 5:11 PM Beth Cardoza Job awarded. They want tile backer board installed above tub and shower on main level. Also want option for us to haul trash or at least load their trailer. They want hand texture. Confirm hand texture prior to texturing---\n06/22/23 1:09 PM Beth Cardoza They get into town on the 25th, but can look at it sooner if call ahead so they can have someone open it for us---\n06/22/23 1:08 PM Beth Cardoza haven't received the plans yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3159 - Barndominium - 5050 Bear Creek Rd, Reeds Spring - Ota, Otto & Robin - (720) 822-3242 (home?) (303) 520-5538 Cell - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.821Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5cj97u7q3i8rp0z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.462Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "West, Dustin",
+ "Contact_Notes": "",
+ "Contact_Person": "Dustin (417) 569-8111",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1201 W Bellwood Ct, Nixa",
+ "Job_Codes": "3158 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1201 W Bellwood Ct, Nixa - West, Dustin",
+ "Job_Name": "Patches",
+ "Job_Number": "3158",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3158 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3158 - Patches - 1201 W Bellwood Ct, Nixa - West, Dustin - Dustin (417) 569-8111 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.868Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nj8sdsto6po5vy0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.593Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga, 471-830-7880, erice@frigainc.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "701 N McCroskey St, Ste 7, Nixa MO 65714",
+ "Job_Codes": "3157 - Swin Patches",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Swin Patches - 701 N McCroskey St, Ste 7, Nixa MO 65714 - Friga Construction",
+ "Job_Name": "Swin Patches",
+ "Job_Number": "3157",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3157 - Swin Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3157 - Swin Patches - 701 N McCroskey St, Ste 7, Nixa MO 65714 - Friga Construction - Eric Friga, 471-830-7880, erice@frigainc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.924Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xyhowdjqoqzif53",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.710Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "760 Gobblers Knob, Holister",
+ "Job_Codes": "3156 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 760 Gobblers Knob, Holister - Still, Mark",
+ "Job_Name": "Remodel",
+ "Job_Number": "3156",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3156 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/10/23 9:10 AM Beth Cardoza More COs see voxer 8/10 messages---\n08/09/23 3:04 PM david cardoza Billable extras after the texure crew was done:\n\nMain level exit door off kitchen had to redo, cornerbead and wall. Three hours. \n\nStairwell hang drywall around tread and finish. One hour. \n\nOther additional billable items t\n08/02/23 11:52 AM Beth Cardoza 2 new change orders. Dave told Jeremey to do them last and keep track of them (he’s doing like two days worth of work but most of it is not billable)---\n08/03/23 4:08 PM Beth Cardoza Jeremy did NOT do the change orders with the warranty texture fixes. That way all the change orders can be done together and Jeremy doesn't get distracted from fixing texture.---\n08/03/23 11:33 AM Beth Cardoza 2 more change orders: \n- Hang some areas in the utility areas that we were told we weren't going to hang, the first area and the back utility room. \n- Patch in entry in the closet on the right (we weren't originally doing a\n07/27/23 9:25 AM Beth Cardoza CO: \n\nReminder \nBasement wall added at bottom of stairs. Had to send Clay to hang it. Finisher had to catch it up but I’m paying finisher hourly anyway. \n\nThere is a wallpapered wall that finishers didn’t do in a bathroom bec\n07/27/23 9:56 AM Beth Cardoza Clay had 1.5 hrs hang that at bottom of stairs per t sheets but I wonder if he includes drive time. Anyway I’m sure the 1.5 was just hanging---\n07/19/23 12:10 PM david cardoza Final leftover \n1-14\n1-12---\n07/19/23 9:12 AM Beth Cardoza Add sealer to CO? See vox---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3156 - Remodel - 760 Gobblers Knob, Holister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:34.972Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ir1gp059bxvuy2a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.819Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hassbaum, Kim",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Hassbaum (314) 578-2151",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "489 Victory Ln, Niangua",
+ "Job_Codes": "3155 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 489 Victory Ln, Niangua - Hassbaum, Kim",
+ "Job_Name": "N/A",
+ "Job_Number": "3155",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3155 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/24 8:56 AM Beth Cardoza CO: cracks (they didn’t have heat after we completed)---\n01/23/24 4:19 PM Beth Cardoza So, Eddie had said about a half a dozen cracks back in November that were due to cold/not warranty, but for whatever reasons we never went back and did them. Need to charge probably a few hundred dollars. Now there is maybe m\n09/21/23 9:59 AM Heidi Mahan Reports from Derick about why it took longer to scrap, he says a lot more scrap than normal.---\n09/21/23 9:58 AM Heidi Mahan https://www.voxer.com/v/7483cd8315---\n09/21/23 9:57 AM Heidi Mahan https://www.voxer.com/v/867b6370d7---\n08/07/23 8:54 AM david cardoza Stock measured 17,444\nSecond stock 1,104\nTotal stock 18,548\nNo leftover---\n06/15/23 6:49 PM Beth Cardoza Note on PDF plans: \"Our house is built on a slab and I think these plans are for a basement. Just ignore that.\"---\n06/15/23 2:50 PM Beth Cardoza The ceiling in the great room is a 4/12 pitch. 26ft at peak. Bonus room will be finished. 3 way window wraps, bullnose, L5 option (probably will go smooth)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3155 - N/A - 489 Victory Ln, Niangua - Hassbaum, Kim - Kim Hassbaum (314) 578-2151 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.029Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6mi3xmjo2wpfiju",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:03.927Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3154 - Coke Phase 2",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3154%20Ross%20%28Coke%20Phase%202%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Coke Phase 2 - - Ross Construction Group",
+ "Job_Name": "Coke Phase 2",
+ "Job_Number": "3154",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3154 - Coke Phase 2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3154 - Coke Phase 2 - - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.077Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vl4fr3qmar8tch6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.031Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3153 - #48RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#48RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#48RS",
+ "Job_Number": "3153",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3153 - #48RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/24/23 6:27 AM david cardoza Stock 11,594\nPay hangers 11,506\nPay finishers 11,594---\n07/05/23 5:55 PM Beth Cardoza Assuming it is like Rocky Shores #23. 3 floors all 9' except main room vaulted to 25' or 26', between 11,000 and 12000 sqft.---\n06/15/23 6:50 PM Beth Cardoza Estimate waiting on info---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3153 - #48RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.133Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p8ycowanwws9o5d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.138Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whelan, Susan",
+ "Contact_Notes": "",
+ "Contact_Person": "Susan 417-773-6578",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4006 E Linwood St, Spfd",
+ "Job_Codes": "3152 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 4006 E Linwood St, Spfd - Whelan, Susan",
+ "Job_Name": "Patches",
+ "Job_Number": "3152",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3152 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/23/23 2:43 PM Beth Cardoza I don't know what is going on with this job. I think it got dropped.---\n06/13/23 5:08 PM Beth Cardoza Contact Details\nConsumer's Name\nSusan Whelan\nEmail Address\nswhelan4006@yahoo.com\nCell Phone\n417-773-6578\nConsumer's Location\n4006 E Linwood St\nSpringfield, MO (65809)\n\nDescription\nWe want to remove current fluorescent lights",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3152 - Patches - 4006 E Linwood St, Spfd - Whelan, Susan - Susan 417-773-6578 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.180Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bpripzyc2vgpblv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.269Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Galvin, Sheryl",
+ "Contact_Notes": "",
+ "Contact_Person": "Sheryl 417-880-1510",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1673 Green Valley Rd, Clever",
+ "Job_Codes": "3151 - Ceiling cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling cracks - 1673 Green Valley Rd, Clever - Galvin, Sheryl",
+ "Job_Name": "Ceiling cracks",
+ "Job_Number": "3151",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3151 - Ceiling cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/15/23 10:47 AM Beth Cardoza She found someone else already---\n06/13/23 5:07 PM Beth Cardoza Consumer's Name\nSheryl Galvin\nEmail Address\ntitaniumgirl2004@yahoo.com\nCell Phone\n417-880-1510\nConsumer's Location\n1673 Green Valley Rd\nClever, MO (65631)\n\nRequest Details\nDescription\nDrywall cracks on ceiling needs repaired",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3151 - Ceiling cracks - 1673 Green Valley Rd, Clever - Galvin, Sheryl - Sheryl 417-880-1510 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.229Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hqgd5fpcngk141c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.375Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ratcliff, Jack",
+ "Contact_Notes": "",
+ "Contact_Person": "Jack (417) 450-9812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1881 Blue Spring Rd, Nixa",
+ "Job_Codes": "3150 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3150%20%20%281881%20Blue%20Spring%20Rd%2C%20Nixa%29%20%28Ratcliff%2C%20Jack%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1881 Blue Spring Rd, Nixa - Ratcliff, Jack",
+ "Job_Name": "N/A",
+ "Job_Number": "3150",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3150 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 5:01 PM Beth Cardoza Assumed not awarded.---\n06/13/23 1:41 PM Beth Cardoza It's a lived in home. 2 phases so they can live in one side of the house at a time---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3150 - N/A - 1881 Blue Spring Rd, Nixa - Ratcliff, Jack - Jack (417) 450-9812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.293Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a9km6s8eywnfece",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.496Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "411-417 US Hwy 60 Republic",
+ "Job_Codes": "3149 - Access Dental",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20jobs%202025%2F3149%20Access%20Dental%20%28Construct%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Access Dental - 411-417 US Hwy 60 Republic - Construct",
+ "Job_Name": "Access Dental",
+ "Job_Number": "3149",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3149 - Access Dental",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/03/25 10:08 AM Regina McClain Job is still pending, confirmed with Construct 01.31.2025. Will need a new bid when ready to move forward.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3149 - Access Dental - 411-417 US Hwy 60 Republic - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.345Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0ai8i5hwlifgtcl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.603Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Master Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Miller (417)230-5860",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Big Cedar",
+ "Job_Codes": "3148 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3148%20%20%28Big%20Cedar%29%20%28Master%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Big Cedar - Master Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "3148",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3148 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 4:58 PM Beth Cardoza No response. Assumed not awarded---\n06/19/23 10:48 AM Beth Cardoza we hope to break ground in the next three weeks. please price both kinds of conners. still not got any texture type yet either. this is mostly just a close bid. so a sqft per board ft or somthing i can go off of to get a \n06/13/23 12:48 PM Beth Cardoza New home---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3148 - N/A - Big Cedar - Master Construction - Paul Miller (417)230-5860 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lawz4nyq6pk1yiy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.723Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "500 W Main St, Ste 400, Branson",
+ "Job_Codes": "3147 - Doorway",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Doorway - 500 W Main St, Ste 400, Branson - Peach Tree",
+ "Job_Name": "Doorway",
+ "Job_Number": "3147",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3147 - Doorway",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/18/23 11:38 AM Beth Cardoza Co: three areas not included in the original bid. Photos in Voxer.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3147 - Doorway - 500 W Main St, Ste 400, Branson - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.441Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cns5kygjvdl4dyz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.835Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peak Restoration",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy Barnett (417) 813-4955",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8953 W State Hwy EE, Spfd",
+ "Job_Codes": "3146 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 8953 W State Hwy EE, Spfd - Peak Restoration",
+ "Job_Name": "N/A",
+ "Job_Number": "3146",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3146 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/20/23 2:25 PM Beth Cardoza Lets go with square corners. Can you give me a bid for wrapping the windows and one without?---\n06/20/23 2:10 PM Beth Cardoza most common finish ceilings\n8' in main area\n21' in shop area\nspray texture---\n06/13/23 12:47 PM Beth Cardoza Follow up if we don't get info through website/email---\n06/12/23 1:05 PM Beth Cardoza Referred by Jeremy Batson---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3146 - N/A - 8953 W State Hwy EE, Spfd - Peak Restoration - Jeremy Barnett (417) 813-4955 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.492Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y7bvdiui6qfv9a3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:04.950Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "714 W Primrose, Spfd",
+ "Job_Codes": "3145 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 714 W Primrose, Spfd - McMillin, Allen",
+ "Job_Name": "N/A",
+ "Job_Number": "3145",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3145 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/08/24 4:16 PM Beth Cardoza on hold---\n09/25/23 5:27 PM Beth Cardoza On the calendar for late fall---\n06/13/23 12:46 PM Beth Cardoza I think Dave looked at this this morning. Waiting for info. Needs quotes ASAP---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3145 - N/A - 714 W Primrose, Spfd - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.532Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8dioz24i4vnfvih",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.046Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillen, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4673 S Quail Creek, Spfd",
+ "Job_Codes": "3144 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4673 S Quail Creek, Spfd - McMillen, Allen",
+ "Job_Name": "N/A",
+ "Job_Number": "3144",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3144 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/06/23 12:22 PM Beth Cardoza CO: Quail creek \nNeed one sheet of 10 foot drywall. Specifically we need two pieces that are 49 inches long. The area we have to cover is 49“ x 8‘ high. And a handful of 2 inch screws.\nBring one bag of 20 minute and one 8 fo\n07/27/23 9:53 AM Beth Cardoza Probably can build extras in case we forgot in particular I’m referring to Clay having to come back and hang three seats in the master shower of 8 foot purple board. And then of course we have a catch-up on finishing. And the\n07/27/23 9:53 AM Beth Cardoza Shower:\nI hr to hang the shower by clay. \nI’ll estimate 2 hr to tape. \n\nAdded garage wall:\nEstimate 2 hr to hang garage wall\nEstimate 3 hr to tape and finish \n\nRepair after removing mirror:\nSeth had 3 hours fixing drywall whe\n07/27/23 9:54 AM Beth Cardoza So these are all extra billable items \n\nProbably four sheets of 12’ drywall for the garage wall and like I said three sheets of 8’ purple board for the shower.---\n07/24/23 4:51 PM Beth Cardoza They remove a mirror from a bathroom wall, and it needs to be skimmed out now for smooth. It had glue on it. \nAlso, we need to clean it up a little bit more around the fireplace in the living room in particular on the left si\n06/13/23 12:46 PM Beth Cardoza I think Dave looked at this this morning. Waiting for info. Needs quotes ASAP---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3144 - N/A - 4673 S Quail Creek, Spfd - McMillen, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.589Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qfy5a87gkeejj3b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.182Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Anderson, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Anderson (417) 766-7352",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4002 S FR 93, Republic",
+ "Job_Codes": "3143 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4002 S FR 93, Republic - Anderson, Tim",
+ "Job_Name": "N/A",
+ "Job_Number": "3143",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3143 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/27/23 4:14 PM Beth Cardoza CO: patch. 2 hours. Protect tile floor---\n07/27/23 5:06 PM Beth Cardoza NOT billable---\n07/05/23 10:57 AM david cardoza Stock 7512---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3143 - N/A - 4002 S FR 93, Republic - Anderson, Tim - Tim Anderson (417) 766-7352 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.645Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1lgku8ps4vzcpfj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Goforth Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrea Demster",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1117 E St Louis St, Spfd",
+ "Job_Codes": "3142 - Q Hotel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3142%20GoForth%20Const%2E%20%28Q%20Hotel%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Q Hotel - 1117 E St Louis St, Spfd - Goforth Construction",
+ "Job_Name": "Q Hotel",
+ "Job_Number": "3142",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3142 - Q Hotel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3142 - Q Hotel - 1117 E St Louis St, Spfd - Goforth Construction - Andrea Demster - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.697Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dunrsmtcgcd63ae",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.450Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Montano, Jodi",
+ "Contact_Notes": "",
+ "Contact_Person": "Jodi (951) 229-7400",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2466 Coon Ridge Rd, Galena",
+ "Job_Codes": "3141 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2466 Coon Ridge Rd, Galena - Montano, Jodi",
+ "Job_Name": "N/A",
+ "Job_Number": "3141",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3141 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/12/23 10:39 AM Beth Cardoza She hired another contractor---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3141 - N/A - 2466 Coon Ridge Rd, Galena - Montano, Jodi - Jodi (951) 229-7400 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.753Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ytkc5z2gmbrnb0p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.567Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "True North Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken Hopkins Project Manager ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "kenh@truenorthgc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "186 Payne Stewart Drive, Branson",
+ "Job_Codes": "3140 - Edward Jones 04953 Branson, MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3140%20Ed%20Jones%20Branson&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Edward Jones 04953 Branson, MO - 186 Payne Stewart Drive, Branson - True North Construction",
+ "Job_Name": "Edward Jones 04953 Branson, MO",
+ "Job_Number": "3140",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3140 - Edward Jones 04953 Branson, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3149390930",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3140 - Edward Jones 04953 Branson, MO - 186 Payne Stewart Drive, Branson - True North Construction - Ken Hopkins Project Manager - 3149390930",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.805Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v8svec9d8ungkqb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.690Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bales Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Block ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3139 - Watkins Elementary",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3139%20Watkins%20Elementary&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Watkins Elementary - - Bales Construction",
+ "Job_Name": "Watkins Elementary",
+ "Job_Number": "3139",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3139 - Watkins Elementary",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655800",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3139 - Watkins Elementary - - Bales Construction - Justin Block - 4178655800",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.856Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tv6m75cgwd0wlgf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.799Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt & Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2526 S Hillsboro Ave Springfield",
+ "Job_Codes": "3138 - Wilder elementary",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3138%20Wilder%20Elementary&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Wilder elementary - 2526 S Hillsboro Ave Springfield - Dewitt & Associates",
+ "Job_Name": "Wilder elementary",
+ "Job_Number": "3138",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3138 - Wilder elementary",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3138 - Wilder elementary - 2526 S Hillsboro Ave Springfield - Dewitt & Associates - Chris Burke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.904Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8f9issy81z15fdg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:05.906Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cardoza, Nathan",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Cardoza (417) 505-9629",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4848 S Warwick Ave, Spfd",
+ "Job_Codes": "3137 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4848 S Warwick Ave, Spfd - Cardoza, Nathan",
+ "Job_Name": "N/A",
+ "Job_Number": "3137",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3137 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3137 - N/A - 4848 S Warwick Ave, Spfd - Cardoza, Nathan - Nathan Cardoza (417) 505-9629 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:35.960Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iezzgpsm00m9ruf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.022Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lennard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Tenants: Garrett T. Agans Mobile - (518) 860-2774 Kayla E. Agans Mobile - (979) 308-9358",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2310 Deerbrooke Tr, Ozark",
+ "Job_Codes": "3136 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2310 Deerbrooke Tr, Ozark - Lennard Properties",
+ "Job_Name": "Patch",
+ "Job_Number": "3136",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3136 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3136 - Patch - 2310 Deerbrooke Tr, Ozark - Lennard Properties - Tenants: Garrett T. Agans Mobile - (518) 860-2774 Kayla E. Agans Mobile - (979) 308-9358 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.005Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t5u4gdfgzbqgggv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.126Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lennard Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Tenant: Madison E. Yates Phone - (417) 830-8945 Lennard Properties (417) 725-2125",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2307 W Deerbrook Tr, Ozark",
+ "Job_Codes": "3135 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2307 W Deerbrook Tr, Ozark - Lennard Properties",
+ "Job_Name": "Patch",
+ "Job_Number": "3135",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3135 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3135 - Patch - 2307 W Deerbrook Tr, Ozark - Lennard Properties - Tenant: Madison E. Yates Phone - (417) 830-8945 Lennard Properties (417) 725-2125 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.060Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "si1lvnsk68h3ekn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.233Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MSI Constructors",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Asheim",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Street Address: 330 W. Scott St. City: Springfield State / Province: MO Postal / Zip Code: 65802",
+ "Job_Codes": "3134 - Johann Hyde",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3134%20MSI%20Constructiors%20%28Johann%20Hyde%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Johann Hyde - Street Address: 330 W. Scott St. City: Springfield State / Province: MO Postal / Zip Code: 65802 - MSI Constructors",
+ "Job_Name": "Johann Hyde",
+ "Job_Number": "3134",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3134 - Johann Hyde",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3134 - Johann Hyde - Street Address: 330 W. Scott St. City: Springfield State / Province: MO Postal / Zip Code: 65802 - MSI Constructors - Michael Asheim - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.108Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9ilpxv196trijh0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.338Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen Davis (417) 827-2382",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2218 S Cave Creek, Spfd",
+ "Job_Codes": "3133 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 2218 S Cave Creek, Spfd - Davis, Allen",
+ "Job_Name": "Addition",
+ "Job_Number": "3133",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3133 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/25 2:09 PM Beth Cardoza Never heard anything more---\n06/06/23 10:52 AM Beth Cardoza Probably a couple of months out. Maybe look at it next month?---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3133 - Addition - 2218 S Cave Creek, Spfd - Davis, Allen - Allen Davis (417) 827-2382 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.152Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g00xv4gu5xufa65",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.447Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3132 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3132%2E1%20Bobbett%20Remodel%20%28S%20FR%20249%2C%20Rogersville%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3132",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3132 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3132 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.204Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p638glftyttxlpf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.563Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Epps, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Epps (417) 350-4452",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2618 E Cherry St, Spfd",
+ "Job_Codes": "3131 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2618 E Cherry St, Spfd - Epps, Mark",
+ "Job_Name": "Remodel",
+ "Job_Number": "3131",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3131 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/03/23 7:00 AM david cardoza stock 2192\nno leftover---\n07/17/23 10:06 AM Beth Cardoza Ran into a hitch with the city. Said to put it on the back burner and he will call when the city gives the go-ahead to move forward.---\n06/13/23 12:09 PM Beth Cardoza Yes he is in training so the earliest I can see it is on the 19th -Eddie---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3131 - Remodel - 2618 E Cherry St, Spfd - Epps, Mark - Mark Epps (417) 350-4452 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.260Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f0dmwn68f0qlkj5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.666Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fair and True Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Brown",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3020 Goldfinch Rd. Merriam Woods, Mo",
+ "Job_Codes": "3130 - Taney County Ambulance District",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Taney County Ambulance District - 3020 Goldfinch Rd. Merriam Woods, Mo - Fair and True Construction",
+ "Job_Name": "Taney County Ambulance District",
+ "Job_Number": "3130",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3130 - Taney County Ambulance District",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3130 - Taney County Ambulance District - 3020 Goldfinch Rd. Merriam Woods, Mo - Fair and True Construction - Ben Brown - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.312Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "55jelk6vwnf2iy4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.782Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Newberry, Brad & Christine",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 861-7668 Christine (417) 861-7662",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 Park Central East, Spfd",
+ "Job_Codes": "3129 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 205 Park Central East, Spfd - Newberry, Brad & Christine",
+ "Job_Name": "Rehab",
+ "Job_Number": "3129",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3129 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 3:52 PM Beth Cardoza Never heard back. Assuming not awarded---\n06/13/23 12:31 PM Beth Cardoza 205 Park Central East, Spfd Suite 518 (5th floor)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3129 - Rehab - 205 Park Central East, Spfd - Newberry, Brad & Christine - Brad (417) 861-7668 Christine (417) 861-7662 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.365Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q1vpofpnm67nx8h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:06.886Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Outlaw Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh Holden (417) 827-3896",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1408 Jenkins Rd, Sparta",
+ "Job_Codes": "3128 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 1408 Jenkins Rd, Sparta - Outlaw Construction",
+ "Job_Name": "Rehab",
+ "Job_Number": "3128",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3128 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/27/23 9:42 AM Beth Cardoza CO?: unable to stock correctly. Stockers asked to stock in garage only---\n07/25/23 1:13 PM Beth Cardoza Doesn't look like we need to. we are under budget on the board by $128. Over budget on hang like $30 and delivery $50 (don't know what moving board was put under).---\n06/21/23 6:18 AM david cardoza Stock 8440 SQF\nLeftover 256\nHang 8,184\n( adjusted leftover 320)\nPay finisher for 8,120 ft---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3128 - Rehab - 1408 Jenkins Rd, Sparta - Outlaw Construction - Josh Holden (417) 827-3896 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.417Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mejtbg0ql05vlfp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.002Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wilkinson, Betty",
+ "Contact_Notes": "",
+ "Contact_Person": "Betty bjeuliss@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4357 N FR 197, Spfd",
+ "Job_Codes": "3127 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3127%20%20%284357%20N%20FR%20197%2C%20Spfd%29%20%28Wilkinson%2C%20Betty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 4357 N FR 197, Spfd - Wilkinson, Betty",
+ "Job_Name": "N/A",
+ "Job_Number": "3127",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3127 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/24 11:24 AM Beth Cardoza Still Put on hold!---\n06/02/23 9:00 AM Beth Cardoza Will be breaking ground July 1.\nSmooth \nNo trim on windows\nRound corners\n4357 N Farmroad 197\nFrom l 44 take north 65 to Bluegrass road. Go east on Blue approximately 1 1/2 miles.---\n06/02/23 9:08 AM Beth Cardoza It appears that it's on the corner of Farm Rd 94 and Farm Rd 197. Maybe the driveway is on Farm Rd 94/Bluegrass Rd or she just forgot to say to \"turn onto FR 197 and it's on the left\". And just said how far down it was to FR \n06/02/23 7:08 AM Beth Cardoza She is TJ Rose mother-in-law---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3127 - N/A - 4357 N FR 197, Spfd - Wilkinson, Betty - Betty bjeuliss@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.464Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dtdixzunxnfca8s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.113Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moore, Hilda",
+ "Contact_Notes": "",
+ "Contact_Person": "Hilda (417) 227-8692, Sam Tennis (setting this up for her) (417) 353-9425",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1189 W Sleepy Hollow Dr, Nixa",
+ "Job_Codes": "3126 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1189 W Sleepy Hollow Dr, Nixa - Moore, Hilda",
+ "Job_Name": "Patch",
+ "Job_Number": "3126",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3126 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/01/23 9:58 AM Beth Cardoza Steve Larsen referal---\n06/01/23 9:58 AM Beth Cardoza 15'x8' wall to hang and finish---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3126 - Patch - 1189 W Sleepy Hollow Dr, Nixa - Moore, Hilda - Hilda (417) 227-8692, Sam Tennis (setting this up for her) (417) 353-9425 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.524Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jahkfgrozqyd58w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.306Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3125 - Higgs Lot 19",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3125%20Higgs%20Lot%2019%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Higgs Lot 19 - Omaha, AR - Peach Tree",
+ "Job_Name": "Higgs Lot 19",
+ "Job_Number": "3125",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3125 - Higgs Lot 19",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/20/24 2:01 PM Beth Cardoza CO? A wall and a closet in that room are smooth---\n03/14/24 6:51 AM david cardoza Stock 4,806\nLeftover 54'\nHang 4,752---\n01/17/24 5:17 PM Beth Cardoza review---\n08/30/23 5:06 PM Beth Cardoza Breaking ground on Lot 17 September 14th. Probably late November or so before ready for drywall on Lot 17, others coming after that---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3125 - Higgs Lot 19 - Omaha, AR - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.576Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3gakg28a9cfi2gg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.426Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3124 - Haley Lot 18",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F3%20In%20Progress%20Residential%2F3124%20Haley%20Lot%2018%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Haley Lot 18 - Omaha, AR - Peach Tree",
+ "Job_Name": "Haley Lot 18",
+ "Job_Number": "3124",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3124 - Haley Lot 18",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/13/24 1:25 PM Beth Cardoza CO: Adding a pony wall at balcony. Chad figured an extra $1,000 should cover it.---\n01/17/24 5:17 PM Beth Cardoza Re bid. new plans---\n08/30/23 5:06 PM Beth Cardoza Breaking ground on Lot 17 September 14th. Probably late November or so before ready for drywall on Lot 17, others coming after that---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3124 - Haley Lot 18 - Omaha, AR - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.620Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tbjcgiqndv9knin",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.526Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3123 - Gatto Micro Natur",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Gatto Micro Natur - - Peach Tree",
+ "Job_Name": "Gatto Micro Natur",
+ "Job_Number": "3123",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3123 - Gatto Micro Natur",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/23 4:12 PM Beth Cardoza Peach Tree not doing this plan/lot.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3123 - Gatto Micro Natur - - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.676Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yb8ycf2yqyf7e7f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.626Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3122 - Gatto Lot 21",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3122%20Gatto%20Lot%2021%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Gatto Lot 21 - Omaha, AR - Peach Tree",
+ "Job_Name": "Gatto Lot 21",
+ "Job_Number": "3122",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3122 - Gatto Lot 21",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/24 3:51 PM Beth Cardoza been delayed---\n02/13/24 1:24 PM Beth Cardoza CO: Adding a pony wall at balcony. Chad figured an extra $1,000 should cover it. Don't know if the original estimate was high enough in the first place and may need adjusting besides that change. Needs to be looked at.---\n08/30/23 5:06 PM Beth Cardoza Breaking ground on Lot 17 September 14th. Probably late November or so before ready for drywall on Lot 17, others coming after that---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3122 - Gatto Lot 21 - Omaha, AR - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.732Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hl7ryr5amhv8kg2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.722Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Omaha, AR",
+ "Job_Codes": "3121 - Charifa Lot 17",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3121%20Charifa%20Lot%2017%20%28Peach%20Tree%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Charifa Lot 17 - Omaha, AR - Peach Tree",
+ "Job_Name": "Charifa Lot 17",
+ "Job_Number": "3121",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3121 - Charifa Lot 17",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/05/24 9:31 AM Beth Cardoza 36.48480° N, 93.28640° W---\n01/16/24 10:50 AM david cardoza Stock 3,916\nLeftover 288\nHang 3,672---\n10/30/23 12:08 PM Beth Cardoza Also Beth he said lot 14 in Omaha Arkansas, is now getting Sheetrock on ceiling throughout, was supposed to be wood but has changed so he said you need to revise your estimate---\n08/30/23 5:06 PM Beth Cardoza Breaking ground on Lot 17 September 14th. Probably late November or so before ready for drywall on Lot 17, others coming after that---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3121 - Charifa Lot 17 - Omaha, AR - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.780Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d6bis79eggcnwm4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.821Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2306 W Phelps, Spfd",
+ "Job_Codes": "3120 - Paul Mueller Blding 8",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3120%20Ross%20%28Paul%20Mueller%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Paul Mueller Blding 8 - 2306 W Phelps, Spfd - Ross Construction Group",
+ "Job_Name": "Paul Mueller Blding 8",
+ "Job_Number": "3120",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3120 - Paul Mueller Blding 8",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/24/24 1:57 PM IT Services https://www.voxer.com/v/9d890092eb---\n09/24/24 1:56 PM IT Services https://www.voxer.com/v/195577edcd---\n09/24/24 1:56 PM IT Services https://www.voxer.com/v/d1aad60847---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3120 - Paul Mueller Blding 8 - 2306 W Phelps, Spfd - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.832Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h9swj2bl5kzslvd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:07.922Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River North",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Horman",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3119 - Basketball goal and door frame and door",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Basketball goal and door frame and door - Springfield - James River North",
+ "Job_Name": "Basketball goal and door frame and door",
+ "Job_Number": "3119",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3119 - Basketball goal and door frame and door",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3119 - Basketball goal and door frame and door - Springfield - James River North - Bob Horman - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.880Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p8sh77tu8insqwk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:08.017Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "New Life",
+ "Contact_Notes": "",
+ "Contact_Person": "Pastor Ryan (810) 407-3821",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "776 W FR 186, Spfd",
+ "Job_Codes": "3118 - Office walls",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office walls - 776 W FR 186, Spfd - New Life",
+ "Job_Name": "Office walls",
+ "Job_Number": "3118",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3118 - Office walls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3118 - Office walls - 776 W FR 186, Spfd - New Life - Pastor Ryan (810) 407-3821 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.932Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ept6gteaqcj15r9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:08.126Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "E Landcaster Way",
+ "Job_Codes": "3117 - LWH #25",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH #25 - E Landcaster Way - Everlasting Homes",
+ "Job_Name": "LWH #25",
+ "Job_Number": "3117",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3117 - LWH #25",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/05/24 3:57 PM Beth Cardoza CO: Vanity patches---\n10/05/23 7:36 AM david cardoza Stock 12,164\nNo leftover---\n08/14/23 3:09 PM Beth Cardoza ave walkthrough notes 8/14/23\nThree car garage at 9.5’ over concrete.\n\nSingle level.\n\nAll nine ft except\n\nmain living area , entry, from office, dining room 11’ flat.\n\nProbably 10,000 ft.\n\n.16 hang. Maybe .15\n\nMaster bedroom \n08/14/23 3:00 PM Beth Cardoza Guessing lot numbers. might be 2-3 weeks out---\n05/30/23 4:11 PM Beth Cardoza Breaking ground now---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3117 - LWH #25 - E Landcaster Way - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:36.984Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3wfuiug6svrn5a4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:08.226Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "E Landcaster Way",
+ "Job_Codes": "3116 - LWH #26",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH #26 - E Landcaster Way - Everlasting Homes",
+ "Job_Name": "LWH #26",
+ "Job_Number": "3116",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3116 - LWH #26",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/05/24 3:57 PM Beth Cardoza CO: Vanity patches and office patch---\n10/24/23 3:31 PM david cardoza Stock 12,292\nNo leftover---\n10/23/23 2:21 PM Beth Cardoza Random roll ceilings except garage is all orange peel---\n08/14/23 3:02 PM Beth Cardoza Dave walkthrough notes 8/14/23\nThree car garage at 9.5’ over concrete.\n\nSingle level.\n\nAll nine ft except\n\nmain living area , entry, from office, dining room 11’ flat.\n\nProbably 10,000 ft.\n\n.16 hang. Maybe .15\n\nMaster bedroom\n08/14/23 3:00 PM Beth Cardoza Guessing lot numbers. might be 2-3 weeks out---\n05/30/23 4:11 PM Beth Cardoza Breaking ground now---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3116 - LWH #26 - E Landcaster Way - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.036Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e4wawblmlufg0q1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:12:08.334Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1799 N Waterstone, Spfd",
+ "Job_Codes": "3115 - LWH",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH - 1799 N Waterstone, Spfd - Everlasting Homes",
+ "Job_Name": "LWH",
+ "Job_Number": "3115",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3115 - LWH",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/01/23 9:25 AM david cardoza First Stock 12,856\nSecond stock 960\nTotal stock 13,816\nLeftover 144\nHang 13,672---\n07/25/23 4:01 PM Beth Cardoza Estimate waiting for Rick review---\n07/24/23 2:35 PM Beth Cardoza 1799 N. Waterstone Springfield, Missouri\nLake of the wild horse\nA single level house on the corner of Waterstone and Marlowe\nThree car garage at about 9 1/2 feet over gravel probably will be cement when we start\nFront master \n05/30/23 4:11 PM Beth Cardoza Breaking ground now---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3115 - LWH - 1799 N Waterstone, Spfd - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3n7agxg0v886ilr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:39.677Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "202 Ridge Park, Ozark",
+ "Job_Codes": "3114 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 202 Ridge Park, Ozark - Burnett Homes",
+ "Job_Name": "N/A",
+ "Job_Number": "3114",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3114 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/26/24 12:24 PM Beth Cardoza CO: \nNext week \nRidgeview\nBurnette \nPantry\nBasement powder rm\nPlumbing cut out behind shower---\n12/13/23 9:02 AM david cardoza Prerock stock 672\nLeftover from pre Rock hanged 5-12 foot sheets\nStock 17,920\nAdditional stock 672\nFinal leftover none\nTotal hang 18,832---\n09/07/23 1:53 PM Beth Cardoza Dave walkthrough notes 9/7/23:\n\n202 Ridge Park\nOzark, Mo. \n\nGarage \nCurrently gravel but assuming it’ll be concrete when we start. Best guess 13 foot high. \nFigure one stage scaffolding.\n\nWalkout basement house. \n\nMain level\n08/09/23 12:56 PM Beth Cardoza Guessing 3-4 weeks out. Roofing still in progress---\n05/30/23 4:04 PM Beth Cardoza The house in Ozark we just poured the four walls.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3114 - N/A - 202 Ridge Park, Ozark - Burnett Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.132Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s5pe6noc2l51exg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:39.811Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hwy A",
+ "Job_Codes": "3113 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Hwy A - Burnett Homes",
+ "Job_Name": "N/A",
+ "Job_Number": "3113",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3113 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/10/23 1:14 PM Beth Cardoza CO: I forgot to mention I have some repairs at house off Hwy A. \nSpare bath shower head and laundry room behind washer. \nGerry Burnette---\n07/20/23 6:18 AM david cardoza Stock 11,404\nNo leftover---\n07/17/23 11:17 AM Beth Cardoza GPS Coordinates: 37°19'37.9\"N 93°09'41.6\"W---\n06/29/23 3:20 PM Beth Cardoza Waiting for info for estimate---\n06/29/23 3:19 PM Beth Cardoza Ready in about 2 weeks from tomorrow (July 14th)---\n05/30/23 4:04 PM Beth Cardoza I’m framing a house up off Hwy A just north of town.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3113 - N/A - Hwy A - Burnett Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.180Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ptvolshslzpy2nv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:39.987Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bales Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Block ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3112 - Springfield Dentistry for kids",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3112%20Bales%20%28Springfield%20Dentistry%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Springfield Dentistry for kids - - Bales Construction",
+ "Job_Name": "Springfield Dentistry for kids",
+ "Job_Number": "3112",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3112 - Springfield Dentistry for kids",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655800",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3112 - Springfield Dentistry for kids - - Bales Construction - Justin Block - 4178655800",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.236Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "587p0ht0yfn9qqf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:40.120Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt & Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "798 S Marshall St Marshfield, MO 65706",
+ "Job_Codes": "3111 - Marshfield City Hall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3111%20DeWitt%20%28Marshfield%20City%20Hall%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Marshfield City Hall - 798 S Marshall St Marshfield, MO 65706 - Dewitt & Associates",
+ "Job_Name": "Marshfield City Hall",
+ "Job_Number": "3111",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3111 - Marshfield City Hall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3111 - Marshfield City Hall - 798 S Marshall St Marshfield, MO 65706 - Dewitt & Associates - Chris Burke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.284Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ldhr8my08sc7cpx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:40.280Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mitch Richardson",
+ "Contact_Notes": "",
+ "Contact_Person": "Mitch Richardson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic",
+ "Job_Codes": "3110 - Spectrum Republic",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3110%20Mitch%20Richardson%20%28Spectrum%2C%20Republic%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Spectrum Republic - Republic - Mitch Richardson",
+ "Job_Name": "Spectrum Republic",
+ "Job_Number": "3110",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3110 - Spectrum Republic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3110 - Spectrum Republic - Republic - Mitch Richardson - Mitch Richardson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.336Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pg77i40g93l38fd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:40.439Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Allen Davis",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen Davis 417-827-2382",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2218 S. Cave Creek Spfd",
+ "Job_Codes": "3109 - Cave Creek",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cave Creek - 2218 S. Cave Creek Spfd - Allen Davis",
+ "Job_Name": "Cave Creek",
+ "Job_Number": "3109",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3109 - Cave Creek",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/06/23 10:46 AM Beth Cardoza Ready to get going on the job. TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3109 - Cave Creek - 2218 S. Cave Creek Spfd - Allen Davis - Allen Davis 417-827-2382 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.381Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "thynrup5j36qhjy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:40.604Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brian Shepard",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Shepard",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "unknown",
+ "Job_Codes": "3108 - Building Infill",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Building Infill - unknown - Brian Shepard",
+ "Job_Name": "Building Infill",
+ "Job_Number": "3108",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3108 - Building Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3108 - Building Infill - unknown - Brian Shepard - Brian Shepard - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.428Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "irhxaydwnldw66v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:40.760Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2905 W Heritage Dr, Ozark",
+ "Job_Codes": "3107 - Personal Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Personal Patches - 2905 W Heritage Dr, Ozark - Krueger, Paul",
+ "Job_Name": "Personal Patches",
+ "Job_Number": "3107",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3107 - Personal Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3107 - Personal Patches - 2905 W Heritage Dr, Ozark - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.472Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jzryzpac3sdxkox",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:40.920Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rose, TJ",
+ "Contact_Notes": "",
+ "Contact_Person": "TJ Rose (417) 761-4854",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3106 - Spec",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spec - - Rose, TJ",
+ "Job_Name": "Spec",
+ "Job_Number": "3106",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3106 - Spec",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 4:55 PM Beth Cardoza No response. Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3106 - Spec - - Rose, TJ - TJ Rose (417) 761-4854 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.522Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fr4gg6wnzr3knj9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:41.106Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "BL #218",
+ "Job_Codes": "3105 - faucet leak damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "faucet leak damage - BL #218 - Krueger, Paul",
+ "Job_Name": "faucet leak damage",
+ "Job_Number": "3105",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3105 - faucet leak damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3105 - faucet leak damage - BL #218 - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.572Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lye4rf0up85p4un",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:41.293Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cope, Caroline",
+ "Contact_Notes": "",
+ "Contact_Person": "(573) 368-1486 Howard (husband) 573-368-8206 Caroline",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8326 Shinnecock, Fremont Hills",
+ "Job_Codes": "3104 - Dining ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Dining ceiling - 8326 Shinnecock, Fremont Hills - Cope, Caroline",
+ "Job_Name": "Dining ceiling",
+ "Job_Number": "3104",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3104 - Dining ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3104 - Dining ceiling - 8326 Shinnecock, Fremont Hills - Cope, Caroline - (573) 368-1486 Howard (husband) 573-368-8206 Caroline - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.616Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5zucqpn49zhx1io",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:41.436Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty 417-337-1168, Homeowner: Sharon Almquist (308) 440-8834",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "516 State Hwy Y, Forsyth",
+ "Job_Codes": "3103 - Bath remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath remodel - 516 State Hwy Y, Forsyth - Baty, Gary",
+ "Job_Name": "Bath remodel",
+ "Job_Number": "3103",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3103 - Bath remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3103 - Bath remodel - 516 State Hwy Y, Forsyth - Baty, Gary - Gary Baty 417-337-1168, Homeowner: Sharon Almquist (308) 440-8834 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.668Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ubbku09100ssdqf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:41.618Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2954 Old Jericho Rd Seymour",
+ "Job_Codes": "3102 - Messengale Shouse",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Messengale Shouse - 2954 Old Jericho Rd Seymour - Concept2Completion",
+ "Job_Name": "Messengale Shouse",
+ "Job_Number": "3102",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3102 - Messengale Shouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/18/24 12:08 PM Beth Cardoza We are doing the shop now. There's stuff (and puppies at least one day) in the way and we are doing smooth because they put metal on the ceiling so we didn't want to spray it and worry about masking off the metal. So there w\n07/18/23 10:35 AM Beth Cardoza CO: So a window upstairs got left open at the Seymour job at Old Jericho Rd Seymour \nPut it on the repair list and add to billing. Thank you\nTim---\n07/27/23 5:10 PM Beth Cardoza 1.25 hrs Bob on 7/25/23---\n07/06/23 7:27 AM david cardoza 1st stock 7,760\nSecond stock 480\nTotal stock 8,240\nOnly finished and textured the 8' living area.\nPay finisher 6,410---\n05/19/23 2:52 PM Beth Cardoza price the living area only. Standard orange peel with light stomp ceiling. 2954 Old Jericho Rd Seymour Mo. Hopefully ready in 6-7 weeks---\n05/19/23 2:52 PM Beth Cardoza firewall and tape\nWrap windows except the sills. All square corner bead---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3102 - Messengale Shouse - 2954 Old Jericho Rd Seymour - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.716Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dmn3qbr5ve5zrof",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:41.784Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Teed, Norm",
+ "Contact_Notes": "",
+ "Contact_Person": "Norm (315) 521-0898",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "473 Kansas Dr, Ozark",
+ "Job_Codes": "3101 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 473 Kansas Dr, Ozark - Teed, Norm",
+ "Job_Name": "Remodel",
+ "Job_Number": "3101",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3101 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/23 11:11 AM Beth Cardoza Not sure if Patty Teed and Norm Teed are the same job. Patty Teed called the office asking about getting a bid for a garage and I only have a phone number. Norm Teed gave info through the website and it's a remodel on a por",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3101 - Remodel - 473 Kansas Dr, Ozark - Teed, Norm - Norm (315) 521-0898 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.760Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bpw9aa34ip1xrg4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:41.927Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Glover, James",
+ "Contact_Notes": "",
+ "Contact_Person": "James (417) 988-9844",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4679 S Marquette Ct, Nixa",
+ "Job_Codes": "3100 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 4679 S Marquette Ct, Nixa - Glover, James",
+ "Job_Name": "Garage",
+ "Job_Number": "3100",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3100 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/09/23 11:17 AM Beth Cardoza Somehow fell through the cracks as Eddie didn't make it to the scheduled meeting and then didn't connect again to get it rescheduled so he just went with someone else. I had just emailed to follow up before assuming it wasn'\n05/30/23 9:45 AM Beth Cardoza Left message on machine 5/24---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3100 - Garage - 4679 S Marquette Ct, Nixa - Glover, James - James (417) 988-9844 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.810Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n409qjyxemnquha",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.141Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sawicki, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "dsm1161@hotmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 N Dublin Dr, Nixa",
+ "Job_Codes": "3099 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 524 N Dublin Dr, Nixa - Sawicki, Mark",
+ "Job_Name": "Step thru",
+ "Job_Number": "3099",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3099 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/30/23 1:35 PM Beth Cardoza Scheduled for Thur June 1st---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3099 - Step thru - 524 N Dublin Dr, Nixa - Sawicki, Mark - dsm1161@hotmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.857Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0koeyxa8uq4b90j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.301Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Coffman, Rann",
+ "Contact_Notes": "",
+ "Contact_Person": "Rann 880-8881",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Elkland",
+ "Job_Codes": "3098 - Mother inlaw",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mother inlaw - Elkland - Coffman, Rann",
+ "Job_Name": "Mother inlaw",
+ "Job_Number": "3098",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3098 - Mother inlaw",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/17/23 5:03 PM Beth Cardoza Orange peel walls, knock down ceiling. All 9' flat. Approx 2500 sqft---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3098 - Mother inlaw - Elkland - Coffman, Rann - Rann 880-8881 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.900Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oe35je6pjpi4n9e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.433Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna 417 298-4455",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6527 S State Hwy NN, Rogersville",
+ "Job_Codes": "3097 - Liljenquist",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Liljenquist - 6527 S State Hwy NN, Rogersville - Construct",
+ "Job_Name": "Liljenquist",
+ "Job_Number": "3097",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3097 - Liljenquist",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/02/24 12:04 PM Beth Cardoza CO: There was a wall or two that we had converted from hand texture\n to smooth. It was I guess the mudroom when you enter from the garage. Well now they changed their mind and they want it back to texture.\n\nAlso in the maste\n07/19/24 12:04 PM Beth Cardoza CO: They have a change order here. Put in a pocket door or something. I’ll check today. Ready now---\n04/25/24 2:11 PM david cardoza 11 pieces of tear away are leftover---\n04/04/24 11:13 AM Beth Cardoza Possible CO: 2 hr fix framing.---\n02/08/24 7:08 AM Beth Cardoza Superintendent said no window wraps---\n02/06/24 7:09 AM david cardoza Prerock for cold wall 480\nLeftover from coldwall is 48 feet\nStock 14,080\nFinal leftover none\nHang 14,128\nFinish ftg 14,456---\n08/30/23 10:43 AM Beth Cardoza Working on permitting. Will let you know later for expectant drywall date. - Johanna---\n05/17/23 3:07 PM Beth Cardoza a residential house not far from our office on NN highway. I need pricing for drywall back by the 29th please.\n\n \n\nPlans call for ½” drywall. Please quote level 4 with a level 5 upgrade price. You will provide all the materia",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3097 - Liljenquist - 6527 S State Hwy NN, Rogersville - Construct - Johanna 417 298-4455 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.944Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m1sfxzpn3mt6f71",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.553Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim 209-8635. Homeowner Mark Ogle (417) 414-4215 for scheduling",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "782 W Alemeda St, Republic",
+ "Job_Codes": "3096 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 782 W Alemeda St, Republic - Solar Solutions",
+ "Job_Name": "Step thru",
+ "Job_Number": "3096",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3096 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/30/23 1:37 PM Beth Cardoza Scheduled for Thur June 1st---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3096 - Step thru - 782 W Alemeda St, Republic - Solar Solutions - Tim 209-8635. Homeowner Mark Ogle (417) 414-4215 for scheduling - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:37.988Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ln29bvdn9wpllrz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.685Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "RaeLei Farmer Estimating & Proposal Administrative Assistant",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rfarmer@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1720 West Grand Street, Springfield, MO 65802",
+ "Job_Codes": "3095 - JVHC Adult Daycare",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3095%20JVHC%20Adult%20Daycare&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "JVHC Adult Daycare - 1720 West Grand Street, Springfield, MO 65802 - Branco",
+ "Job_Name": "JVHC Adult Daycare",
+ "Job_Number": "3095",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3095 - JVHC Adult Daycare",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174515250",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3095 - JVHC Adult Daycare - 1720 West Grand Street, Springfield, MO 65802 - Branco - RaeLei Farmer Estimating & Proposal Administrative Assistant - 4174515250",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.048Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "eei1jlf1qur0jux",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.821Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Draper, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Draper",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6562 State Hwy B, Rogersville",
+ "Job_Codes": "3094 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 6562 State Hwy B, Rogersville - Draper, Tim",
+ "Job_Name": "Patch",
+ "Job_Number": "3094",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3094 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3094 - Patch - 6562 State Hwy B, Rogersville - Draper, Tim - Tim Draper - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.104Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "878i8u1zk78dfu1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:42.929Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hwy T, Branson",
+ "Job_Codes": "3093 - Martin",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F3093%20Martin%20%28Ozark%20Mountain%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Martin - Hwy T, Branson - Ozark Mountain Homes",
+ "Job_Name": "Martin",
+ "Job_Number": "3093",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3093 - Martin",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/25 11:53 AM Beth Cardoza CO? Work being done last week and next week---\n06/06/25 2:18 PM Beth Cardoza Created CO for delayed stairway. Waiting for comments from Dave---\n07/02/24 4:40 PM Beth Cardoza Possible CO: mask off wall paper walls, & smooth window wraps?---\n06/12/24 1:17 PM david cardoza Stock 17,136\nSecond stock 520\nTotal stock 17,656\nAssume no leftover---\n05/10/24 5:27 PM Beth Cardoza 1230 Timberlake dr in Branson off T Hwy.---\n05/10/24 3:52 PM Beth Cardoza This should be ready probably in a couple of weeks or so---\n02/29/24 4:45 PM Beth Cardoza Getting ready to start. Estimate needs review---\n01/08/24 1:56 PM Beth Cardoza Ready in the next couple of months---\n05/11/23 6:22 PM Beth Cardoza Yes standard textures and square corners. 3 way window wrap. This house is on T Hwy in Branson. I would expect 2-3 months to drywall.---\n05/11/23 4:57 PM Beth Cardoza They are 8' walls in the basement, which is unfinished except for the bathroom., and 9' throughout the house, standard texture and square corners with three way window wrap. It has a 2 story living room and a 9 panel ceiling",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3093 - Martin - Hwy T, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.164Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v9qglicdkpoc2lx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.077Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Cowherd office 417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4144 Somerset, Battlefield",
+ "Job_Codes": "3092 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4144 Somerset, Battlefield - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "3092",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3092 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 8:36 AM david cardoza Stock 6,924\nLeftover 80’\nHang 6,844---\n05/11/23 4:05 PM Beth Cardoza Needs estimate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3092 - N/A - 4144 Somerset, Battlefield - Cowherd - Cowherd office 417-887-1600 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.216Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ldn8z57w5aas0oj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.205Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Battaglia, Greg",
+ "Contact_Notes": "",
+ "Contact_Person": "Greg Battaglia (417) 294-2734",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "166 Indian Ln, Branson",
+ "Job_Codes": "3091 - Ceiling repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling repair - 166 Indian Ln, Branson - Battaglia, Greg",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "3091",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3091 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3091 - Ceiling repair - 166 Indian Ln, Branson - Battaglia, Greg - Greg Battaglia (417) 294-2734 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.268Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "umsabxwek3w2ani",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.321Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga 417-887-7134 Phone",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3090 - City Utilities Training Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3090%20Friga%20Const%2E%20City%20Utilities%20training%20center&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "City Utilities Training Center - Springfield - Friga Construction",
+ "Job_Name": "City Utilities Training Center",
+ "Job_Number": "3090",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3090 - City Utilities Training Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3090 - City Utilities Training Center - Springfield - Friga Construction - Eric Friga 417-887-7134 Phone - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.316Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u2aeou8ggpn97hi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2026-01-17 04:35:44.751Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLaughlin, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 838-9646",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3089 - Bath remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath remodel - - MacLaughlin, Julie",
+ "Job_Name": "Bath remodel",
+ "Job_Number": "3089",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3089 - Bath remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/23/23 1:27 PM Beth Cardoza Maybe needs estimate? Not sure. Put in QBs as TM in case it happens while I'm gone, but might need estimate.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3089 - Bath remodel - - MacLaughlin, Julie - Julie (417) 838-9646 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.368Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z11t2y2g9hgpoln",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.581Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hall, Jarrod",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrod 417-689-3164",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "740 Headwaters Dr, Marshfield",
+ "Job_Codes": "3088 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 740 Headwaters Dr, Marshfield - Hall, Jarrod",
+ "Job_Name": "N/A",
+ "Job_Number": "3088",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3088 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 4:08 PM Beth Cardoza Never heard back. Figuring not awarded---\n05/11/23 12:26 PM Beth Cardoza I was looking to see about getting a quote for hanging sheetrock in my shop house build in Marshfield MO. I used to tape & finish with Dave, and texture with Jason, Rick, & Chancey many many years ago. 😊 Wildcat is del",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3088 - N/A - 740 Headwaters Dr, Marshfield - Hall, Jarrod - Jarrod 417-689-3164 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.412Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a54b8dg4ixta78r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.708Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cole, Mikel",
+ "Contact_Notes": "",
+ "Contact_Person": "Mikel mikelmiller362@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1008 W Pacific, Branson",
+ "Job_Codes": "3087 - Ceilings",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceilings - 1008 W Pacific, Branson - Cole, Mikel",
+ "Job_Name": "Ceilings",
+ "Job_Number": "3087",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3087 - Ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/07/23 2:09 PM Beth Cardoza CO: repair where paneling was taken down---\n06/02/23 5:03 PM Beth Cardoza Job is starting---\n05/16/23 3:20 PM Beth Cardoza Steve Harder called the office to put job on hold as roof was still leaking today. Need to fix roof first! Will call back when ready for us.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3087 - Ceilings - 1008 W Pacific, Branson - Cole, Mikel - Mikel mikelmiller362@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.476Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "43evc4n3y9d2c3i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.841Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLaughlin, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 838-9646",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1206 W Winkler, Spfld",
+ "Job_Codes": "3086 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1206 W Winkler, Spfld - MacLaughlin, Julie",
+ "Job_Name": "Patch",
+ "Job_Number": "3086",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3086 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3086 - Patch - 1206 W Winkler, Spfld - MacLaughlin, Julie - Julie (417) 838-9646 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.553Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "61ncjw0yutt4oyh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:43.961Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mattix, Tyler",
+ "Contact_Notes": "",
+ "Contact_Person": "Tyler 417-315-3053",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4868 State Hwy H, Halfway",
+ "Job_Codes": "3085 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4868 State Hwy H, Halfway - Mattix, Tyler",
+ "Job_Name": "N/A",
+ "Job_Number": "3085",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3085 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/10/23 12:36 PM Beth Cardoza 4868 state highway h\nHalfway no\n65663 \n4173153053---\n05/10/23 12:36 PM Beth Cardoza This house is located in Polk county. I believe all materials is included in the building package. Windows will be trimmed out. I’m wanting a knockdown texture finish. And ceiling just the typical finish.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3085 - N/A - 4868 State Hwy H, Halfway - Mattix, Tyler - Tyler 417-315-3053 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.608Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x3sh0cro2ewci4w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.089Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5924 S Dollison, Spfd",
+ "Job_Codes": "3084 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5924 S Dollison, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "3084",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3084 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/30/23 1:39 PM Beth Cardoza 5924 S. Dollison Springfield, Missouri\n\nNo drywall in the hearth room ceiling, which is the double vaulted one with the fireplace in it. And no drywall on the long hallway entry ceiling.\n\nThree car garage 10 foot high over co\n05/30/23 1:39 PM Beth Cardoza No drywall on the living room fireplace. On the hearth room fireplace. We will put drywall above the 5 foot mark. But not below.---\n05/22/23 8:36 AM david cardoza Stock 11,992\nNo leftover---\n05/09/23 3:42 PM Beth Cardoza 2-3 weeks out.\nNew house.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3084 - N/A - 5924 S Dollison, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.664Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mdazg4rv011ykby",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.217Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Renner, Laura",
+ "Contact_Notes": "",
+ "Contact_Person": "Laura Renner (417) 988-4610",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8206 Oakmont Dr, Nixa",
+ "Job_Codes": "3083 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 8206 Oakmont Dr, Nixa - Renner, Laura",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "3083",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3083 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3083 - Popcorn scrape - 8206 Oakmont Dr, Nixa - Renner, Laura - Laura Renner (417) 988-4610 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.716Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uwao7162fwou963",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.333Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Christenson, Deborah",
+ "Contact_Notes": "",
+ "Contact_Person": "Deborah 417-343-6843",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "607 S Suburban, Spfd",
+ "Job_Codes": "3082 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 607 S Suburban, Spfd - Christenson, Deborah",
+ "Job_Name": "Remodel",
+ "Job_Number": "3082",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3082 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/30/23 1:38 PM Beth Cardoza Not ready until June 13th---\n05/12/23 11:32 AM Beth Cardoza TM---\n05/10/23 4:39 PM Beth Cardoza Eddie viewing on Friday, 12th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3082 - Remodel - 607 S Suburban, Spfd - Christenson, Deborah - Deborah 417-343-6843 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.760Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o4zjh6iid374m1b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.461Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3081 - Counseling Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Counseling Office - - James River Church",
+ "Job_Name": "Counseling Office",
+ "Job_Number": "3081",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3081 - Counseling Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3081 - Counseling Office - - James River Church - Keith - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.800Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8yyc78q186hvpc5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.608Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Strange, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Strange 925-260-2050",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "825 N Grant Ave, Spfd",
+ "Job_Codes": "3080 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 825 N Grant Ave, Spfd - Strange, Mike",
+ "Job_Name": "Remodel",
+ "Job_Number": "3080",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3080 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/10/23 4:35 PM Beth Cardoza TM job---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3080 - Remodel - 825 N Grant Ave, Spfd - Strange, Mike - Mike Strange 925-260-2050 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.848Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6n5rmk0a1i3wtsz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.737Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3079 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3079",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3079 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3079 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.892Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z74jgry1172b2xd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.856Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gammon, Joe",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe (417) 861-8910",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3432 S Glenhaven Ct, Spfd",
+ "Job_Codes": "3078 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 3432 S Glenhaven Ct, Spfd - Gammon, Joe",
+ "Job_Name": "Repair",
+ "Job_Number": "3078",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3078 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/04/23 10:16 AM Beth Cardoza See voxer for info---\n05/03/23 3:02 PM Beth Cardoza Eddie to view Thurs 5/3---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3078 - Repair - 3432 S Glenhaven Ct, Spfd - Gammon, Joe - Joe (417) 861-8910 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.940Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lsug39zk1fc4kr1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:44.969Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kitchenland",
+ "Contact_Notes": "",
+ "Contact_Person": "Barry Albrecht",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3077 - Kitchen Land",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen Land - Ozark - Kitchenland",
+ "Job_Name": "Kitchen Land",
+ "Job_Number": "3077",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3077 - Kitchen Land",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3077 - Kitchen Land - Ozark - Kitchenland - Barry Albrecht - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:38.992Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xdt2qmz2jt2dkv9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.101Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elemoose",
+ "Contact_Notes": "",
+ "Contact_Person": "Sarah Puff",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3076 - JRC Park Trees",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3076%20JRC%20Park%20Trees&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "JRC Park Trees - - Elemoose",
+ "Job_Name": "JRC Park Trees",
+ "Job_Number": "3076",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3076 - JRC Park Trees",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3076 - JRC Park Trees - - Elemoose - Sarah Puff - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.049Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f3xc7bkvune81t2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.213Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Merriam Woods",
+ "Job_Codes": "3075 - Sarah",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Sarah - Merriam Woods - Ozark Mountain Homes",
+ "Job_Name": "Sarah",
+ "Job_Number": "3075",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3075 - Sarah",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/24 2:06 PM Beth Cardoza CO: Merriam woods\n\n2 or 3 outlets in upstairs bedroom. And \n \nNear exhaust vent above island on ceiling slight crack---\n07/15/24 3:31 PM Beth Cardoza Bob still scheduled tomorrow.---\n03/27/24 8:42 AM david cardoza Stock 11,244\nSecond stock 1,584\nTotal stock 12,828\nThree 8’ leftover\nHang 12,732---\n03/26/24 1:10 PM Beth Cardoza Stock: original: 11,824, Angel reports needing another 1,584 \n= 12,828---\n03/26/24 11:44 AM Beth Cardoza It appears that the \"unfinished\" attic room is being finished and it is vaulted with crossbeams that need notched around.---\n02/29/24 4:45 PM Beth Cardoza Getting ready to start. Estimate needs review---\n01/08/24 1:56 PM Beth Cardoza Ready in the next couple of months---\n05/02/23 2:43 PM Beth Cardoza This home has 8 foot walls upstairs and downstairs. Three way window wrap, standard texture and square corners. It is located on Hwy 160 near Merriam Woods.The square footage is noted in the garage of the first floor.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3075 - Sarah - Merriam Woods - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.096Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5xnub314bw46tgt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.341Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3074 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F3074%2E1%20Shop%20%28350%20Sanity%20Place%2C%20Galena%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "3074",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3074 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3074 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.144Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1p15flgob4qj1s1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.473Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1109 E Battlefield Rd Suite A, Spfd",
+ "Job_Codes": "3073 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1109 E Battlefield Rd Suite A, Spfd - Peach Tree",
+ "Job_Name": "N/A",
+ "Job_Number": "3073",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3073 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3073 - N/A - 1109 E Battlefield Rd Suite A, Spfd - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.196Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dufugpui9kulm25",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.593Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Carfield, Bob",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob (417) 546-7612",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "3072 - Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Room - Branson - Carfield, Bob",
+ "Job_Name": "Room",
+ "Job_Number": "3072",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3072 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3072 - Room - Branson - Carfield, Bob - Bob (417) 546-7612 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.244Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "prm3ff0qv3kavwj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.729Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "906 N 7th Ave, Ozark",
+ "Job_Codes": "3071 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 906 N 7th Ave, Ozark - Nav Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "3071",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3071 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/02/23 2:02 PM Beth Cardoza duplicate. same job as 3054---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3071 - N/A - 906 N 7th Ave, Ozark - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "63n7xjapzsmjuq0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.845Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1302 E Bain St, Ozark",
+ "Job_Codes": "3070 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1302 E Bain St, Ozark - Nav Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "3070",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3070 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/02/23 5:30 PM Beth Cardoza TM job---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3070 - N/A - 1302 E Bain St, Ozark - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.348Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fld1ktaovakjf6x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:45.973Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gofarth, Matt",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Gofarth (417) 719-8925",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mountain Grove",
+ "Job_Codes": "3069 - Hotel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hotel - Mountain Grove - Gofarth, Matt",
+ "Job_Name": "Hotel",
+ "Job_Number": "3069",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3069 - Hotel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3069 - Hotel - Mountain Grove - Gofarth, Matt - Matt Gofarth (417) 719-8925 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.400Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "80zwqanmtygwrhu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.089Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Stewart",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "James RIver Church",
+ "Job_Codes": "3068 - Kitchen cooler replacement repairs",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen cooler replacement repairs - James RIver Church - James River Church",
+ "Job_Name": "Kitchen cooler replacement repairs",
+ "Job_Number": "3068",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3068 - Kitchen cooler replacement repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3068 - Kitchen cooler replacement repairs - James RIver Church - James River Church - Keith Stewart - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.457Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "srudyq3h4y4y0qn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.225Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso 417-336-3895",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4238 Hwy 86, Ridgedale",
+ "Job_Codes": "3067 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4238 Hwy 86, Ridgedale - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "3067",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3067 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/16/23 9:32 AM david cardoza Stock 19,412\nLeftover 1,040\n(17-12' and 7-8')\nHang 18,372---\n05/31/23 2:44 PM Beth Cardoza Previous basement stock was 8,300---\n05/15/23 3:15 PM Beth Cardoza Ready to stock upstairs next Thursday the 25th---\n04/25/23 2:23 PM Beth Cardoza 4238 RT-86\nRidgedale, MO 65739\nUnited States\n36.52744° N, 93.30881° W\nThis location is immediately west of the highway 86 bridge where it crosses over the lake.\nThis main level is all trusses, and I think Tom usually likes t\n04/24/23 6:54 PM Beth Cardoza REW measuring tomorrow/Tuesday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173363895",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3067 - N/A - 4238 Hwy 86, Ridgedale - Masterpiece - Tom Caruso 417-336-3895 - 4173363895",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.500Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l0abyuu7zajrnme",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.369Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hornibrook, Jody",
+ "Contact_Notes": "",
+ "Contact_Person": "Jody Hornibrook (417) 294=0193",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "112 Twin Rivers Loop, Kim City",
+ "Job_Codes": "3066 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 112 Twin Rivers Loop, Kim City - Hornibrook, Jody",
+ "Job_Name": "Addition",
+ "Job_Number": "3066",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3066 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/21/23 1:00 PM Beth Cardoza CO?: couple walls by showers need double layer & doorway needs framed out and hung in one side to match width if the other side---\n07/27/23 4:05 PM Beth Cardoza 1 8' sheet purple in one bath, 1-8 and 1-10 in the other bathroom. Return will take about 2 studs if we do it and then an 8\" strip of drywall from Friday.---\n07/12/23 7:11 AM david cardoza Stock 6,672---\n07/18/23 5:59 PM Beth Cardoza This does not match REW receipt. REW billed 8104 sqft---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172940193",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3066 - Addition - 112 Twin Rivers Loop, Kim City - Hornibrook, Jody - Jody Hornibrook (417) 294=0193 - 4172940193",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.552Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vpc4su2wsi1fkzl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.493Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3065 - Hankins Lot 13B",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3065%20Hankins%20Lot%2013B&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hankins Lot 13B - Springfield - Ross Construction Group",
+ "Job_Name": "Hankins Lot 13B",
+ "Job_Number": "3065",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3065 - Hankins Lot 13B",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3065 - Hankins Lot 13B - Springfield - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.600Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0z2wyakgr91hh4n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.621Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "250 Champagne Boulevard Branson, MO 65616",
+ "Job_Codes": "3064 - Branson Fire Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3064%20Branson%20Fire%20Station&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Fire Station - 250 Champagne Boulevard Branson, MO 65616 - Construct",
+ "Job_Name": "Branson Fire Station",
+ "Job_Number": "3064",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3064 - Branson Fire Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3064 - Branson Fire Station - 250 Champagne Boulevard Branson, MO 65616 - Construct - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.648Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5lxmd72n8hg55qq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.749Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3063 - Insulation, Branson Landing",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Insulation, Branson Landing - - Krueger, Paul",
+ "Job_Name": "Insulation, Branson Landing",
+ "Job_Number": "3063",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3063 - Insulation, Branson Landing",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3063 - Insulation, Branson Landing - - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.700Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ikct2088qvws32s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.881Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ravenscraft, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Ravenscraft (314) 578-1130",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5040 S Charleston Ave, Spfd",
+ "Job_Codes": "3062 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 5040 S Charleston Ave, Spfd - Ravenscraft, Julie",
+ "Job_Name": "Repair",
+ "Job_Number": "3062",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3062 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/20/23 10:12 AM Beth Cardoza Temple Remodeling Reference---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "3145781130",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3062 - Repair - 5040 S Charleston Ave, Spfd - Ravenscraft, Julie - Julie Ravenscraft (314) 578-1130 - 3145781130",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.760Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gjfltfv4uimxm7r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:46.995Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3039 State Hwy 176 E, Spokane",
+ "Job_Codes": "3061 - Barnhart Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Barnhart Addition - 3039 State Hwy 176 E, Spokane - Essick, Dusty",
+ "Job_Name": "Barnhart Addition",
+ "Job_Number": "3061",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3061 - Barnhart Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/24 1:56 PM Beth Cardoza CO: Going back to drywall around the tub---\n02/06/24 12:19 PM Beth Cardoza This week?---\n12/06/23 12:55 PM david cardoza Stock 5,706\nLeftover 274\nHang 5,432---\n11/16/23 5:45 PM Beth Cardoza 36°50'37.8\"N 93°15'24.9\"W---\n04/20/23 11:13 AM Beth Cardoza No bullnose, no window wraps, not sure on schedule---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3061 - Barnhart Addition - 3039 State Hwy 176 E, Spokane - Essick, Dusty - Dusty(417) 860-1127 - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.828Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qk8o1wyxs4dhe4o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.109Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highlandville",
+ "Job_Codes": "3060 - Rejda",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3060%20Rejda%20%28Highlandville%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Rejda - Highlandville - Essick, Dusty",
+ "Job_Name": "Rejda",
+ "Job_Number": "3060",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3060 - Rejda",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/19/23 12:16 PM Beth Cardoza Option hanging and finishing the garage portion, and also supplying the drywall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178601127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3060 - Rejda - Highlandville - Essick, Dusty - Dusty(417) 860-1127 - 4178601127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.889Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gx1n2j2upwb44od",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.237Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McDowell, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim McDowell (417) 379-4274",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2676 S Grant Ave, Spfd",
+ "Job_Codes": "3059 - Popcorn Scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn Scrape - 2676 S Grant Ave, Spfd - McDowell, Tim",
+ "Job_Name": "Popcorn Scrape",
+ "Job_Number": "3059",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3059 - Popcorn Scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/02/23 1:55 PM Beth Cardoza Eddie has appointment to view May 3rd---\n04/19/23 11:57 AM Beth Cardoza water damage on ceiling through entire house, 1365sqft, house is in Springfield---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173794274",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3059 - Popcorn Scrape - 2676 S Grant Ave, Spfd - McDowell, Tim - Tim McDowell (417) 379-4274 - 4173794274",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:39.948Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wvhh9wmvwa0jkgz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.357Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ryan",
+ "Contact_Notes": "",
+ "Contact_Person": "Ryan (385) 240-0040",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3058 - Rooms",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rooms - Springfield - Ryan",
+ "Job_Name": "Rooms",
+ "Job_Number": "3058",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3058 - Rooms",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/21/23 2:37 PM Beth Cardoza I’ve called him twice and left messages. -Eddie---\n04/19/23 11:56 AM Beth Cardoza (2) 12x12x8 rooms, house is in Springfield---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "3852400040",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3058 - Rooms - Springfield - Ryan - Ryan (385) 240-0040 - 3852400040",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.000Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oj8m9sxn4brmlr1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.473Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Seneca Companies Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Stuart Jennings",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1720 West Battlefield Road, Springfield, MO 65807",
+ "Job_Codes": "3057 - Hyvee",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3057%20Hyvee&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Hyvee - 1720 West Battlefield Road, Springfield, MO 65807 - Seneca Companies Inc.",
+ "Job_Name": "Hyvee",
+ "Job_Number": "3057",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3057 - Hyvee",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3057 - Hyvee - 1720 West Battlefield Road, Springfield, MO 65807 - Seneca Companies Inc. - Stuart Jennings - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.048Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l634qvbklo4y7gc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.585Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3056 - Branson Landing General",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Branson Landing General - - Krueger, Paul",
+ "Job_Name": "Branson Landing General",
+ "Job_Number": "3056",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3056 - Branson Landing General",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/19/23 1:33 PM Beth Cardoza CO: Foam insulation---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3056 - Branson Landing General - - Krueger, Paul - Paul 417-337-3077 - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.096Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zzj13qtzn90g2aq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.708Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Malenowsky, Trish",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 872-9373",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3368 N FR 125, Spfld",
+ "Job_Codes": "3055 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 3368 N FR 125, Spfld - Malenowsky, Trish",
+ "Job_Name": "Garage",
+ "Job_Number": "3055",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3055 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/12/23 11:21 AM Beth Cardoza Client not responsive.---\n04/17/23 10:30 AM Beth Cardoza Eddie and Stephanie have an appointment to look at it Friday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3055 - Garage - 3368 N FR 125, Spfld - Malenowsky, Trish - (417) 872-9373 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.148Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i67qqlwhad2j98t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.845Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "906 N 7th Ave, Ozark",
+ "Job_Codes": "3054 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 906 N 7th Ave, Ozark - Nav Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "3054",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3054 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3054 - Repairs - 906 N 7th Ave, Ozark - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.193Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8yvg8vg0y3hu77v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:47.960Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King Buit",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad King",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Village at Indian Point, Table Rock lake",
+ "Job_Codes": "3053 - Argonaut",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3053%20King%20Built%20Argonaut&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Argonaut - Village at Indian Point, Table Rock lake - King Buit",
+ "Job_Name": "Argonaut",
+ "Job_Number": "3053",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#3053 - Argonaut",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 2:32 PM Beth Cardoza Sent email to follow up 1/21/25---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#3053 - Argonaut - Village at Indian Point, Table Rock lake - King Buit - Brad King - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.245Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rll67wn1i5g040z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.072Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "269 Wisteria Ln, Ozark",
+ "Job_Codes": "3052 - Southernview Lot 4",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Southernview Lot 4 - 269 Wisteria Ln, Ozark - King, Brad",
+ "Job_Name": "Southernview Lot 4",
+ "Job_Number": "3052",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3052 - Southernview Lot 4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/24/23 11:05 AM Beth Cardoza Three car garage over concrete at 10 1/2 feet high\n\nTwo-story house. Main level is a combination of nine and 10 foot flat except:\n\nFront bedroom is a double vaulted ceiling at 13 1/2 feet high no X crack\n\nthe back bedroom is",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3052 - Southernview Lot 4 - 269 Wisteria Ln, Ozark - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.304Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xwk39cjdh4j9r4d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.180Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lopez, Randy",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 425-8991",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3051 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - Lopez, Randy",
+ "Job_Name": "N/A",
+ "Job_Number": "3051",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3051 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/02/23 1:37 PM Beth Cardoza Rick left vm. No response. He's a contractor. He may call at some point---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3051 - N/A - - Lopez, Randy - (417) 425-8991 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.364Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lxm96gdxxy0y5x6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.292Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle 417-860-3628",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3624 S Elmview, Spfd",
+ "Job_Codes": "3050 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 3624 S Elmview, Spfd - Dowell, Kyle",
+ "Job_Name": "Garage",
+ "Job_Number": "3050",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3050 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/17/23 2:16 PM Beth Cardoza Ready to stock next Wednesday, 23rd---\n08/17/23 2:15 PM Beth Cardoza Estimate waiting on board count or drawings---\n05/04/23 10:12 AM Beth Cardoza Had a delay to do with gas line and the city. Still 6-8 weeks out at least---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3050 - Garage - 3624 S Elmview, Spfd - Dowell, Kyle - Kyle 417-860-3628 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.409Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f0kee053b8ew4n0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.392Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Regas Contracting",
+ "Contact_Notes": "",
+ "Contact_Person": "Lead: Jennifer Hernandez Bid Coordinator",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jennifer@regas.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2915 West 76 Country Boulevard, Branson, MO 65616",
+ "Job_Codes": "3049 - Chick-fil-A",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3049%20Chick%2DFil%2DA&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Chick-fil-A - 2915 West 76 Country Boulevard, Branson, MO 65616 - Regas Contracting",
+ "Job_Name": "Chick-fil-A",
+ "Job_Number": "3049",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3049 - Chick-fil-A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "2812404777",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3049 - Chick-fil-A - 2915 West 76 Country Boulevard, Branson, MO 65616 - Regas Contracting - Lead: Jennifer Hernandez Bid Coordinator - 2812404777",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.460Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "odi471uq9z66amv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.513Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Titan, Dewayne",
+ "Contact_Notes": "",
+ "Contact_Person": "Dewayne(417) 559-0423",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3048 - Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office - - Titan, Dewayne",
+ "Job_Name": "Office",
+ "Job_Number": "3048",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3048 - Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/02/23 1:34 PM Beth Cardoza Didn't hear back. Dad left him a voicemail 4/12---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3048 - Office - - Titan, Dewayne - Dewayne(417) 559-0423 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j0w69q99vsl6c3t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.621Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1974 Little Aunts Creek, Kim City",
+ "Job_Codes": "3047 - Dyer",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Dyer - 1974 Little Aunts Creek, Kim City - King, Brad",
+ "Job_Name": "Dyer",
+ "Job_Number": "3047",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3047 - Dyer",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/23/24 12:51 PM Beth Cardoza CO: Little aunts creek road has patch at top of ladder ( I think in the carriage house) see pictures \n As well as they need ceiling tiles completed in that basement utility room. \nNot sure if there are remaining tiles there\n01/03/24 10:54 AM Beth Cardoza CO: more patches in carriage house. Probably will do Friday---\n11/20/23 2:35 PM Beth Cardoza CO:We need to patch around the copper. In carriage house.\nSee photo in voxer---\n10/18/23 11:44 AM Beth Cardoza Estimated through October 13th labor for utility room & billable patches. There's more touchups to come... may not be billable? Not sure---\n10/05/23 3:51 PM Beth Cardoza CO: \n\nThe room in the basement that they furred out where the foam insulation was is ready for us to hang and complete. Basically it’s one wall. 3-8’ sheets. The other three walls already hung. This is the utility room in the\n10/06/23 12:59 PM Beth Cardoza That furnace room is 10 1/2 feet long by 8 foot wide.\nAnd I guess the drop ceiling will be a little under 8 feet high. So we would need a material count for that for the grid ceiling. I’ll attach two videos. I’m sending to B\n10/04/23 9:19 AM Beth Cardoza CO: More patches in carriage house---\n09/19/23 11:09 AM Beth Cardoza New CO: need drywall on top of built in bunk beds---\n09/19/23 11:30 AM Beth Cardoza Jeremy has not finished the scope he started on Monday yet either (approx 5 more hours worth of work on that scope)---\n09/15/23 4:07 PM Beth Cardoza Jeremy is scheduled for Monday afternoon.\n\nSo Brad’s guys remove the drywall and fix the framing for us.\n\nI am guessing three sheets of 8 foot half-inch drywall. And bring three pieces of 10 foot metal cornerbead.---\n09/13/23 1:24 PM Beth Cardoza Bob doing some work there tomorrow---\n08/24/23 3:17 PM Beth Cardoza CO?: backside of a doorway---\n08/17/23 5:50 PM Beth Cardoza CO:? I need a drywall return on all shower doors. In the future. This is the carriage house at dyer \nBrad King\nLittle Aunts Creek Rd---\n08/09/23 4:00 PM Beth Cardoza More billable repairs need to be done\n\nThey remove the chase that we have to hang tape and finish. \n\nSome patches, on one wall\n\nSome drywall that has to be hung over a doorway on another wall. See pictures.---\n06/27/23 1:56 PM Beth Cardoza CO:basement utility room: Furr out and hang & finish. Also possibly install suspended gyp ceiling in there too---\n06/28/23 9:23 AM Beth Cardoza Here’s Dave’s description from scheduling vox:\n\nBrad king job 3047 on little aunts rd\n\nNeeds more framing, patches, etc\n\nUtility room in basement :\n- fur out back wall , hang, finish\n- drop ceiling to go under pipes, plumbing\n06/27/23 1:54 PM Beth Cardoza CO: Nitch off the hallway to secondary bedrooms. Furr out and hang and finish on left side to match 3” depth of the right side---\n06/27/23 1:53 PM Beth Cardoza CO: Basement bathroom wall \nFrame, hang , finish \n32” off door wall \n36” off dryer vent wall\nTo the ceiling 9’---\n06/05/23 2:35 PM Beth Cardoza CO: We supply board on carriage house---\n06/02/23 3:18 PM Beth Cardoza CO: wallpaper in bathroom? Waiting to find out what we are doing but may need to be change ordered---\n05/18/23 9:37 AM Beth Cardoza CO: they needed to extend a wall a few inches to connect to a vertical support post where they added an outlet.---\n06/02/23 3:18 PM Beth Cardoza created change order for Clay's 5 hours on 5/23---\n05/18/23 9:28 AM Beth Cardoza CO: frame and hang and finish pocket door, changed to regular door on bedroom on the left in basement---\n05/18/23 9:29 AM Beth Cardoza Probably sending Clay for that---\n05/11/23 5:05 PM Beth Cardoza CO: for fuel for forklift and for gas cans from O'Reilly's on credit card.---\n04/27/23 9:34 AM Beth Cardoza CO: fixing framing---\n04/27/23 2:36 PM Beth Cardoza Some hanging with that hourly. Rick to figure out how to bill. at end of the job before finally billing---\n04/21/23 12:33 PM Beth Cardoza Updated specifics as of 4/21:\n\nSquare \nOrange peel everywhere\n3 way windows \nBrad---\n04/21/23 12:40 PM Beth Cardoza CO: 3 way window wraps. Waiting on window count---\n04/21/23 6:27 AM david cardoza Stock house ( not the carriage house) 23,468\n\n6,576 sf.\nBasement delivery. \n\n---------\nPaying some hourly to David the hanger.For hanging and framing repairs.\n\nHang bonus room over the garage\n 32 hours\n\n5/3 hang high work: 2\n04/12/23 10:30 AM Beth Cardoza 1974 Little Aunts Creek Rd.\n\n36.6441, -93.4772\n\nThree car garage at 9 foot over concrete. This garage and probably this property was pre-existing and has been mainly torn down but this garage has some nails and stuff from w",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3047 - Dyer - 1974 Little Aunts Creek, Kim City - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.560Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ywp3nx2np6gwdnn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2306 Weller Ave, Spfd",
+ "Job_Codes": "3046 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2306 Weller Ave, Spfd - Temple Remodeling",
+ "Job_Name": "Patch",
+ "Job_Number": "3046",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3046 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3046 - Patch - 2306 Weller Ave, Spfd - Temple Remodeling - Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.612Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r2azlcuw8jwc3ym",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:48.884Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Connected Counseling Services",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Staples (980-939-2152",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1759 E Elm St, Spfd",
+ "Job_Codes": "3045 - Soundproofing",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Soundproofing - 1759 E Elm St, Spfd - Connected Counseling Services",
+ "Job_Name": "Soundproofing",
+ "Job_Number": "3045",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3045 - Soundproofing",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/31/23 12:45 PM Beth Cardoza New painting scope. scheduled for Thursday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3045 - Soundproofing - 1759 E Elm St, Spfd - Connected Counseling Services - Nathan Staples (980-939-2152 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.672Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sjf4piq7j84b4o8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.009Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highlandville?",
+ "Job_Codes": "3044 - Woods Pool House",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3044%20Woods%20Pool%20House%20%28Highlandville%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Woods Pool House - Highlandville? - Essick, Dusty",
+ "Job_Name": "Woods Pool House",
+ "Job_Number": "3044",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3044 - Woods Pool House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3044 - Woods Pool House - Highlandville? - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.724Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3jvna6vuga2m663",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.141Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Opfer, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "Jody 417-773-2000",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "253 Silver Bell Ln, Kim City",
+ "Job_Codes": "3043 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 253 Silver Bell Ln, Kim City - Opfer, Scott",
+ "Job_Name": "N/A",
+ "Job_Number": "3043",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3043 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/21/23 1:21 PM Beth Cardoza Also There's a wall between the bedroom and the living room with a patch on one side and the whole wall not hung on the other side that was delayed or board cut out. Plus they are moving lights and the showers weren't hung ri\n04/21/23 1:16 PM Beth Cardoza Skimming all existing. Rick told Scott that it would be probably $600 or $800 more---\n04/20/23 12:35 PM Beth Cardoza Review before billing. May need change orders---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3043 - N/A - 253 Silver Bell Ln, Kim City - Opfer, Scott - Jody 417-773-2000 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.776Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f6zkgg5c3959yfn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.268Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ewing, Abigail",
+ "Contact_Notes": "",
+ "Contact_Person": "Abigail Ewing (417) 894-7208",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "152 Lilac Ln, Rogersville",
+ "Job_Codes": "3042 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 152 Lilac Ln, Rogersville - Ewing, Abigail",
+ "Job_Name": "N/A",
+ "Job_Number": "3042",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3042 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/22/23 2:34 PM david cardoza First stock REW 4,328\nSecond stock will call at FBM---1,600\nTotal stock 5,928\nLeftover 160\nHang 5,768---\n08/21/23 12:16 PM Beth Cardoza Mr. Ewing just got out of the hospital. We might need to do some backing and stuff. May need to charge for some of that.---\n08/07/23 10:23 AM Beth Cardoza Per Eddie Friday Aug 4\n\nAll 10’ flat\nNo garage\nSquare bead\n4 way window wraps\nPatio doors wrap\nShower to get cement board installed by owner. ( to the ceiling?)\nOwner requested to leave all masking on after texture.---\n07/18/23 11:25 AM Beth Cardoza We are hanging and supplying drywall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3042 - N/A - 152 Lilac Ln, Rogersville - Ewing, Abigail - Abigail Ewing (417) 894-7208 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.825Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bnw4ogp79ho1zbu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.393Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Russo, Jenny",
+ "Contact_Notes": "",
+ "Contact_Person": "Jenny (417) 861-3381",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "700 E Catalpa, Spfd",
+ "Job_Codes": "3041 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 700 E Catalpa, Spfd - Russo, Jenny",
+ "Job_Name": "Repairs",
+ "Job_Number": "3041",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3041 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3041 - Repairs - 700 E Catalpa, Spfd - Russo, Jenny - Jenny (417) 861-3381 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.884Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2kat033gb5bpvck",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.529Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Evangel Athletics",
+ "Contact_Notes": "",
+ "Contact_Person": "Heather McGuire",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3040 - Evangel Athletics bathroom remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Evangel Athletics bathroom remodel - - Evangel Athletics",
+ "Job_Name": "Evangel Athletics bathroom remodel",
+ "Job_Number": "3040",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3040 - Evangel Athletics bathroom remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3040 - Evangel Athletics bathroom remodel - - Evangel Athletics - Heather McGuire - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.936Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p5bd44n5wsr67kf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.637Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kronholm",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2864 S Nettleton Ave, Springfield, Mo",
+ "Job_Codes": "3039 - Arc of the Ozarks Office Remodel",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3039%20Arc%20of%20the%20Ozarks&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Arc of the Ozarks Office Remodel - 2864 S Nettleton Ave, Springfield, Mo - Q and Co.",
+ "Job_Name": "Arc of the Ozarks Office Remodel",
+ "Job_Number": "3039",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3039 - Arc of the Ozarks Office Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3039 - Arc of the Ozarks Office Remodel - 2864 S Nettleton Ave, Springfield, Mo - Q and Co. - Justin Kronholm - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:40.993Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ngsyto3yltazs2g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.745Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2033 N Empoli Ct, Nixa",
+ "Job_Codes": "3038 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2033 N Empoli Ct, Nixa - Pitts, Doug",
+ "Job_Name": "Repairs",
+ "Job_Number": "3038",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3038 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/06/23 10:59 AM Beth Cardoza Dave is looking at it to see what is needed---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3038 - Repairs - 2033 N Empoli Ct, Nixa - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.061Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ztn1nisbd7zo03h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.864Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "3037 - Park Stage Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Park Stage Renovation - Ozark - James River Church",
+ "Job_Name": "Park Stage Renovation",
+ "Job_Number": "3037",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3037 - Park Stage Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3037 - Park Stage Renovation - Ozark - James River Church - Keith - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.118Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "arhe18ay3m3v7kh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:49.973Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1310 E. St. Louis",
+ "Job_Codes": "3036 - St. Louis St. Apartments",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "St. Louis St. Apartments - 1310 E. St. Louis - Construct",
+ "Job_Name": "St. Louis St. Apartments",
+ "Job_Number": "3036",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3036 - St. Louis St. Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:42 AM Beth Cardoza Construct Not awarded contract.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3036 - St. Louis St. Apartments - 1310 E. St. Louis - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.174Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fvwuxascch8a92z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.085Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Draper, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim (417) 844-7501 Wife number: (417) 844-7521",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "451 Hidden Creek Dr, Ozark",
+ "Job_Codes": "3035 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 451 Hidden Creek Dr, Ozark - Draper, Tim",
+ "Job_Name": "Patch",
+ "Job_Number": "3035",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3035 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/06/23 11:00 AM Beth Cardoza Eddie viewing today---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3035 - Patch - 451 Hidden Creek Dr, Ozark - Draper, Tim - Tim (417) 844-7501 Wife number: (417) 844-7521 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.217Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cfn54th0osfinw7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.209Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3034 - #75BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#75BC - Branson Cove - Still, Mark",
+ "Job_Name": "#75BC",
+ "Job_Number": "3034",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3034 - #75BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3034 - #75BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.269Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s28v6aa9shznz2m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.321Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Van Lang, Raphael",
+ "Contact_Notes": "",
+ "Contact_Person": "Raphael 629 246 3026",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "9875 W FR 84, Willard",
+ "Job_Codes": "3033 - Barndominium",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Barndominium - 9875 W FR 84, Willard - Van Lang, Raphael",
+ "Job_Name": "Barndominium",
+ "Job_Number": "3033",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3033 - Barndominium",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/12/24 11:16 AM david cardoza stock 7472\nLeftover 200\nHang 7,272---\n02/01/24 4:02 PM Beth Cardoza Possible change order: deduct for L3 wall for wallpaper in a bedroom.---\n01/05/24 2:03 PM Beth Cardoza Ready for drywall beginning of February. Estimate updates needed---\n01/05/24 4:38 PM Beth Cardoza Look for email with plan corrections. Have house walked and measured.---\n04/03/23 2:52 PM Beth Cardoza Green county. Looking for bid for framing and drywall (steel frame?)---\n04/03/23 3:43 PM Beth Cardoza Nevermind about the framing. They'll just do wood framing and find someone to do that. Square corners, smooth walls (probably L5). Checking about window wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3033 - Barndominium - 9875 W FR 84, Willard - Van Lang, Raphael - Raphael 629 246 3026 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.321Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sa6of77hp6wk1ap",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.436Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Poindexter Project Manager",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bpoindexter@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "511 South Neosho Boulevard, Neosho, MO 64850",
+ "Job_Codes": "3032 - Neosho High School Locker Room Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3032%20Neosho%20HS%20Locker%20Room&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Neosho High School Locker Room Renovation - 511 South Neosho Boulevard, Neosho, MO 64850 - Branco",
+ "Job_Name": "Neosho High School Locker Room Renovation",
+ "Job_Number": "3032",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3032 - Neosho High School Locker Room Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174562024",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3032 - Neosho High School Locker Room Renovation - 511 South Neosho Boulevard, Neosho, MO 64850 - Branco - Brandon Poindexter Project Manager - 4174562024",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.409Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "035zexgxjnfxv3u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.589Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Embree Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brett Thomason ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bthomason@embreegroup.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4141 S Campbell Ave.",
+ "Job_Codes": "3031 - Bank Of America Remodel - Springfield, MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3031%20Embree%20%28Bank%20Of%20America%2C%20Spfd%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bank Of America Remodel - Springfield, MO - 4141 S Campbell Ave. - Embree Construction",
+ "Job_Name": "Bank Of America Remodel - Springfield, MO",
+ "Job_Number": "3031",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3031 - Bank Of America Remodel - Springfield, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5128194931",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3031 - Bank Of America Remodel - Springfield, MO - 4141 S Campbell Ave. - Embree Construction - Brett Thomason - 5128194931",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.465Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r0b655ra72zm0vd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.717Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2801 North General Aviation Avenue, Springfield, MO 65803",
+ "Job_Codes": "3030 - General Aviation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3030%20General%20Aviation&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "General Aviation - 2801 North General Aviation Avenue, Springfield, MO 65803 - Nabholtz",
+ "Job_Name": "General Aviation",
+ "Job_Number": "3030",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3030 - General Aviation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3030 - General Aviation - 2801 North General Aviation Avenue, Springfield, MO 65803 - Nabholtz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.521Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gj7i6l908xnvhgm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:50.909Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "603 Tucker Bay, Nixa",
+ "Job_Codes": "3029 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 603 Tucker Bay, Nixa - Larsen, Steve",
+ "Job_Name": "Repairs",
+ "Job_Number": "3029",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3029 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3029 - Repairs - 603 Tucker Bay, Nixa - Larsen, Steve - Steve 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.581Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w70rt11o0xjyaas",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nienhuser, Paula",
+ "Contact_Notes": "",
+ "Contact_Person": "Paula 573-525-8808",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "718 S Mumford Cir, Spfd",
+ "Job_Codes": "3028 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 718 S Mumford Cir, Spfd - Nienhuser, Paula",
+ "Job_Name": "Patches",
+ "Job_Number": "3028",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3028 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/31/23 4:36 PM Beth Cardoza Tentatively scheduled for April 14th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3028 - Patches - 718 S Mumford Cir, Spfd - Nienhuser, Paula - Paula 573-525-8808 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.632Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1ifruddp06zfrfk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.181Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mulyk, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew bmwz10@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1024 State Hwy JJ, Sparta",
+ "Job_Codes": "3027 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1024 State Hwy JJ, Sparta - Mulyk, Andrew",
+ "Job_Name": "N/A",
+ "Job_Number": "3027",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3027 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 4:36 PM Beth Cardoza Assumed not awarded since it was almost ready in March and we never heard back---\n03/31/23 5:18 PM Beth Cardoza Dave walkthrough notes 3/31/23 Three car garage over concrete at a little under 10 foot\nMost of the house is 9 foot flat.\nThere is a bonus room over the garage. 9 foot high. Figure about 70 feet of xcrack.\nHe would have us do",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3027 - N/A - 1024 State Hwy JJ, Sparta - Mulyk, Andrew - Andrew bmwz10@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.680Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "71pwfps5b4f8ckb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.325Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3026 - #79BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#79BC - Branson Cove - Still, Mark",
+ "Job_Name": "#79BC",
+ "Job_Number": "3026",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3026 - #79BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3026 - #79BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.737Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n9jgm4bdkzr85ku",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.469Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3025 - #78BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#78BC - Branson Cove - Still, Mark",
+ "Job_Name": "#78BC",
+ "Job_Number": "3025",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3025 - #78BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3025 - #78BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.785Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sarzh4grg2b0fhj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.589Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "3024 - #76BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#76BC - Branson Cove - Still, Mark",
+ "Job_Name": "#76BC",
+ "Job_Number": "3024",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3024 - #76BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3024 - #76BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.840Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2wcuq11x6l6jh1g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.749Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Trendsetter",
+ "Contact_Notes": "",
+ "Contact_Person": "Patrice (417)210-7900",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1051 E Daisy Falls, Nixa",
+ "Job_Codes": "3023 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1051 E Daisy Falls, Nixa - Trendsetter",
+ "Job_Name": "Patch",
+ "Job_Number": "3023",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3023 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/30/23 2:55 PM Beth Cardoza She called right back just after I created the job to cancel the job for some reason.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3023 - Patch - 1051 E Daisy Falls, Nixa - Trendsetter - Patrice (417)210-7900 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.888Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2zssdurfmrpc72i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.865Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "3022 - KO Storage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F3022%20Construct%20%28KO%20Storage%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "KO Storage - Springfield - Construct",
+ "Job_Name": "KO Storage",
+ "Job_Number": "3022",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3022 - KO Storage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/04/25 1:56 PM Beth Cardoza CO: fixing doors. Jacob 27th. 1.5 hours---\n04/04/25 3:37 PM Beth Cardoza Will probably charge more for his travel time or whatever.---\n04/04/25 3:45 PM Beth Cardoza Will go with TM billing---\n04/04/25 3:37 PM Beth Cardoza CO: fire caulking. TM---\n01/27/25 10:35 AM Beth Cardoza construct combo padlock at KO is 1950. we will use the west entrance near dumpster to get into site from now on. if your guys are last one to leave please close gate and padlock and spin some numbers. please advise your pe\n01/21/25 2:18 PM Beth Cardoza CO: Change from Firetape firewalls to 2 coat (maybe L3). Check budgets first.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3022 - KO Storage - Springfield - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:41.936Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c4wxuyck1onosxa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:51.985Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jayger Construction Group, LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Simon Potter Project Coordinator ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "simon@jaygerllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "600 South Glenstone Avenue, Springfield, MO 6580",
+ "Job_Codes": "3021 - Take 5 Car Wash Springfield",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3021%20Take%205%20Carwash&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Take 5 Car Wash Springfield - 600 South Glenstone Avenue, Springfield, MO 6580 - Jayger Construction Group, LLC",
+ "Job_Name": "Take 5 Car Wash Springfield",
+ "Job_Number": "3021",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3021 - Take 5 Car Wash Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3021 - Take 5 Car Wash Springfield - 600 South Glenstone Avenue, Springfield, MO 6580 - Jayger Construction Group, LLC - Simon Potter Project Coordinator - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.178Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tdh01ys7qhu14oc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.100Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "3020 - LWH 13",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 13 - Spfd - Everlasting Homes",
+ "Job_Name": "LWH 13",
+ "Job_Number": "3020",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3020 - LWH 13",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/13/23 11:31 AM Beth Cardoza CO: electrical patches in both bathrooms---\n04/22/23 7:55 AM david cardoza Stock 11,130\nLeftover 408\nHang 10,722---\n04/20/23 1:23 PM Beth Cardoza LWH 13\nThree car garage, 10 foot over concrete. \nSingle level house. About half of it is 9 foot flat. \nThe entry, formal dining room off the entry, and main living area is all 11 foot flat. \nThe master bedroom is double vaul\n04/19/23 3:37 PM Beth Cardoza REW count: 11,130---\n03/29/23 12:08 PM Beth Cardoza Estimate waiting on info---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3020 - LWH 13 - Spfd - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.258Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4e9g5hnoj2huqx5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.236Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Walter, David",
+ "Contact_Notes": "",
+ "Contact_Person": "David Walter (417) 521-4316",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1121 Tennessee Rd, Ozark",
+ "Job_Codes": "3019 - Shed",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Shed - 1121 Tennessee Rd, Ozark - Walter, David",
+ "Job_Name": "Shed",
+ "Job_Number": "3019",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3019 - Shed",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/29/23 11:30 AM Beth Cardoza 29' x 27' 9' ceiling in shed. Plus probably a toilet room about the size of a small closet. Treebark texture on ceiling. Ready now. TM okay. Thinking maybe 3/8\" drywall. If more expensive for some reason 1/2\" is okay. Which",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3019 - Shed - 1121 Tennessee Rd, Ozark - Walter, David - David Walter (417) 521-4316 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.322Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "85i62x0y9k8nkgn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.348Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Poindexter ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bpoindexter@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "511 South Neosho Boulevard, Neosho, MO 64850",
+ "Job_Codes": "3018 - Neosho High School Locker Room",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3018%20Branco%20%28Neosho%20HS%20Locker%20room%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Neosho High School Locker Room - 511 South Neosho Boulevard, Neosho, MO 64850 - Branco",
+ "Job_Name": "Neosho High School Locker Room",
+ "Job_Number": "3018",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3018 - Neosho High School Locker Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174562024",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3018 - Neosho High School Locker Room - 511 South Neosho Boulevard, Neosho, MO 64850 - Branco - Brandon Poindexter - 4174562024",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.390Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "adolyj45yduwpcr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.456Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "estimating@federalconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2900 North Barnes Avenue, Springfield, MO 65803",
+ "Job_Codes": "3017 - Crossway Baptist Church Children's Wing",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F3017%20Crossway%20Baptist%20Church%20Childrens%20Wing&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Crossway Baptist Church Children's Wing - 2900 North Barnes Avenue, Springfield, MO 65803 - Federal Construction",
+ "Job_Name": "Crossway Baptist Church Children's Wing",
+ "Job_Number": "3017",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3017 - Crossway Baptist Church Children's Wing",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178620622",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3017 - Crossway Baptist Church Children's Wing - 2900 North Barnes Avenue, Springfield, MO 65803 - Federal Construction - - 4178620622",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.467Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2s2vo3bmw33duh9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.572Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kasap, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John (731) 345-9860",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5388 N FR 223, Strafford",
+ "Job_Codes": "3016 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5388 N FR 223, Strafford - Kasap, John",
+ "Job_Name": "N/A",
+ "Job_Number": "3016",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3016 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 4:37 PM Beth Cardoza Assumed not awarded. Never heard back---\n03/29/23 10:49 AM Beth Cardoza We are looking for a smooth level 5 finish.\nSquare corners\nwindow wrap on 3 sides.\nand we will need to hang a cold wall ceiling for the spray ceiling insulation.---\n03/30/23 9:51 AM Beth Cardoza He had told Dave 4 way wraps, but he again emailed and confirmed last night: \"Hi David, we do want window sills, so need to have the window wrap on 3 sides. \nSorry for the change.\"---\n03/29/23 10:20 AM Beth Cardoza Dave walkthrough notes 3/29/23:\n\n5388 North Farm Road 223\nStrafford, Mo. \n\nSingle level house. Two door garage over concrete at 11 foot. \n\nMost of the house is 10 foot flat except the main living area is 11 foot. \n\nGarage do",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3016 - N/A - 5388 N FR 223, Strafford - Kasap, John - John (731) 345-9860 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.567Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1594erxl6ugtjm6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crane, Anthony",
+ "Contact_Notes": "",
+ "Contact_Person": "Anthony Crane (417) 288-8363",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1388 Hodges Rd, Sparta",
+ "Job_Codes": "3015 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 1388 Hodges Rd, Sparta - Crane, Anthony",
+ "Job_Name": "Addition",
+ "Job_Number": "3015",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3015 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/31/23 2:26 PM Beth Cardoza Eddie to view Monday morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3015 - Addition - 1388 Hodges Rd, Sparta - Crane, Anthony - Anthony Crane (417) 288-8363 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.635Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n4zulpbt8vtnb8r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:52.861Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "eric@frigainc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "3014 - Republic Builds",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Republic Builds - - Friga Construction",
+ "Job_Name": "Republic Builds",
+ "Job_Number": "3014",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3014 - Republic Builds",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#3014 - Republic Builds - - Friga Construction - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.702Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s9w1vk1vuns4rhw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.009Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fiedler, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Fiedler (417) 268-8798",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "889 W Pecan Ln, Nixa",
+ "Job_Codes": "3013 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 889 W Pecan Ln, Nixa - Fiedler, Mike",
+ "Job_Name": "Repairs",
+ "Job_Number": "3013",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3013 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3013 - Repairs - 889 W Pecan Ln, Nixa - Fiedler, Mike - Mike Fiedler (417) 268-8798 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.778Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1p84cfhpl6rwlt0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.117Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy Smith (417) 598-0828",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "705 Wilson St, Branson",
+ "Job_Codes": "3012 - Spec",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spec - 705 Wilson St, Branson - Vision Construction",
+ "Job_Name": "Spec",
+ "Job_Number": "3012",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3012 - Spec",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/22/23 6:45 AM david cardoza Stock 7,344---\n06/15/23 9:42 AM Beth Cardoza Dave walkthrough notes:\n\nStandard simple, three bedroom house. \nAll 8 foot high ceilings. \nPhil from Rew will measure it but probably around 8500 feet. \nShowers will get purple board up to the ceiling for Tile. \nThree-way win\n06/14/23 4:02 PM Beth Cardoza We supply drywall---\n04/05/23 10:00 AM Beth Cardoza 8’ walls, square corners, 3 way window wrap, cheapest texture you can\ndo. This plan shows stairs but my house is on a slab the stairway area\nis now a 1/2 bathroom.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3012 - Spec - 705 Wilson St, Branson - Vision Construction - Jeremy Smith (417) 598-0828 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.846Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dnpsvf6pgtbdr0h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.233Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3011 - #47RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#47RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#47RS",
+ "Job_Number": "3011",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3011 - #47RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/28/23 5:09 PM david cardoza 12,778\nUpdate ftg \nCorrect ftg 13,744---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3011 - #47RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:42.937Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "olp0du3i85tg8af",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.353Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3010 - #46RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#46RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#46RS",
+ "Job_Number": "3010",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3010 - #46RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/21/23 7:30 AM david cardoza 13,744---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3010 - #46RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.034Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h3db9kc31w3vm7z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.489Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3009 - #45RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#45RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#45RS",
+ "Job_Number": "3009",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3009 - #45RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/21/23 7:29 AM david cardoza Stock 13,774\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3009 - #45RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.147Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1qlsxddt1rg3wai",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.613Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3008 - #44RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#44RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#44RS",
+ "Job_Number": "3008",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3008 - #44RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/15/23 9:02 AM david cardoza Stock 12,850\nSecond stock 144\nTotal stock 12,994---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3008 - #44RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.206Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jcqmobhhqysak37",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.725Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3007 - #43RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#43RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#43RS",
+ "Job_Number": "3007",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3007 - #43RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/13/23 11:26 AM Beth Cardoza CO: small repair from moving a light. 9' ceiling---\n06/14/23 8:46 AM david cardoza Stock 13,774\nno leftover.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3007 - #43RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.250Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2mpr59e7x9h84zk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.832Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3006 - #42RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#42RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#42RS",
+ "Job_Number": "3006",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3006 - #42RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/17/23 7:32 AM david cardoza Stock 13,744---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3006 - #42RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.307Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6e8d9dmuzkzgz5z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:53.961Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3005 - #41RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#41RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#41RS",
+ "Job_Number": "3005",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3005 - #41RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/26/23 12:00 PM david cardoza Stock 13,774\nLeftover 128\nHang 13,646---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3005 - #41RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.402Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9lv2egldcthyuz7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.069Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3004 - #40RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#40RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#40RS",
+ "Job_Number": "3004",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3004 - #40RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/26/23 11:59 AM david cardoza Stock 13,774\nno leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3004 - #40RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.462Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lgv4ngkikms74sw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.189Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3003 - #37 RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#37 RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#37 RS",
+ "Job_Number": "3003",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3003 - #37 RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/18/23 9:38 AM Beth Cardoza CO: Brackets---\n04/27/23 11:35 AM Beth Cardoza CO for 10 hours for finisher?---\n04/19/23 7:13 AM david cardoza original stock 13,774\nsecond stock 384\nTotal stock 14,158---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3003 - #37 RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.519Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kgd0hi129b6e2l4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.327Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "3002 - #36RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#36RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#36RS",
+ "Job_Number": "3002",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3002 - #36RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/06/23 6:26 AM david cardoza Stock 16,416\nAssume is the same as #35. Same plan. \nNo leftover.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3002 - #36RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.579Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p5qgnhi8d7th69e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.449Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Park, Deana",
+ "Contact_Notes": "",
+ "Contact_Person": "Deana (660) 525-0437",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "119 King's Ct, Ozark",
+ "Job_Codes": "3001 - Ammons Tape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ammons Tape - 119 King's Ct, Ozark - Park, Deana",
+ "Job_Name": "Ammons Tape",
+ "Job_Number": "3001",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "3001 - Ammons Tape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/04/23 4:07 PM Beth Cardoza Rew delivery truck broke sewer cover. Splitting cost with Rew. See attached invoice.---\n04/12/23 12:47 PM david cardoza Stock 15,876\nAdditional stock by shop 320\nTotal stock 16,196\nLeftover 356\nFinal hang 15,840\n-----------\nPay finishers extra ftg for cold wall that had been previously hung by the owner. This was not drywall we had stocked.\n\n03/29/23 10:34 AM Beth Cardoza I just know the small study height is the highest. Then the master and great room is the other 2 rooms I'm not sure about the height. roof pitch is 10/12. We are leaving today and will be back late Thursday night, or Friday\n03/28/23 11:50 AM Beth Cardoza Waiting for info on finish and window wraps and corners and address---\n03/28/23 11:50 AM Beth Cardoza The mech/storage room will only need sheetrock on the dividing support wall and the door opening (east) side wall. (Not the concrete walls.)\nThe storm room will be ceiling only.\n(Under front porch).---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "3001 - Ammons Tape - 119 King's Ct, Ozark - Park, Deana - Deana (660) 525-0437 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.638Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zyicm8vdmjk7mgu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.593Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Loveland (417) 766-5616",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "James River South",
+ "Job_Codes": "3000 - Rain",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rain - James River South - JRC",
+ "Job_Name": "Rain",
+ "Job_Number": "3000",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#3000 - Rain",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "C#3000 - Rain - James River South - JRC - Doug Loveland (417) 766-5616 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.685Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kf0d5ud8r1gy3zy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.705Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1266 Indigo Rd, Fordland",
+ "Job_Codes": "2999 - Ceiling Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling Patches - 1266 Indigo Rd, Fordland - Nav Construction",
+ "Job_Name": "Ceiling Patches",
+ "Job_Number": "2999",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2999 - Ceiling Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2999 - Ceiling Patches - 1266 Indigo Rd, Fordland - Nav Construction - Paul (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.753Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "js4r1bs32jf54e7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.844Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harrell, Becky",
+ "Contact_Notes": "",
+ "Contact_Person": "Becky (417) 766-8162",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1953 N 22nd Ave, Ozark",
+ "Job_Codes": "2998 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 1953 N 22nd Ave, Ozark - Harrell, Becky",
+ "Job_Name": "Repair",
+ "Job_Number": "2998",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2998 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2998 - Repair - 1953 N 22nd Ave, Ozark - Harrell, Becky - Becky (417) 766-8162 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.806Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i4ryzl8b6ixqlm8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:54.989Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Smith, Bryan",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 988-1243",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1658 S FR 91, Spfd",
+ "Job_Codes": "2997 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1658 S FR 91, Spfd - Smith, Bryan",
+ "Job_Name": "Patches",
+ "Job_Number": "2997",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2997 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/06/23 11:49 AM Beth Cardoza Eddie & Stephanie weren't able to reach him and he never responded to my text either---\n03/27/23 3:01 PM Beth Cardoza I think it will be about 176 sqft ( 2- 12' and 2- 10' sheets) and maybe $850? He's expecting someone to look at it though so I'll wait before putting a together an estimate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2997 - Patches - 1658 S FR 91, Spfd - Smith, Bryan - (417) 988-1243 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.866Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z3xoskcyd4dg2b6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.101Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brad King",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad KIng",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "225 E . Primrose",
+ "Job_Codes": "2996 - Primrose",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2996%20Primrose&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Primrose - 225 E . Primrose - Brad King",
+ "Job_Name": "Primrose",
+ "Job_Number": "2996",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2996 - Primrose",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2996 - Primrose - 225 E . Primrose - Brad King - Brad KIng - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.943Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sp21c90k6o9kh1n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.253Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hoey, Bill",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey (417) 300-4001",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2926 E Alpine Dr, Spfd",
+ "Job_Codes": "2995 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2995%20Ceiling%20%282926%20E%20Alpine%20Dr%2C%20Spfd%29%20%28Hoey%2C%20Bill%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ceiling - 2926 E Alpine Dr, Spfd - Hoey, Bill",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2995",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2995 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 4:53 PM Beth Cardoza Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2995 - Ceiling - 2926 E Alpine Dr, Spfd - Hoey, Bill - Bill Hoey (417) 300-4001 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:43.989Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "afjm5o7cdm2gq7k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.377Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2994 - The Villas",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "The Villas - - Construct",
+ "Job_Name": "The Villas",
+ "Job_Number": "2994",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2994 - The Villas",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:41 AM Beth Cardoza Construct Not awarded contract.---",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2994 - The Villas - - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.041Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "98q7cr9w5544qpy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.529Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bybee, Angie",
+ "Contact_Notes": "",
+ "Contact_Person": "Angie (417) 894-2704",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2993 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - - Bybee, Angie",
+ "Job_Name": "Patches",
+ "Job_Number": "2993",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2993 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/23 3:53 PM Beth Cardoza Scheduled for Tuesday 8 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2993 - Patches - - Bybee, Angie - Angie (417) 894-2704 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.094Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w7947n5shr8jd69",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.665Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kronholm",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1727 Meadowview Ave. Spfd 65804",
+ "Job_Codes": "2992 - Commander Athletics",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Commander Athletics - 1727 Meadowview Ave. Spfd 65804 - Q and Co.",
+ "Job_Name": "Commander Athletics",
+ "Job_Number": "2992",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2992 - Commander Athletics",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2992 - Commander Athletics - 1727 Meadowview Ave. Spfd 65804 - Q and Co. - Justin Kronholm - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.162Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xa1i2u1lgllscxw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.793Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "2991 - #35RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#35RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#35RS",
+ "Job_Number": "2991",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2991 - #35RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/29/23 6:27 AM david cardoza Stock 16,416\nNo Leftover---\n03/22/23 10:11 AM Beth Cardoza Estimate waiting on info/walkthrough notes---\n03/22/23 10:10 AM Beth Cardoza Stocks Friday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2991 - #35RS - Rocky Shores - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.219Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qwu11ebq6zvyk0n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:55.929Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "J.E. Foster Building Company +1 314-842-3300 • jfoster@jefoster.com",
+ "Contact_Notes": "",
+ "Contact_Person": "Joshua Foster",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "631 South Glenstone Avenue, Springfield, MO 65802",
+ "Job_Codes": "2990 - SB Glenstone & Cherry Major Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SB Glenstone & Cherry Major Renovation - 631 South Glenstone Avenue, Springfield, MO 65802 - J.E. Foster Building Company +1 314-842-3300 • jfoster@jefoster.com",
+ "Job_Name": "SB Glenstone & Cherry Major Renovation",
+ "Job_Number": "2990",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2990 - SB Glenstone & Cherry Major Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2990 - SB Glenstone & Cherry Major Renovation - 631 South Glenstone Avenue, Springfield, MO 65802 - J.E. Foster Building Company +1 314-842-3300 • jfoster@jefoster.com - Joshua Foster - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.279Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4a5kimjgh47kg45",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.105Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Graves ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bradgnci@outlook.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1690 W Broadway Bolivar ,MO",
+ "Job_Codes": "2989 - POLK COUNTY LIBRARY",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2989%20Nesbitt%20%28Polk%20County%20Library%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "POLK COUNTY LIBRARY - 1690 W Broadway Bolivar ,MO - Nesbitt Construction",
+ "Job_Name": "POLK COUNTY LIBRARY",
+ "Job_Number": "2989",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2989 - POLK COUNTY LIBRARY",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178181071",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2989 - POLK COUNTY LIBRARY - 1690 W Broadway Bolivar ,MO - Nesbitt Construction - Brad Graves - 4178181071",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.346Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qgzlltt3lv86r8v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.233Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hartwig, Brian",
+ "Contact_Notes": "",
+ "Contact_Person": "417-860-5859",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2054 E Richmond, Spfld",
+ "Job_Codes": "2988 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2054 E Richmond, Spfld - Hartwig, Brian",
+ "Job_Name": "Remodel",
+ "Job_Number": "2988",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2988 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2988 - Remodel - 2054 E Richmond, Spfld - Hartwig, Brian - 417-860-5859 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.397Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6yvad3yvsnp2ny1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.377Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim 209-8635. Homeowner Ethan Spencer 417-894-5812 for scheduling",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "930 Moody Ridge Road Oldfield",
+ "Job_Codes": "2987 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 930 Moody Ridge Road Oldfield - Solar Solutions",
+ "Job_Name": "N/A",
+ "Job_Number": "2987",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2987 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/25/23 5:16 PM Beth Cardoza I don't know what happened with this job. It was TM... last thing was that the homeowner was checking to see if his mother could meet us there back on March 20th. Then months later I followed up and Eddie didn't respond. No i",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2987 - N/A - 930 Moody Ridge Road Oldfield - Solar Solutions - Tim 209-8635. Homeowner Ethan Spencer 417-894-5812 for scheduling - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.457Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ag7qdt6th46u0n1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.517Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pooaj Incorporation",
+ "Contact_Notes": "",
+ "Contact_Person": "Nick Eatel (417) 425-0975, general@battlefieldinn.net",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2114 S Glenstone Ave, Spfd",
+ "Job_Codes": "2986 - Bathrooms",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bathrooms - 2114 S Glenstone Ave, Spfd - Pooaj Incorporation",
+ "Job_Name": "Bathrooms",
+ "Job_Number": "2986",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2986 - Bathrooms",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/23 1:52 PM Beth Cardoza The lady that met them only showed 2 bathrooms and they don't actually know how much drywall will need replaced yet. I sent a TM work order and asked about doing it hourly. Otherwise we'll need to look at it and give a price \n03/21/23 11:55 AM Beth Cardoza Eddie to view 10 am tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2986 - Bathrooms - 2114 S Glenstone Ave, Spfd - Pooaj Incorporation - Nick Eatel (417) 425-0975, general@battlefieldinn.net - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.514Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "86khmd6y85idaw1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.661Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sims, Larry",
+ "Contact_Notes": "",
+ "Contact_Person": "Larry (501) 425-3363",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "285 Lemonwood Ln, Hollister",
+ "Job_Codes": "2985 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 285 Lemonwood Ln, Hollister - Sims, Larry",
+ "Job_Name": "Remodel",
+ "Job_Number": "2985",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2985 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/11/23 4:14 PM Beth Cardoza Family medical issues, job on hold indefinitely. Will contact us when they’re ready to do it.---\n03/21/23 10:48 AM Beth Cardoza Eddie to view tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2985 - Remodel - 285 Lemonwood Ln, Hollister - Sims, Larry - Larry (501) 425-3363 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.574Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o808h27ee2cbx12",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.789Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jones, Jeff",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff (417) 755-3695",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "600 Cooper Ridge Rd, Nixa",
+ "Job_Codes": "2984 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 600 Cooper Ridge Rd, Nixa - Jones, Jeff",
+ "Job_Name": "Cracks",
+ "Job_Number": "2984",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2984 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/23/23 3:00 PM Beth Cardoza Fremont Hills---\n03/16/23 1:17 PM Beth Cardoza 3, approximately 18\" long settling cracks at doorways. Two are texture and 1 is on a smooth finish area. All three are at door frames.---\n03/16/23 12:54 PM Beth Cardoza Jim Colton reference---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2984 - Cracks - 600 Cooper Ridge Rd, Nixa - Jones, Jeff - Jeff (417) 755-3695 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.634Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8r64p4b19p6co08",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:56.925Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5973 W. U.S. Hwy 60 Republic",
+ "Job_Codes": "2983 - Jexon",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2983%20Nesbitt%20%28Jexon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Jexon - 5973 W. U.S. Hwy 60 Republic - Nesbitt Construction",
+ "Job_Name": "Jexon",
+ "Job_Number": "2983",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2983 - Jexon",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178666199",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2983 - Jexon - 5973 W. U.S. Hwy 60 Republic - Nesbitt Construction - Joe Jackson - 4178666199",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.701Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i9tnis8o1ctffsf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.121Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "417-294-0057",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rocky Shores",
+ "Job_Codes": "2982 - #39RS",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#39RS - Rocky Shores - Still, Mark",
+ "Job_Name": "#39RS",
+ "Job_Number": "2982",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2982 - #39RS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/18/23 9:38 AM Beth Cardoza CO: Brackets---\n03/22/23 7:25 AM david cardoza Stock 13,644\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2982 - #39RS - Rocky Shores - Still, Mark - 417-294-0057 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.753Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ur4qmywx1x3nsta",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.244Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Action Retail Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Lesley Pennington",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "100 Branson Landing Blvd. Suites 111, 113, & 115 Branson, MO",
+ "Job_Codes": "2981 - Boot Barn",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Boot Barn - 100 Branson Landing Blvd. Suites 111, 113, & 115 Branson, MO - Action Retail Construction",
+ "Job_Name": "Boot Barn",
+ "Job_Number": "2981",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2981 - Boot Barn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2981 - Boot Barn - 100 Branson Landing Blvd. Suites 111, 113, & 115 Branson, MO - Action Retail Construction - Lesley Pennington - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.810Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dasf52359447xir",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.361Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bewley, Ty",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 399-5555",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fair Play",
+ "Job_Codes": "2980 - Steel frame house",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Steel frame house - Fair Play - Bewley, Ty",
+ "Job_Name": "Steel frame house",
+ "Job_Number": "2980",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2980 - Steel frame house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/15/23 2:29 PM Beth Cardoza Rick planning to look at it. Steel framed house---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2980 - Steel frame house - Fair Play - Bewley, Ty - (417) 399-5555 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.863Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g9vtp1pahbmex60",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.486Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "307 Cimarron Rd, Sarcoxie",
+ "Job_Codes": "2979 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 307 Cimarron Rd, Sarcoxie - Larsen, Steve",
+ "Job_Name": "Finish",
+ "Job_Number": "2979",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2979 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/15/23 4:39 PM Beth Cardoza Figuring probably TM. He didn't ask for an estimate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2979 - Finish - 307 Cimarron Rd, Sarcoxie - Larsen, Steve - Steve 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.914Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "khj7ownheaifybx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.605Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3713 E Hutcheson, Spfd",
+ "Job_Codes": "2978 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3713 E Hutcheson, Spfd - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "2978",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2978 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/23 7:27 AM david cardoza Stock 10,710\nLeftover \n2-12\n2-10\n14-8\nTotal leftover 624\nHang 10,086---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2978 - N/A - 3713 E Hutcheson, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:44.975Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cl1m3whh60chdzm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.733Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bales Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Block ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "estimating@balesconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "TBD",
+ "Job_Codes": "2977 - Republic Build",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2977%20Bales%20%28Republic%20Builds%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Republic Build - TBD - Bales Construction",
+ "Job_Name": "Republic Build",
+ "Job_Number": "2977",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2977 - Republic Build",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655800",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2977 - Republic Build - TBD - Bales Construction - Justin Block - 4178655800",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.030Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s2pnw6fgfobtv05",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.857Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hanson, Erik",
+ "Contact_Notes": "",
+ "Contact_Person": "Erik (417) 838-8667",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2008 E Lakewood St, Spfd",
+ "Job_Codes": "2976 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 2008 E Lakewood St, Spfd - Hanson, Erik",
+ "Job_Name": "Repairs",
+ "Job_Number": "2976",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2976 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/21/23 4:01 PM Beth Cardoza Mold remediation to be done by March 31st. Will need to measure areas removed after that---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2976 - Repairs - 2008 E Lakewood St, Spfd - Hanson, Erik - Erik (417) 838-8667 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.081Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hir8h7o7i1e41zd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:57.972Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kids Inn Child Care",
+ "Contact_Notes": "",
+ "Contact_Person": "Christina Ford (708)860-3927",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1511 E Lark St, Spfd",
+ "Job_Codes": "2975 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1511 E Lark St, Spfd - Kids Inn Child Care",
+ "Job_Name": "Patch",
+ "Job_Number": "2975",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2975 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2975 - Patch - 1511 E Lark St, Spfd - Kids Inn Child Care - Christina Ford (708)860-3927 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.130Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xwpw5tloz3c90tw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.097Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8993 N Painted Springs Ln, Spfd",
+ "Job_Codes": "2974 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 8993 N Painted Springs Ln, Spfd - Concept2Completion",
+ "Job_Name": "N/A",
+ "Job_Number": "2974",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2974 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/25/23 2:36 PM Beth Cardoza CO: “zip strip” (tearaway) at beams---\n04/03/23 10:02 AM Beth Cardoza Also know to Tim Schwenke as \"Bartholomew project\" (used that subject line when emailing the signed work order)---\n03/21/23 4:00 PM Beth Cardoza Probably ready to start next week---\n03/21/23 3:59 PM Beth Cardoza Eddie to look at Thursday morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2974 - N/A - 8993 N Painted Springs Ln, Spfd - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.191Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nrb7c6l68rj354k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.229Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Blanchfield, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Blanchfield (417) 987-8938",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1856 N Deffer Dr, Nixa",
+ "Job_Codes": "2973 - Modern Motor Cars",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Modern Motor Cars - 1856 N Deffer Dr, Nixa - Blanchfield, Mark",
+ "Job_Name": "Modern Motor Cars",
+ "Job_Number": "2973",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2973 - Modern Motor Cars",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2973 - Modern Motor Cars - 1856 N Deffer Dr, Nixa - Blanchfield, Mark - Mark Blanchfield (417) 987-8938 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.250Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "msl87cr0t23uqgd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.341Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Poindexter",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bpoindexter@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1350 West Bluff Drive, Ozark, MO 65721",
+ "Job_Codes": "2972 - Ozark HS",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2972%20Branco%20Ozark%20HS&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ozark HS - 1350 West Bluff Drive, Ozark, MO 65721 - Branco",
+ "Job_Name": "Ozark HS",
+ "Job_Number": "2972",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2972 - Ozark HS",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174562024",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2972 - Ozark HS - 1350 West Bluff Drive, Ozark, MO 65721 - Branco - Brandon Poindexter - 4174562024",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.306Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5dwn11jrzj7giht",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.465Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JE Foster Building Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Joshua Foster",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jfoster@jefoster.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "631 South Glenstone Avenue, Springfield, MO 65802,",
+ "Job_Codes": "2971 - SB Glenstone & Cherry Major Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SB Glenstone & Cherry Major Renovation - 631 South Glenstone Avenue, Springfield, MO 65802, - JE Foster Building Co.",
+ "Job_Name": "SB Glenstone & Cherry Major Renovation",
+ "Job_Number": "2971",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2971 - SB Glenstone & Cherry Major Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3148423300",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2971 - SB Glenstone & Cherry Major Renovation - 631 South Glenstone Avenue, Springfield, MO 65802, - JE Foster Building Co. - Joshua Foster - 3148423300",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.362Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i3umd6n10fsufrp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.589Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fremont Hills",
+ "Job_Codes": "2970 - Fremont Hills City Hall",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2970%20FX%20Fremont%20Hills%20City%20Hall&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Fremont Hills City Hall - Fremont Hills - Friga Construction",
+ "Job_Name": "Fremont Hills City Hall",
+ "Job_Number": "2970",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2970 - Fremont Hills City Hall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2970 - Fremont Hills City Hall - Fremont Hills - Friga Construction - Eric Friga - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.410Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uvb18ubx4n0xgsi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.725Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland (417) 536-8445",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1735 N Raeley Lane, Spfd",
+ "Job_Codes": "2969 - Whitlock",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Whitlock - 1735 N Raeley Lane, Spfd - Sutherland Construction",
+ "Job_Name": "Whitlock",
+ "Job_Number": "2969",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2969 - Whitlock",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/08/23 7:31 AM david cardoza Bonus room over the garage stock 1,984\nSecond stock 160\nNo leftover \nHang 2144---\n11/07/23 9:12 AM Beth Cardoza Garage code is 1234\nGate code was 1212 but it may be broken. Problem.---\n10/31/23 3:21 PM Beth Cardoza CO: Added pocket door, increase 192 sqft footage.---\n10/31/23 3:45 PM Beth Cardoza Stocking fee. We have to stock 8' sheets up the stairs. There will be a lot of butt joints due to 8' sheets.---\n10/31/23 3:20 PM Beth Cardoza Starting .2 scope.---\n07/12/23 7:08 AM david cardoza Stock 3,576\nShort 256\nTotal stock 3832\nNo leftover---\n06/30/23 4:20 PM Beth Cardoza We need to push this back 2 weeks. The homeowners made some changes this morning with the stairs---\n03/08/23 2:00 PM Beth Cardoza 10' walls and ceilings. Upstairs is 6ft, then it vaults which is about a 10ft run. Stairway need hung\nTexture is orange peel on everything, no window wraps. It's in Springfield. It would be this summer or fall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2969 - Whitlock - 1735 N Raeley Lane, Spfd - Sutherland Construction - Angel Sutherland (417) 536-8445 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.462Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tars0qm7blogk0m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.843Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mariage, Adam",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 459-0441",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "2968 - Barndominium",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Barndominium - Nixa - Mariage, Adam",
+ "Job_Name": "Barndominium",
+ "Job_Number": "2968",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2968 - Barndominium",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/05/23 6:06 AM david cardoza Measured 16,868\nLeftover \n3-8\n3-54” x 12’\n15-12’\n4-14’ x 48”\nTotal leftover 1,042\nHang 15,826---\n06/07/23 2:58 PM Beth Cardoza For billing purposes record: there was another 1200 sqft cold wall hung and firetaped previously on top of the above total.---\n05/03/23 11:42 AM Beth Cardoza Also will be using 5/8\" board on exterior walls so board prices will need adjusting once we get numbers in on that---\n05/03/23 11:40 AM Beth Cardoza CO: Framing issues. Bringing in 15 sticks of shiney 90 and some screws. Client supplying some 2x4s. Client is going to do what he can, but Angel will be fixing things too.---\n03/21/23 3:33 PM Beth Cardoza Need cold wall probably towards the end of next week. The rest of the job should be ready mid April/about a month---\n03/20/23 9:57 AM Beth Cardoza Scaffolding/Equipment needed: 3 sections of 6 ft scaffolding and one section of 5 ft scaffolding 8 walk planks and enough cross braces for each section, 1extension plank 2 Perry’s per Rick---\n03/10/23 4:39 PM Beth Cardoza Dave guess on sqft: 15,000 sqft---\n03/10/23 4:22 PM Beth Cardoza Dave told him we would try to get the estimate to him by end of next week (17th). Dave wants to go over it with Rick next week because it's a metal building he had some questions.---\n03/08/23 11:12 AM Beth Cardoza Eddie scheduled to view at 8am tomorrow---\n03/09/23 10:37 AM Beth Cardoza (I thought it was 4,000 drywall sqft)---\n03/09/23 10:33 AM Beth Cardoza Large 4,000 floor sqft home. High vaults, etc---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2968 - Barndominium - Nixa - Mariage, Adam - (417) 459-0441 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.522Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "eixr8pit2cp8qxs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:58.973Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fraley, David",
+ "Contact_Notes": "",
+ "Contact_Person": "David Fraley (417) 350-4028",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1651 W Lennox Dr, Spfd",
+ "Job_Codes": "2967 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1651 W Lennox Dr, Spfd - Fraley, David",
+ "Job_Name": "Repairs",
+ "Job_Number": "2967",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2967 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2967 - Repairs - 1651 W Lennox Dr, Spfd - Fraley, David - David Fraley (417) 350-4028 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.578Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "43zkut23jwukz2k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.109Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Strange, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Strange (925)260-2054",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4848 E Farm Rd 164, Spfd",
+ "Job_Codes": "2966 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4848 E Farm Rd 164, Spfd - Strange, Mike",
+ "Job_Name": "N/A",
+ "Job_Number": "2966",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2966 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/19/23 4:23 PM Beth Cardoza CO: At Farm Road 164 Mike Strange he called and said the pocket doors are ready to hang. These were pocket doors that were never ready until now. So Angel will take care of that tomorrow morning. We just need somebody to tape\n05/04/23 12:24 PM Beth Cardoza co: We supplied board---\n05/04/23 12:25 PM Beth Cardoza Paying $300 to Julio to install backer board that Mike supplied---\n04/18/23 3:14 PM Beth Cardoza We forgot to figure for bullnose. CO? See how the job comes out---\n04/16/23 8:41 AM david cardoza Two stocks\n15,456\n16,096\nThird stock 1,960\nFourth final stock 1,312\nTotal 34,824---\n03/21/23 3:44 PM Beth Cardoza Wants unit price and to mask beams himself and buy drywall himself---\n03/06/23 11:43 AM Beth Cardoza Stomp knockdown ceilings and orange peel walls, bullnose, no window wraps. Probably close to 40,000 sqft. Off of East Battlefield East of Hwy 65. Ready in 3-4 weeks probably---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2966 - N/A - 4848 E Farm Rd 164, Spfd - Strange, Mike - Mike Strange (925)260-2054 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.622Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rndd0931dhs22z1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.237Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "2965 - Caffey Shop",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Caffey Shop - Ozark - Essick, Dusty",
+ "Job_Name": "Caffey Shop",
+ "Job_Number": "2965",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2965 - Caffey Shop",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2965 - Caffey Shop - Ozark - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.682Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7afkx3pdchw6tmp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.365Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Trent 417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "108 Sullivan Dr, Kimberling City",
+ "Job_Codes": "2964 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 108 Sullivan Dr, Kimberling City - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2964",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2964 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/22/23 7:49 AM david cardoza Stock 7,858\nSecond stock 752\nTotal stock 8,610.\nAssume no leftover---\n03/13/23 2:29 PM Beth Cardoza Dave walk through notes 3/13:\nTwo story house\nMain level 9’ flat\nUpstairs 8’ flat\n23 windows all sizes\n.16 hang (little, distance, etc)\nStill waiting to be roughed in. Not roofed yet.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2964 - N/A - 108 Sullivan Dr, Kimberling City - Cowherd - Trent 417-887-1600 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.730Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4twu6nbexfweahb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.529Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Terragreen Lot 3",
+ "Job_Codes": "2963 - SGB",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SGB - Terragreen Lot 3 - Construct",
+ "Job_Name": "SGB",
+ "Job_Number": "2963",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2963 - SGB",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:40 AM Beth Cardoza Fallen through currently.---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2963 - SGB - Terragreen Lot 3 - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.783Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "02a79pn4i6kqdld",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.645Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "901 E. Battlefield",
+ "Job_Codes": "2962 - Nixon Lindstrom",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2962%20Construct%20%28Nixon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixon Lindstrom - 901 E. Battlefield - Construct",
+ "Job_Name": "Nixon Lindstrom",
+ "Job_Number": "2962",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2962 - Nixon Lindstrom",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2962 - Nixon Lindstrom - 901 E. Battlefield - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.834Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z78i9p3kiba0an0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sidney, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon (417) 691-0725",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1266 W Inman Rd, Nixa",
+ "Job_Codes": "2961 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1266 W Inman Rd, Nixa - Sidney, Brandon",
+ "Job_Name": "N/A",
+ "Job_Number": "2961",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2961 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/13/23 8:20 AM david cardoza Stock 16,804---\n03/02/23 5:18 PM Beth Cardoza Dave walk through Notes:\n\n1266 W Inman Rd\nNixa Mo. \n\n16,804 per bill\n\nTwo car garage over concrete at about 11’\nOne window in the garage\n\nTwo-story house with a full walkout basement. \n\nThe main level is house 9 foot. The fro\n03/02/23 11:18 AM Beth Cardoza Waiting for someone to view and for plans (he said he could probably email plans tonight)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2961 - N/A - 1266 W Inman Rd, Nixa - Sidney, Brandon - Brandon (417) 691-0725 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.894Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zap1kb9ghhb62mw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:02:59.893Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8410 Interlochen Dr, Nixa",
+ "Job_Codes": "2960 - Thessing",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Thessing - 8410 Interlochen Dr, Nixa - Essick, Dusty",
+ "Job_Name": "Thessing",
+ "Job_Number": "2960",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2960 - Thessing",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/26/23 1:57 PM Beth Cardoza CO: Attic closet. Fix framing, hang and finish with orange peel. Materials needed: 5 sheets 8', 7 sheets 12', probably 8 pieces of shiny 90---\n10/04/23 10:01 AM Beth Cardoza Looks like it might be finishing up tomorrow.---\n09/18/23 10:08 AM Beth Cardoza CO??\n\nCan we go ahead and get someone over to the Fremont Hills house for several patches and repairs ? Painters are coming in a couple weeks \nDusty Essick \nInterlochen Dr., Fremont Hills---\n09/26/23 1:55 PM Beth Cardoza Jeremy did some on 9/20-9/21, but the electricians weren't done so there will be more.---\n08/14/23 11:43 AM Beth Cardoza CO: hang and finish oven hood (probably Jeremy)---\n06/06/23 11:44 AM Beth Cardoza CO: We hung and did first coat on basement and now they are demoing drywall we hung down there. Not sure what they are doing! So anything we re-do in basement will be a change order now---\n05/24/23 8:29 AM david cardoza Stock 19,794\nShop stock 32\nFBM stock 96 (1/4\")\nTotal stock 19,922\nLeftover 32\nTotal installed drywall 19,890\n-------\nGarage ftg hung was 700\n\nPay hanger ftg 19,190\nPay hanger hours for garage 10 hrs @ $30 =$300\n-------------\n05/01/23 8:36 AM Beth Cardoza Dave walkthrough notes: 4/29/23\nDusty Essick Remodel. Old Garage looks like we are not doing anything in. \n\nLarge walkout basement house. \n\nEnter through front door 10 foot high with a barrel Archway on the right hand side. \n\n03/16/23 11:27 AM Beth Cardoza 6-8 weeks out---\n03/01/23 3:17 PM Beth Cardoza bid smooth finish on everything walls and ceilings and bigger square corners---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2960 - Thessing - 8410 Interlochen Dr, Nixa - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:45.951Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "69rqxyvjupl7ty3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:00.008Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Heritage Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob VanOmeran",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4151 N. 20th Street Ozark, MO",
+ "Job_Codes": "2959 - UC-65",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2959%20Heritage%20%28UC%2D65%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "UC-65 - 4151 N. 20th Street Ozark, MO - Heritage Construction",
+ "Job_Name": "UC-65",
+ "Job_Number": "2959",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2959 - UC-65",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/09/23 11:18 AM Heidi Mahan Key Box Code: 3250---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2959 - UC-65 - 4151 N. 20th Street Ozark, MO - Heritage Construction - Bob VanOmeran - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.010Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2rs1a4sewmdd9ve",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:00.125Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mid South Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tanner Gray (417) 813-8867",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3304 S Pinehurst Ave, Spfd",
+ "Job_Codes": "2958 - Smooth",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Smooth - 3304 S Pinehurst Ave, Spfd - Mid South Construction",
+ "Job_Name": "Smooth",
+ "Job_Number": "2958",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2958 - Smooth",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2958 - Smooth - 3304 S Pinehurst Ave, Spfd - Mid South Construction - Tanner Gray (417) 813-8867 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.062Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ghlwjpah095e0ts",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:00.245Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cayocca, Angel",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Cayocca (417) 987-8649",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "201 Prism Ln, Highlandville",
+ "Job_Codes": "2957 - Hang",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hang - 201 Prism Ln, Highlandville - Cayocca, Angel",
+ "Job_Name": "Hang",
+ "Job_Number": "2957",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2957 - Hang",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 4:50 PM Beth Cardoza Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2957 - Hang - 201 Prism Ln, Highlandville - Cayocca, Angel - Angel Cayocca (417) 987-8649 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.123Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1r6cfpx949i60ww",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:00.364Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1368 E Hanover, Spfd",
+ "Job_Codes": "2956 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1368 E Hanover, Spfd - Temple Remodeling",
+ "Job_Name": "Patches",
+ "Job_Number": "2956",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2956 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2956 - Patches - 1368 E Hanover, Spfd - Temple Remodeling - Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.170Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "efil9s708uinapu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:00.489Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hostettler, Cody",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody (417) 733-0201",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "160 Foose Rd, Buffalo",
+ "Job_Codes": "2955 - Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wall - 160 Foose Rd, Buffalo - Hostettler, Cody",
+ "Job_Name": "Wall",
+ "Job_Number": "2955",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2955 - Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2955 - Wall - 160 Foose Rd, Buffalo - Hostettler, Cody - Cody (417) 733-0201 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.222Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7uy9ty0ct8alhbn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:00.917Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Combes, Matt",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt (417) 425-3589",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1258 W Dunn Pl, Nixa",
+ "Job_Codes": "2954 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1258 W Dunn Pl, Nixa - Combes, Matt",
+ "Job_Name": "Repairs",
+ "Job_Number": "2954",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2954 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/25/23 10:24 AM Beth Cardoza unable to reach---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2954 - Repairs - 1258 W Dunn Pl, Nixa - Combes, Matt - Matt (417) 425-3589 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.274Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4yqt2yksnd2qd72",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.036Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Valley Trail, Republic",
+ "Job_Codes": "2953 - Spec",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spec - Valley Trail, Republic - King, Brad",
+ "Job_Name": "Spec",
+ "Job_Number": "2953",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2953 - Spec",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2953 - Spec - Valley Trail, Republic - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.322Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pxz7a2g29qh4hlb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.157Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wise, Ted",
+ "Contact_Notes": "",
+ "Contact_Person": "Ted (417) 860-1521",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4437 River Ridge Ln, Rogersville",
+ "Job_Codes": "2952 - Skim",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Skim - 4437 River Ridge Ln, Rogersville - Wise, Ted",
+ "Job_Name": "Skim",
+ "Job_Number": "2952",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2952 - Skim",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/23/23 1:28 PM Beth Cardoza His painter recommended us---\n02/23/23 1:26 PM Beth Cardoza Needs job done next week. Skim walls in a master suite and two toilet rooms where he already removed wallpaper, sanded and sealed. Heidi said maybe Wednesday. Eddie to view 9:30 am tomorrow (2/24)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2952 - Skim - 4437 River Ridge Ln, Rogersville - Wise, Ted - Ted (417) 860-1521 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.366Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "90ir6bk5amc7dth",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.269Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2951 - Forvis demo and infill.",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2951%20Construct%20%28Forvis%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Forvis demo and infill. - - Construct",
+ "Job_Name": "Forvis demo and infill.",
+ "Job_Number": "2951",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2951 - Forvis demo and infill.",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:40 AM Beth Cardoza Construct Not awarded contract---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2951 - Forvis demo and infill. - - Construct - Nathan Henderson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.415Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "trrynx0rt1n9epu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.401Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Makarovskiy, Sergey",
+ "Contact_Notes": "",
+ "Contact_Person": "(503) 969-7222",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "273 S Folks Ln, Republic",
+ "Job_Codes": "2950 - Custom texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Custom texture - 273 S Folks Ln, Republic - Makarovskiy, Sergey",
+ "Job_Name": "Custom texture",
+ "Job_Number": "2950",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2950 - Custom texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/28/23 3:11 PM Beth Cardoza Walkthrough scheduled for 10 am tomorrow---\n02/28/23 3:10 PM Beth Cardoza Waiting on info. I don't know if Eddie was able to reach him yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2950 - Custom texture - 273 S Folks Ln, Republic - Makarovskiy, Sergey - (503) 969-7222 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.475Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7ub81r0i0dxa0wr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.557Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2949 - Rocky Shores #24",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #24 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #24",
+ "Job_Number": "2949",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2949 - Rocky Shores #24",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/10/23 12:41 PM Beth Cardoza RS 24\nOccupied \nWater line broke in basement hall ceiling. \nRepair is about 16” square \nTexture light op\nHoping we can get done no later than Wednesday. Maybe schedule it for Wednesday because they are fixing it today. Let t\n03/15/23 10:27 AM david cardoza Stock 12,778\nNo leftover---\n02/22/23 1:45 PM Beth Cardoza Dave walkthrough notes:\n\nRocky shores building 24 is a three-story, including the walkout basement. \n\nThe top floor is just one bedroom and bathroom. It has the very high double vaulted living room ceiling. Probably 25’ high.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2949 - Rocky Shores #24 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.535Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o8eybgyysyiinyg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.708Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2948 - Rocky Shores #23",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #23 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #23",
+ "Job_Number": "2948",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2948 - Rocky Shores #23",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/23 4:27 PM Beth Cardoza Rs 23 or 24 ( he wasn’t sure)\nThey had to change a door height or something like that in the basement under the stairs I think is what he said. Not a very big repair but figure a couple hours. They need it done soon as possib\n03/08/23 7:47 AM david cardoza Stock 11,594\nadditional transferred from building #24: 240\nTotal stock 11,834\nLeftover 96\nFinal hang 11,738---\n02/22/23 1:45 PM Beth Cardoza Dave Walkthrough notes:\n\nRocky shores building 23\n\nMain level is 9’\n\nMain room is high double vaulted at 25’ high \n\nBasement at 9’\n\nNeed three stage tower consisting of \n1-6’\n2-5’\n\nAlso need \n1 Ext ladder \n1-16’ plank---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2948 - Rocky Shores #23 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.595Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fpfmle831pvbapd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.837Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2947 - Rocky Shores #38",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #38 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #38",
+ "Job_Number": "2947",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2947 - Rocky Shores #38",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/18/23 9:38 AM Beth Cardoza CO: Brackets---\n03/02/23 8:55 AM david cardoza Stock 13,774\nno leftover---\n02/22/23 1:44 PM Beth Cardoza Dave walkthrough notes:\n\nRocky shores building 38\n\nThree level building with walkout basement. \n\nAll 9 foot flat except for the upstairs has the two bedrooms with the vaulted sides. \n\nProbably looking at around the usual 14,0",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2947 - Rocky Shores #38 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.646Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9msiapkzzyesn1z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:01.973Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Rex",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Farm Rd 132",
+ "Job_Codes": "2946 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - Farm Rd 132 - Construct",
+ "Job_Name": "Patch",
+ "Job_Number": "2946",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2946 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/21/23 2:33 PM Beth Cardoza TM or no charge. Confirm with Rick before billing---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2946 - Patch - Farm Rd 132 - Construct - Rex - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.694Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5r6vepbq9afr19e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.105Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bryan, Krista",
+ "Contact_Notes": "",
+ "Contact_Person": "Krista (417) 686-1033",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2945 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - - Bryan, Krista",
+ "Job_Name": "Patch",
+ "Job_Number": "2945",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2945 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/22/23 9:46 AM Beth Cardoza Her repair guy did the patch too---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2945 - Patch - - Bryan, Krista - Krista (417) 686-1033 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.746Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gokeosf293yiglw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.233Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bibler, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Bibler (417) 234-5223",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1763 W Nottingham, Spfd",
+ "Job_Codes": "2944 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1763 W Nottingham, Spfd - Bibler, John",
+ "Job_Name": "Patch",
+ "Job_Number": "2944",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2944 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2944 - Patch - 1763 W Nottingham, Spfd - Bibler, John - John Bibler (417) 234-5223 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.806Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2cgxrgkzd3li2qa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.365Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Northstar",
+ "Contact_Notes": "",
+ "Contact_Person": "Stacey Laney (417)-582-0177",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2991 Aspen Rd, Nixa",
+ "Job_Codes": "2943 - Mangum",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2943%20Mangum%20%282991%20Aspen%20Rd%2C%20Nixa%29%20%28Northstar%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Mangum - 2991 Aspen Rd, Nixa - Northstar",
+ "Job_Name": "Mangum",
+ "Job_Number": "2943",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2943 - Mangum",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/21/23 4:08 PM Beth Cardoza Yes, include finishing the optional studio in your bid.\nWindows will have sills\nand the basement will not be finished at this time.---\n02/21/23 12:52 PM Beth Cardoza Smooth to Lvl 5\nSquare Corners\nWindow wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2943 - Mangum - 2991 Aspen Rd, Nixa - Northstar - Stacey Laney (417)-582-0177 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.862Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "crzgavkjek3bnb6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.485Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Engram, Charlie",
+ "Contact_Notes": "",
+ "Contact_Person": "Charlie Engram 417.230.4234",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2115 West Highway 76, Branson",
+ "Job_Codes": "2942 - Branson Coaster",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Branson Coaster - 2115 West Highway 76, Branson - Engram, Charlie",
+ "Job_Name": "Branson Coaster",
+ "Job_Number": "2942",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2942 - Branson Coaster",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/23/23 4:24 PM Beth Cardoza He wanted a rough number---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2942 - Branson Coaster - 2115 West Highway 76, Branson - Engram, Charlie - Charlie Engram 417.230.4234 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.914Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wm1en72o14b8gfm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.600Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "TMG Construction MGT",
+ "Contact_Notes": "",
+ "Contact_Person": "Elliot Brown ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "ebrown@tmgcm.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1335 West Kearney Street, Springfield, MO 65803",
+ "Job_Codes": "2941 - Taco Bell",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2941%20TMG%20%28Taco%20Bell%20W%2E%20Kearney%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Taco Bell - 1335 West Kearney Street, Springfield, MO 65803 - TMG Construction MGT",
+ "Job_Name": "Taco Bell",
+ "Job_Number": "2941",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2941 - Taco Bell",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3173185163",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2941 - Taco Bell - 1335 West Kearney Street, Springfield, MO 65803 - TMG Construction MGT - Elliot Brown - 3173185163",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:46.966Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9008dx3efuz1yaw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.716Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fair & True Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Brown(417) 630-1649",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2505 S Linden Ave, Spfd",
+ "Job_Codes": "2940 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2505 S Linden Ave, Spfd - Fair & True Construction",
+ "Job_Name": "Remodel",
+ "Job_Number": "2940",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2940 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/16/23 2:48 PM Beth Cardoza room 8x12 ft , total demo of room except leaving the ceiling, will be a 3ftx60 inch patch and a 6ftx10inch patch in ceilings, all walls to be re hung and finished, smooth walls and stomp ceiling, 10 4x8x1/2, and 5 4x8x1/2 pur",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2940 - Remodel - 2505 S Linden Ave, Spfd - Fair & True Construction - Ben Brown(417) 630-1649 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.014Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mn6019sq8t5xof8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.845Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3717E Hutchinson, Spfd",
+ "Job_Codes": "2939 - HH71",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "HH71 - 3717E Hutchinson, Spfd - Colton, Jim",
+ "Job_Name": "HH71",
+ "Job_Number": "2939",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2939 - HH71",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/17/23 8:29 AM david cardoza Stock 11,378\nLeftover 504\nHang 10,874---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2939 - HH71 - 3717E Hutchinson, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.066Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "adc1iaa9xxcmtyr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:02.997Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Greeno, Angie",
+ "Contact_Notes": "",
+ "Contact_Person": "Angie Greeno (417) 263-0416",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1094 Sunset Inn Rd, Branson",
+ "Job_Codes": "2938 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1094 Sunset Inn Rd, Branson - Greeno, Angie",
+ "Job_Name": "N/A",
+ "Job_Number": "2938",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2938 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 9:17 AM Beth Cardoza CO: The cabinet installers beat the crap out of some of the walls in the house. When you have a minute can you come check it out and see what can be fixed\nAngie Greeno---\n03/07/23 10:28 AM david cardoza Stock per owner \n244 sheets 12' x 4'= 11,712\n19 sheets 4' x 8' = 608\nTotal stock12,320\nShort board so second stock 1,248\nTotal stock 14,816\nNo leftover---\n04/06/23 9:41 AM Beth Cardoza 12,320 + 1,248 = 13,568 FYI---\n02/22/23 5:01 PM Beth Cardoza Ready now---\n02/21/23 3:59 PM Beth Cardoza 1094 Sunset Inn Rd\nBranson, Mo. \n\nThree car garage over concrete at 10’\n\nWalkout basement house. Main level is all 10 foot flat, except for the master bedroom pops up to 11 foot tray.\n\nBasement under 8’ high.---\n02/17/23 6:13 PM Beth Cardoza Orange peel, walls and tree bark ceilings\n\nThe basement is not on the original plan as we ended up having to dig a little more than originally planned. The basement space is as follows:\n\n *staircase",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2938 - N/A - 1094 Sunset Inn Rd, Branson - Greeno, Angie - Angie Greeno (417) 263-0416 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.126Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bcfsy08tbovamzz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.125Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Paleo Way, Branson",
+ "Job_Codes": "2937 - Claassen",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2937%20Claassen%20%28300%20Paleo%20Way%2C%20Branson%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Claassen - 300 Paleo Way, Branson - Essick, Dusty",
+ "Job_Name": "Claassen",
+ "Job_Number": "2937",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2937 - Claassen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/29/25 7:28 AM david cardoza Final ftg hung 15,610---\n05/12/25 1:54 PM Beth Cardoza REW count 16,314---\n05/02/25 2:27 PM Beth Cardoza The last quote on this is almost a year old, however the high ceilings aren't quite as high as I figured so I think we'll be okay to keep the price. If accountant's copy is released before job end I'll make some tweaks to it \n02/20/23 3:29 PM Beth Cardoza Living room is high. Essick confirmed---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2937 - Claassen - 300 Paleo Way, Branson - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.188Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "46ywzavd0z05k2b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.245Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Drenon, David",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 849-8473",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1550 E Vincent, Spfd",
+ "Job_Codes": "2936 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1550 E Vincent, Spfd - Drenon, David",
+ "Job_Name": "Remodel",
+ "Job_Number": "2936",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2936 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/30/23 1:06 PM Beth Cardoza Assumed unawarded---\n02/22/23 10:02 AM Beth Cardoza Eddie scheduled to look at this Friday 2/24---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2936 - Remodel - 1550 E Vincent, Spfd - Drenon, David - (417) 849-8473 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.243Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9js0frzo4jz35hi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.360Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McConnell, Kirk",
+ "Contact_Notes": "",
+ "Contact_Person": "Kirk 417-294-7179",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2073 Hwy 65, Buffalo",
+ "Job_Codes": "2935 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2073 Hwy 65, Buffalo - McConnell, Kirk",
+ "Job_Name": "N/A",
+ "Job_Number": "2935",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2935 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/27/23 11:09 AM david cardoza Stock 11,350\nLeftover 288\nHang 11,062---\n03/22/23 2:44 PM Beth Cardoza Dave walkthrough notes 3/22/23:\n2/3 is 8’ flat \nTwo car garage over concrete at 9 foot\nMain living area 10’ flat \nSun room 9’\nUpstairs office only 32’ x crack \nBullnose \nWindows might wrap. Not sure yet. \nMaybe 11,000 ft?\n\nP\n03/21/23 3:41 PM Beth Cardoza Bid waiting on a walkthrough. Maybe it happened today?? Supposed to stock like Friday---\n02/23/23 4:27 PM Beth Cardoza Ready about the 21st of March---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2935 - N/A - 2073 Hwy 65, Buffalo - McConnell, Kirk - Kirk 417-294-7179 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.294Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "db8mnvpbqf6igyq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.477Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Houston, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Houston (417) 839-6092",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1314 Emerald Hills Dr, Nixa",
+ "Job_Codes": "2934 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 1314 Emerald Hills Dr, Nixa - Houston, Paul",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2934",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2934 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/27/23 2:47 PM Beth Cardoza Awarded on Friday. Anxiously waiting to be scheduled in.---\n03/14/23 11:12 AM Beth Cardoza He is entertaining other bids. Waiting for confirmation at this point.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2934 - Ceiling - 1314 Emerald Hills Dr, Nixa - Houston, Paul - Paul Houston (417) 839-6092 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.354Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9c7vp4acn016u7g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.597Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Henning",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 239-4397",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "190 Tara Ct, Forsyth",
+ "Job_Codes": "2933 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 190 Tara Ct, Forsyth - Henning",
+ "Job_Name": "Finish",
+ "Job_Number": "2933",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2933 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/11/23 4:37 PM Beth Cardoza Never heard back---\n02/14/23 10:13 AM Beth Cardoza Gave verbal of approx .65 per sqft and .60 per sqft of smooth on top of that.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2933 - Finish - 190 Tara Ct, Forsyth - Henning - (417) 239-4397 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.407Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5fcwblgng9rt9bv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.717Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3233 E Sunshine Suite 104, Spfd",
+ "Job_Codes": "2932 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3233 E Sunshine Suite 104, Spfd - Bateman, Ronnie",
+ "Job_Name": "N/A",
+ "Job_Number": "2932",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2932 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2932 - N/A - 3233 E Sunshine Suite 104, Spfd - Bateman, Ronnie - Ronnie - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.455Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "63yy2f3yq03tvbi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.828Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1123 Spokane Rd, Spokane, 65754",
+ "Job_Codes": "2931 - Spokane School Bond project",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spokane School Bond project - 1123 Spokane Rd, Spokane, 65754 - Nabholtz",
+ "Job_Name": "Spokane School Bond project",
+ "Job_Number": "2931",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2931 - Spokane School Bond project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2931 - Spokane School Bond project - 1123 Spokane Rd, Spokane, 65754 - Nabholtz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.507Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t96fg2c5xfk01kf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:03.937Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Sunshine & McCurry",
+ "Job_Codes": "2930 - Shell/ Starbucks",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2930%20Ross%20%28ShellStarbucks%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Shell/ Starbucks - Sunshine & McCurry - Ross Construction Group",
+ "Job_Name": "Shell/ Starbucks",
+ "Job_Number": "2930",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2930 - Shell/ Starbucks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2930 - Shell/ Starbucks - Sunshine & McCurry - Ross Construction Group - Julie Wallace - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.558Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ar4p3bs82j8ssul",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.057Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Victoria Ramsey (417)521-8041",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Farm Rd 116, Strafford",
+ "Job_Codes": "2929 - Tyler Smith",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2929%20Tyler%20Smith%20%28Farm%20Rd%20116%2C%20Spfd%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Tyler Smith - Farm Rd 116, Strafford - Weber, Bryon",
+ "Job_Name": "Tyler Smith",
+ "Job_Number": "2929",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2929 - Tyler Smith",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/10/23 3:02 PM Beth Cardoza It is located in Strafford, Mo. At this time we are needing you to bid a level 5 finish. Regarding the window wraps, corners and etc. is unknown at this time. Once we hear from them and the interior designer, I can send you a\n02/20/23 12:49 PM Beth Cardoza Basement NOT finished---\n02/10/23 2:43 PM Beth Cardoza Might not bid. Need to discuss with Rick---\n02/10/23 2:01 PM Beth Cardoza plans for Tyler and Brandi Smith (this is Lori Wilson’s son). His home will be located on a portion of what you might know as the Darrel and Lori Wilson property. However; he will have a separate driveway off of Farm Road 116",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2929 - Tyler Smith - Farm Rd 116, Strafford - Weber, Bryon - Victoria Ramsey (417)521-8041 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.606Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wq7xv2nmdemn2tr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.169Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "237 Country Bluff Dr, Branson",
+ "Job_Codes": "2928 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 237 Country Bluff Dr, Branson - Krueger, Paul",
+ "Job_Name": "Remodel",
+ "Job_Number": "2928",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2928 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2928 - Remodel - 237 Country Bluff Dr, Branson - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.658Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ncgfdjkix05x6sg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.286Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "The Winkley Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Daniel Gurley 479.392.7229",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "2927 - Tiny House",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2927%20Tiny%20House%20%28Gurley%2C%20Daniel%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Tiny House - Spfd - The Winkley Company",
+ "Job_Name": "Tiny House",
+ "Job_Number": "2927",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2927 - Tiny House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 4:43 PM Beth Cardoza Assumed not awarded---\n02/08/23 11:30 AM Beth Cardoza Springfield Mo is thee location and looking to have estimates back by this Friday, thanks!---\n02/08/23 11:23 AM Beth Cardoza Let’s go with the standard texture with stomp knock down ceilings and orange peel walls. The corners will be square and have drywall and far as the commencement date will depend on how quickly we get all the estimates in an",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2927 - Tiny House - Spfd - The Winkley Company - Daniel Gurley 479.392.7229 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.717Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8gyjtyrcuxqkspc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.421Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "North Seymour",
+ "Job_Codes": "2926 - Messengale",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Messengale - North Seymour - Concept2Completion",
+ "Job_Name": "Messengale",
+ "Job_Number": "2926",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2926 - Messengale",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/08/23 11:04 AM Beth Cardoza Looking for budget #s. Wouldn't be ready until early fall---\n02/08/23 10:05 AM Beth Cardoza Job will be just North of Seymour Mo. 3 miles\n\nStandard light stomp on all ceilings with light orange peel for walls\n5/8 ceiling in main garage.\nBall court will have a 10ft tall concrete wall that is going to be exposed.\non",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2926 - Messengale - North Seymour - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.778Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rg1rd41w4axu5vw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.561Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2925 - Rocky Shores #22",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #22 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #22",
+ "Job_Number": "2925",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2925 - Rocky Shores #22",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/20/23 3:03 PM Beth Cardoza CO: Hey David, I’m gonna have a drywall repair for Monday at unit 22 rocky shore. We had to take a shower out and put a new handicap shower in.---\n03/08/23 7:47 AM david cardoza Stock 10,474\nLeftover 528\nHang 9,946---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2925 - Rocky Shores #22 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.826Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fb16zdlpqgft3t8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.676Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2924 - Rocky Shores #34",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #34 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #34",
+ "Job_Number": "2924",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2924 - Rocky Shores #34",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/23/23 12:17 PM Beth Cardoza Rocky shores lockboxes Code 7855\nUnit 4, 34, 17, 27\nThere is a lockbox on the backside of the post of the front deck. This unlocks all the buildings.---\n02/15/23 10:54 AM david cardoza Stock 12,778\nLeftover 368\nHang 11,410---\n02/07/23 4:07 PM Beth Cardoza Rocky shores building 34 \n\nTwo-story building with walkout basement. Basement level all 9 foot flat. Main level all 9 foot flat. Upstairs is a one bedroom one bathroom with sidewalls up to 9 foot flat. 12,778 feet stock. Per",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2924 - Rocky Shores #34 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.873Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "41qccrycds3lo5z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.796Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "That Builder",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Thatcher",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2706 W Chestnut Expressway, Spfd",
+ "Job_Codes": "2923 - My Movers warehouses",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2923%20My%20Movers%20warehouses%20%282706%20W%20Chestnut%20Expressway%2C%20Spfd%29%20%28That%20Builder%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "My Movers warehouses - 2706 W Chestnut Expressway, Spfd - That Builder",
+ "Job_Name": "My Movers warehouses",
+ "Job_Number": "2923",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2923 - My Movers warehouses",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "7193303715",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2923 - My Movers warehouses - 2706 W Chestnut Expressway, Spfd - That Builder - Robert Thatcher - 7193303715",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.934Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fp4mwwneslf553h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:04.913Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2443 W Rockwood St, Spfd",
+ "Job_Codes": "2922 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2443 W Rockwood St, Spfd - Cowherd",
+ "Job_Name": "Remodel",
+ "Job_Number": "2922",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2922 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2922 - Remodel - 2443 W Rockwood St, Spfd - Cowherd - 417-887-1600 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:47.994Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sdrm5mq95yqrnvd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.025Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RSI",
+ "Contact_Notes": "",
+ "Contact_Person": "Ron Sparks",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "E. Kearney",
+ "Job_Codes": "2921 - Oreilly Auto",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Oreilly Auto - E. Kearney - RSI",
+ "Job_Name": "Oreilly Auto",
+ "Job_Number": "2921",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2921 - Oreilly Auto",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2921 - Oreilly Auto - E. Kearney - RSI - Ron Sparks - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.057Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w66isv75y3s9qb1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.153Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BDH",
+ "Contact_Notes": "",
+ "Contact_Person": "Kwarren@bdh.us.com",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "2920 - Oreilly Auto",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Oreilly Auto - Springfield - BDH",
+ "Job_Name": "Oreilly Auto",
+ "Job_Number": "2920",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2920 - Oreilly Auto",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2920 - Oreilly Auto - Springfield - BDH - Kwarren@bdh.us.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.123Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j2pehod0x9aqqzb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.291Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2919 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - ",
+ "Job_Name": "N/A",
+ "Job_Number": "2919",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2919 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/03/23 7:31 AM david cardoza First Stock 7,908\nSecond stock 916\nLeftover 108\nHang 8,716---\n02/24/23 1:56 PM Beth Cardoza Can you please requote this leaving out the pool room and using 5/8” rock on the ceilings that are on 24” centers. Also in the garage quote only the ceiling and the wall between the house and the garage. Also please include \n02/09/23 11:08 AM Beth Cardoza Dave walkthrough notes 2/9/23\n\n5327 N. Clear Brook Ln \nStrafford, Mo. \n\nG Loomis\n\nSingle level house that is attached to an existing house. Could be about 8000 feet of drywall. \n \nThree car garage at 9 foot over concrete. \n02/07/23 4:00 PM Beth Cardoza Waiting for info. Dave plans to walk it---",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2919 - N/A - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.170Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3ae5vg9uvnmkri5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.425Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Bruner",
+ "Job_Codes": "2918 - Thompson",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2918%20Thompson%20%28Bruner%29%20%28Essick%2C%20Dusty%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Thompson - Bruner - Essick, Dusty",
+ "Job_Name": "Thompson",
+ "Job_Number": "2918",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2918 - Thompson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/06/23 11:11 AM Beth Cardoza New construction 6-8 months out. One level, 9 & 10' ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2918 - Thompson - Bruner - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.235Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "61ias7lghxm936v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.549Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "479 Timberwood, Ozark",
+ "Job_Codes": "2917 - Maslowsky",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Maslowsky - 479 Timberwood, Ozark - Essick, Dusty",
+ "Job_Name": "Maslowsky",
+ "Job_Number": "2917",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2917 - Maslowsky",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/02/24 4:04 PM Beth Cardoza CO: Couple of smaller patches---\n03/26/24 1:36 PM Beth Cardoza 479 timber wood\n4568 sf---\n03/18/24 2:28 PM Beth Cardoza Ready maybe end of this week. Estimate needs update/review---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2917 - Maslowsky - 479 Timberwood, Ozark - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.298Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "03e3rdempp6t85b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.665Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy (417) 598-0828",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2916 - Spec house",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spec house - - Vision construction",
+ "Job_Name": "Spec house",
+ "Job_Number": "2916",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2916 - Spec house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/05/23 12:43 PM Beth Cardoza Came back and ended up with a new job number. 3012---\n03/21/23 3:43 PM Beth Cardoza Never heard back from him---\n02/07/23 11:06 AM Beth Cardoza Emailed and asked for plans---\n02/07/23 2:23 PM Beth Cardoza He emailed saying he has been out of town with some family things and will get with me when he gets back in town.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2916 - Spec house - - Vision construction - Jeremy (417) 598-0828 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.359Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5a5yjq64gx0wwkx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.793Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Vision construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy (417) 598-0828",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "?",
+ "Job_Codes": "2915 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - ? - Vision construction",
+ "Job_Name": "Finish",
+ "Job_Number": "2915",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2915 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/21/23 3:43 PM Beth Cardoza Never hear back from him---\n02/21/23 12:14 PM Beth Cardoza Eddie hasn't been able to reach him. Has called 3 times. Last time being Wed 2/15---\n02/07/23 10:56 AM Beth Cardoza waiting for information including address---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2915 - Finish - ? - Vision construction - Jeremy (417) 598-0828 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.431Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "81jg55jsedurwnz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:05.913Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3110 W Ellison, Spfd",
+ "Job_Codes": "2914 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 3110 W Ellison, Spfd - Krueger, Paul",
+ "Job_Name": "Addition",
+ "Job_Number": "2914",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2914 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/14/23 4:17 PM Beth Cardoza Starts this week? I never got any information... waiting on Eddie walk. Might have fallen through the cracks---\n02/07/23 10:55 AM Beth Cardoza Eddie plans to look at this---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2914 - Addition - 3110 W Ellison, Spfd - Krueger, Paul - Paul Krueger - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.487Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3o8z6iwh5skxahy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.037Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sparks Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Mayra Escobedo",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2144 E. Kearney St. Springfield, MO 65803",
+ "Job_Codes": "2913 - Oreilly Auto Parts",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2913%20Oreilly%20Auto&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Oreilly Auto Parts - 2144 E. Kearney St. Springfield, MO 65803 - Sparks Group",
+ "Job_Name": "Oreilly Auto Parts",
+ "Job_Number": "2913",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2913 - Oreilly Auto Parts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4697200042",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2913 - Oreilly Auto Parts - 2144 E. Kearney St. Springfield, MO 65803 - Sparks Group - Mayra Escobedo - 4697200042",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.561Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1celcm0y45kewwi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.173Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cornerstone Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Cornerstone",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2912 - Nixa Fire",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Fire - - Cornerstone Builders",
+ "Job_Name": "Nixa Fire",
+ "Job_Number": "2912",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2912 - Nixa Fire",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2912 - Nixa Fire - - Cornerstone Builders - Cornerstone - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.611Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p34vyffhgxqp0nt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.324Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Dewitt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2911 - Nixa Fire Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Fire Station - - Dewitt",
+ "Job_Name": "Nixa Fire Station",
+ "Job_Number": "2911",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2911 - Nixa Fire Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2911 - Nixa Fire Station - - Dewitt - Dewitt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.673Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pdk1rpc6i327y1h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.453Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Nesbitt",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2910 - Nixa Fire",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Fire - - Nesbitt",
+ "Job_Name": "Nixa Fire",
+ "Job_Number": "2910",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2910 - Nixa Fire",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2910 - Nixa Fire - - Nesbitt - Nesbitt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.722Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cwz5an91top7bfb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.561Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crossland",
+ "Contact_Notes": "",
+ "Contact_Person": "Crossland",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2909 - Nixa Fire",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Fire - - Crossland",
+ "Job_Name": "Nixa Fire",
+ "Job_Number": "2909",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2909 - Nixa Fire",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2909 - Nixa Fire - - Crossland - Crossland - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.782Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3byxcod7d6l2ijd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.677Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Construct",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2908 - Nixa Fire",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nixa Fire - - Construct",
+ "Job_Name": "Nixa Fire",
+ "Job_Number": "2908",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2908 - Nixa Fire",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/23 10:37 AM Beth Cardoza Construct Not awarded contract---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2908 - Nixa Fire - - Construct - Construct - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.839Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "94tu79ciz7hxivm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.797Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry Burnett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "552 N FR 199, Spfd",
+ "Job_Codes": "2907 - Personal patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Personal patches - 552 N FR 199, Spfd - Burnett Homes",
+ "Job_Name": "Personal patches",
+ "Job_Number": "2907",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2907 - Personal patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/07/23 10:54 AM Beth Cardoza Assuming it is T&M job unless otherwise noted...---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2907 - Personal patches - 552 N FR 199, Spfd - Burnett Homes - Jerry Burnett - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.898Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l5f0azpj5or47i5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:06.909Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Graves ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bradgnci@outlook.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "815 N Sherman Ave.",
+ "Job_Codes": "2906 - Lincoln Hall Health Science Reno",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2906%20Nesbitt%20%28%20Lincoln%20Hall%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lincoln Hall Health Science Reno - 815 N Sherman Ave. - Nesbitt",
+ "Job_Name": "Lincoln Hall Health Science Reno",
+ "Job_Number": "2906",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2906 - Lincoln Hall Health Science Reno",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178181071",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2906 - Lincoln Hall Health Science Reno - 815 N Sherman Ave. - Nesbitt - Brad Graves - 4178181071",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:48.950Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mjh30c1dmamn69e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.041Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryan Miller",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bryan.miller@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1306 West Sunshine Street, Springfield, MO 65807,",
+ "Job_Codes": "2905 - A-1 Custom Carecare",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2905%20Nabholtz%20%28A%2D1%20Custom%20Car%20Care%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "A-1 Custom Carecare - 1306 West Sunshine Street, Springfield, MO 65807, - Nabholtz",
+ "Job_Name": "A-1 Custom Carecare",
+ "Job_Number": "2905",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2905 - A-1 Custom Carecare",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173151214",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2905 - A-1 Custom Carecare - 1306 West Sunshine Street, Springfield, MO 65807, - Nabholtz - Bryan Miller - 4173151214",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.013Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w868v2unp8y1fq3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.157Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "279 Pebble Beach Dr, Branson",
+ "Job_Codes": "2904 - Murray",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Murray - 279 Pebble Beach Dr, Branson - Pitts, Doug",
+ "Job_Name": "Murray",
+ "Job_Number": "2904",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2904 - Murray",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/14/24 12:01 PM Beth Cardoza David \nAt Murray there is some type of electrical short and in order to fix it Andy is having to cut out a section of sheetrock in the basement to fix it. He’s going to put the sheetrock back so hoping it will be an easy fix\n04/09/24 9:30 AM Beth Cardoza CO: Murray master fireplace.\n\nCould you do metal studs and concrete board here?\nDavid this fireplace is drywall not stone or tile.\nWe still have to use concrete board over the metal studs. We learned that drywall is not consi\n04/09/24 9:58 AM Beth Cardoza We haven't started the job so probably just fact that we are framing it and using concrete board is the part that is billable change order.---\n05/08/24 9:36 AM Beth Cardoza Doug says this is still needing to be done.---\n04/25/24 7:28 AM david cardoza Cold wall stock 672\nNo Leftover from cold wall\nPrimary Stock 22,004\nAdditional stock (1,648 )\nFinal additional stock 400' WR board\nTotal stock NOT including cold wall 24,052\nLeftover 496\nFinal board hung 23,556\n( note: I ha\n04/23/24 10:03 AM Beth Cardoza Stock: 22,004---\n04/25/24 7:27 AM Beth Cardoza Cold wall stock 672---\n02/09/24 2:10 PM Beth Cardoza 6 drywall arches…the rest are stone arches\n\n \n\n2 arched windows w/ drywall return.\n\n \n\nNote: We are waiting for window installation to confirm that we can have drywall return….if not we will be going back to traditional trim\n02/07/24 3:18 PM Beth Cardoza We are finished framing and expect to be ready for drywall approx.. 3/18.\n\nWe ended up deleting the entire second floor, and replaced 600 sq.ft. of drywall with stone (I have it marked on walls) could you please have it measu\n02/07/24 3:17 PM Beth Cardoza Beth and David \nI spoke with Amelia and she’d like to have you quote it 2 ways. \n\n1. All Level 4, except garages and closets can be light orange peel \n\n2. All light orange peel.---\n10/30/23 10:59 AM Beth Cardoza Start framing next week. Took off second story and stairs up to it to reduce costs.---\n08/31/23 1:07 PM Beth Cardoza Starting foundation next week---\n01/30/23 10:20 AM Beth Cardoza Lets assume:\nLevel 4 in important areas of main\nLight orange everywhere else\nSquare corners\nNo window wrap\nWont be ready until late fall.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2904 - Murray - 279 Pebble Beach Dr, Branson - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.069Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ly213y3vl6ka6bh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.273Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fair & True Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Brown (417) 630-1649",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "21425 Hwy Rd Bolivar",
+ "Job_Codes": "2903 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 21425 Hwy Rd Bolivar - Fair & True Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "2903",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2903 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/05/24 2:24 PM Beth Cardoza Client is using someone else overall---\n10/23/23 10:19 AM Beth Cardoza This is his personal house and it’s not being rushed, his other work will come first and when he’s caught up he will finish some small stuff in this house then it’ll be ready,---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2903 - N/A - 21425 Hwy Rd Bolivar - Fair & True Construction - Ben Brown (417) 630-1649 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.118Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "javgr66c2mduqop",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.389Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brown, Ben",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben (417) 630-1649",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1651 W Lennox Dr, Spfd",
+ "Job_Codes": "2902 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 1651 W Lennox Dr, Spfd - Brown, Ben",
+ "Job_Name": "Bath",
+ "Job_Number": "2902",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2902 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2902 - Bath - 1651 W Lennox Dr, Spfd - Brown, Ben - Ben (417) 630-1649 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.166Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bcb8edx3cn2ev0j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.508Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tkachuk, Peter",
+ "Contact_Notes": "",
+ "Contact_Person": "Peter (612) 636-6924",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1319 Mockingbird Rd, Fordland",
+ "Job_Codes": "2901 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1319 Mockingbird Rd, Fordland - Tkachuk, Peter",
+ "Job_Name": "N/A",
+ "Job_Number": "2901",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2901 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/10/23 4:26 PM Beth Cardoza He didn't show up to meet Eddie at appointments twice and he hasn't got in touch with him since. Assuming not awarded.---\n02/14/23 4:15 PM Beth Cardoza Eddie scheduled to walk on Thursday 16th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2901 - N/A - 1319 Mockingbird Rd, Fordland - Tkachuk, Peter - Peter (612) 636-6924 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.209Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yfsuxq61rign5yx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.625Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke (417) 224-2994",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2921 W Chestnut, Spfld",
+ "Job_Codes": "2900 - Hammers Autoworks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hammers Autoworks - 2921 W Chestnut, Spfld - Concept2Completion",
+ "Job_Name": "Hammers Autoworks",
+ "Job_Number": "2900",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2900 - Hammers Autoworks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/07/23 3:55 PM Beth Cardoza Jacob is going to get a board count. But basic info: The two pictures are the same thing, but one shows a couple of extra rooms (the ones circled) that the other does not. It's all 5/8\" board and all 8' ceilings (even though \n02/06/23 4:58 PM Beth Cardoza Have plans, but need Jacob to go over them with me to explain what's going on.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2900 - Hammers Autoworks - 2921 W Chestnut, Spfld - Concept2Completion - Tim Schwenke (417) 224-2994 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.262Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zcl6vqbsl429igj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.741Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "168 Amherst St, Hollister",
+ "Job_Codes": "2899 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 168 Amherst St, Hollister - Peach Tree",
+ "Job_Name": "Remodel",
+ "Job_Number": "2899",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2899 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2899 - Remodel - 168 Amherst St, Hollister - Peach Tree - Chad (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.319Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "foevxtkfudc310c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.865Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wood, Emily",
+ "Contact_Notes": "",
+ "Contact_Person": "Emily 417 773 4479",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4410 E Cross Timbers Ct, Spfd",
+ "Job_Codes": "2898 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4410 E Cross Timbers Ct, Spfd - Wood, Emily",
+ "Job_Name": "N/A",
+ "Job_Number": "2898",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2898 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/26/23 12:16 PM Beth Cardoza There was another finisher on site at the same time walking it and gave a low bid on the spot.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2898 - N/A - 4410 E Cross Timbers Ct, Spfd - Wood, Emily - Emily 417 773 4479 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.373Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zil4s7eo9ufadkl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:07.989Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2897 - BL Hall 5",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL Hall 5 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL Hall 5",
+ "Job_Number": "2897",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2897 - BL Hall 5",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/05/24 5:45 PM Beth Cardoza Costs hit job. Never billed. Still showing pending on smartsheet a year later---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2897 - BL Hall 5 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.422Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zw9c2o8o1j1bum8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.125Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2896 - ###New Job###",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "###New Job### - - ",
+ "Job_Name": "###New Job###",
+ "Job_Number": "2896",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2896 - ###New Job###",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2896 - ###New Job### - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.474Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tp14trb1ui6fn71",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.248Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2895 - Landshark Bar & Grill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Landshark Bar & Grill - Branson Landing - Krueger, Paul",
+ "Job_Name": "Landshark Bar & Grill",
+ "Job_Number": "2895",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2895 - Landshark Bar & Grill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2895 - Landshark Bar & Grill - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.529Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "chjzk31i1u4trqz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.377Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2894 - BL #512",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #512 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #512",
+ "Job_Number": "2894",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2894 - BL #512",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/05/24 5:46 PM Beth Cardoza Found job not billed now, a year later.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2894 - BL #512 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.577Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2xjikuwm8ag65iy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.492Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2893 - BL #404",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #404 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #404",
+ "Job_Number": "2893",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2893 - BL #404",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2893 - BL #404 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.626Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vmh04ygcw9jppfk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.640Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2892 - BL #401-#402",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #401-#402 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #401-#402",
+ "Job_Number": "2892",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2892 - BL #401-#402",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2892 - BL #401-#402 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.678Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ooxlvndy8r268l3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.800Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2891 - BL #204",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #204 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #204",
+ "Job_Number": "2891",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2891 - BL #204",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2891 - BL #204 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.726Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4bwegv0qok6akdy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:08.910Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2890 - BL #203",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #203 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #203",
+ "Job_Number": "2890",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2890 - BL #203",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2890 - BL #203 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.774Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rkmy3z6hnwqa6xu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2889 - BL #202",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #202 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #202",
+ "Job_Number": "2889",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2889 - BL #202",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2889 - BL #202 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.830Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qh771tc6fy8tqkd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.180Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2888 - BL #201",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #201 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #201",
+ "Job_Number": "2888",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2888 - BL #201",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2888 - BL #201 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.886Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jbogy4pzk9sl4ar",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.329Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2887 - BL #306",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #306 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #306",
+ "Job_Number": "2887",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2887 - BL #306",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2887 - BL #306 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.938Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1kv6d1el6l88qb2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.437Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2886 - BL #304",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #304 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #304",
+ "Job_Number": "2886",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2886 - BL #304",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2886 - BL #304 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:49.982Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xnob95pp6ytsvfa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.558Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2885 - BL #303",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #303 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #303",
+ "Job_Number": "2885",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2885 - BL #303",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2885 - BL #303 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.029Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8zfuu0blxuci5wv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.661Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2884 - BL #302",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #302 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #302",
+ "Job_Number": "2884",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2884 - BL #302",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2884 - BL #302 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.089Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2neborlomee2n3m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.769Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2883 - BL #301",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #301 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #301",
+ "Job_Number": "2883",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2883 - BL #301",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2883 - BL #301 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.146Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p3u1ea1652q0bvm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:09.877Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2882 - BL 3 Hall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL 3 Hall - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL 3 Hall",
+ "Job_Number": "2882",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2882 - BL 3 Hall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2882 - BL 3 Hall - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.207Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y873612ko0ay2mp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.001Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2881 - BL Hall 2",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL Hall 2 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL Hall 2",
+ "Job_Number": "2881",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2881 - BL Hall 2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2881 - BL Hall 2 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.253Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yebvuv5w8s5uyan",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.117Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Landing",
+ "Job_Codes": "2880 - BL #206",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #206 - Branson Landing - Krueger, Paul",
+ "Job_Name": "BL #206",
+ "Job_Number": "2880",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2880 - BL #206",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2880 - BL #206 - Branson Landing - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.302Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9tdfqbv8cf3kkq8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.249Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Marsh, Chad",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad (417) 619-3819",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "731 W Butterfield, Nixa",
+ "Job_Codes": "2879 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 731 W Butterfield, Nixa - Marsh, Chad",
+ "Job_Name": "Patch",
+ "Job_Number": "2879",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2879 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/24/23 2:23 PM Beth Cardoza Scheduled for 7am Friday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2879 - Patch - 731 W Butterfield, Nixa - Marsh, Chad - Chad (417) 619-3819 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.350Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ps0c3kgtryfpn87",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.357Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Battaglia, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew (417) 559-6077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5545 State Hwy 265, Branson",
+ "Job_Codes": "2878 - Motel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Motel - 5545 State Hwy 265, Branson - Battaglia, Andrew",
+ "Job_Name": "Motel",
+ "Job_Number": "2878",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2878 - Motel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/06/23 12:23 PM Heidi Mahan Code to back door: 6169434 #---\n01/31/23 2:28 PM Beth Cardoza Additional approx. 2' x 2' patches. Possible change order. Review EVA before billing.---\n01/24/23 2:24 PM Beth Cardoza Plan to look at it Thursday or Friday depending on weather---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2878 - Motel - 5545 State Hwy 265, Branson - Battaglia, Andrew - Andrew (417) 559-6077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.406Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "81hbm2qtosrprg2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.485Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Adkins, Karen",
+ "Contact_Notes": "",
+ "Contact_Person": "Karen (417) 838-2773",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "2877 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - Springfield - Adkins, Karen",
+ "Job_Name": "Patch",
+ "Job_Number": "2877",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2877 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/01/23 3:47 PM Beth Cardoza Had a friend take care of it---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2877 - Patch - Springfield - Adkins, Karen - Karen (417) 838-2773 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.453Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "klwujzh9lk21stq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.601Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "SBI",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Hopkins ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tony@springfieldbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2136 E. Kearney St. Spfd",
+ "Job_Codes": "2876 - Oreilly Auto",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2876%20Oreilly%20Auto%20Spfd%20%28SBI%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Oreilly Auto - 2136 E. Kearney St. Spfd - SBI",
+ "Job_Name": "Oreilly Auto",
+ "Job_Number": "2876",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2876 - Oreilly Auto",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178656402",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2876 - Oreilly Auto - 2136 E. Kearney St. Spfd - SBI - Tony Hopkins - 4178656402",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.510Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rsrzg6cph8enn38",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.721Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacCo Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Coble ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "scoble@maccobuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1573 W. Republic Rd.",
+ "Job_Codes": "2875 - Caliber Collision",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2875%20Caliber%20Colision&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Caliber Collision - 1573 W. Republic Rd. - MacCo Builders",
+ "Job_Name": "Caliber Collision",
+ "Job_Number": "2875",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2875 - Caliber Collision",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6206741694",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2875 - Caliber Collision - 1573 W. Republic Rd. - MacCo Builders - Steve Coble - 6206741694",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.570Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dre0olwvwx19jw6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.841Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2874 - Rocky Shores #21",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #21 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #21",
+ "Job_Number": "2874",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2874 - Rocky Shores #21",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/07/23 12:12 PM Beth Cardoza Walk-through notes: \n\nRocky shores building 21 \n\nTwo-story building with walkout basement. Basement level all 9 foot flat. Main level all 9 foot flat. Upstairs is a one bedroom one bathroom with sidewalls up to 9 foot flat--\n02/06/23 8:26 AM david cardoza stock 14,882\nLeftover 246\nHang 14,636---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2874 - Rocky Shores #21 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.622Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6orx3vnz0b1yy6l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:10.961Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3241 N. Grant",
+ "Job_Codes": "2873 - Academy Of Exploration",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2873%20Nesbitt%20%28Academy%20of%20Exploration%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Academy Of Exploration - 3241 N. Grant - Nesbitt",
+ "Job_Name": "Academy Of Exploration",
+ "Job_Number": "2873",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2873 - Academy Of Exploration",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2873 - Academy Of Exploration - 3241 N. Grant - Nesbitt - Joe Jackson - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.678Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1yszfijpsoy644g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.089Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Strother, Jared",
+ "Contact_Notes": "",
+ "Contact_Person": "Jared Strother (417) 839-8490",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "2872 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Springfield - Strother, Jared",
+ "Job_Name": "Remodel",
+ "Job_Number": "2872",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2872 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 12:29 PM Beth Cardoza Eddie walking tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2872 - Remodel - Springfield - Strother, Jared - Jared Strother (417) 839-8490 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.734Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "avrdk6bckb0k4hu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.201Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Allen McMillan",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4830 S. Eldon, Spfd",
+ "Job_Codes": "2871 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4830 S. Eldon, Spfd - Allen McMillan",
+ "Job_Name": "N/A",
+ "Job_Number": "2871",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2871 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2871 - N/A - 4830 S. Eldon, Spfd - Allen McMillan - Allen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.783Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qk20eq0vkedu5e4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.317Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oller, Wes",
+ "Contact_Notes": "",
+ "Contact_Person": "Wes (417) 983 2083",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2870 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - - Oller, Wes",
+ "Job_Name": "N/A",
+ "Job_Number": "2870",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2870 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/07/23 4:48 PM Beth Cardoza Never heard back or got plans from him.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2870 - N/A - - Oller, Wes - Wes (417) 983 2083 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.834Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zdclv5r1ha6hzfb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.429Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3733 E Hutchinson, Spfd",
+ "Job_Codes": "2869 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 3733 E Hutchinson, Spfd - Colton, Jim",
+ "Job_Name": "Cracks",
+ "Job_Number": "2869",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2869 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2869 - Cracks - 3733 E Hutchinson, Spfd - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.889Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "prduxmmagx5wl8c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.565Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland (417) 536-8445",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "11364 State Hwy 39, Aurora",
+ "Job_Codes": "2868 - Berry",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2868%20Berry%20%2811364%20State%20Hwy%2039%2C%20Aurora%29%20%28Sutherland%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Berry - 11364 State Hwy 39, Aurora - Sutherland Construction",
+ "Job_Name": "Berry",
+ "Job_Number": "2868",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2868 - Berry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/24/24 12:17 PM Beth Cardoza Angel Sutherland never heard back from Berry. Assuming not awarded.---\n01/11/23 2:47 PM Beth Cardoza Can you please price with orange peel walls and ceiling---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2868 - Berry - 11364 State Hwy 39, Aurora - Sutherland Construction - Angel Sutherland (417) 536-8445 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:50.944Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p0xwex3qgxmyxrw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.705Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bales Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Block",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "estimating@balesconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Monett",
+ "Job_Codes": "2867 - The Children's Center of Southwest Missouri Monett Addition & Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2867%20Bales%20Const%20%28%20Children%27s%20Center%20%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Children's Center of Southwest Missouri Monett Addition & Renovation - Monett - Bales Construction",
+ "Job_Name": "The Children's Center of Southwest Missouri Monett Addition & Renovation",
+ "Job_Number": "2867",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2867 - The Children's Center of Southwest Missouri Monett Addition & Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2867 - The Children's Center of Southwest Missouri Monett Addition & Renovation - Monett - Bales Construction - Justin Block - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.002Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mafomemur70hjls",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.849Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hansen Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Branson Bachman",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "James River and Sunshine",
+ "Job_Codes": "2866 - Kum & Go Springfield",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2866%20Kum%26Go&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kum & Go Springfield - James River and Sunshine - Hansen Company",
+ "Job_Name": "Kum & Go Springfield",
+ "Job_Number": "2866",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2866 - Kum & Go Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2866 - Kum & Go Springfield - James River and Sunshine - Hansen Company - Branson Bachman - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.050Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u53nexwj3t90xyn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:11.980Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "ELS Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Stuhlsatz 417-569-0301",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "400 S Main St, Nixa",
+ "Job_Codes": "2865 - The Pines",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2865%20The%20Pines%20%28Nixa%29%20%28ELS%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Pines - 400 S Main St, Nixa - ELS Construction",
+ "Job_Name": "The Pines",
+ "Job_Number": "2865",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2865 - The Pines",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/11/23 4:23 PM Beth Cardoza Provide bid for each plan individually\n All materials needed for drywall installation and finishing to be included by drywall contractor –\nincluding drywall, mud, tape, fasteners, etc\n Drywall contractor to be responsible\n01/11/23 9:42 AM Beth Cardoza Would like to have bid back within 2 weeks (2 weeks would be 23rd)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2865 - The Pines - 400 S Main St, Nixa - ELS Construction - Eric Stuhlsatz 417-569-0301 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.118Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1hq6s4u9agwkh7l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:12.244Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Olszewski, Walter",
+ "Contact_Notes": "",
+ "Contact_Person": "Walter (314) 502-1005",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "136 Little Creek Ln, Kim City",
+ "Job_Codes": "2864 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 136 Little Creek Ln, Kim City - Olszewski, Walter",
+ "Job_Name": "N/A",
+ "Job_Number": "2864",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2864 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/09/23 4:32 PM Beth Cardoza I would like a level 4 smooth. \n\nWindows will be drywall return on 3 sides. \n\nSquare corner bead \n\nI will be getting rough-in inspections this week. With insulation install next week. So it will be ready by the end of next we\n01/09/23 3:10 PM Beth Cardoza Sending plans to sales---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2864 - N/A - 136 Little Creek Ln, Kim City - Olszewski, Walter - Walter (314) 502-1005 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.170Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k68zceg43oj7h8r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:12.389Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3082",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2863 - Royal Vista Bld 6 #610",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 6 #610 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 6 #610",
+ "Job_Number": "2863",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2863 - Royal Vista Bld 6 #610",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2863 - Royal Vista Bld 6 #610 - - Krueger, Paul - Paul 417-337-3082 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.213Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8w05q754rig4l40",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:12.527Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3081",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2862 - Royal Vista Bld 6 #607",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 6 #607 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 6 #607",
+ "Job_Number": "2862",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2862 - Royal Vista Bld 6 #607",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2862 - Royal Vista Bld 6 #607 - - Krueger, Paul - Paul 417-337-3081 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.262Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tsw8hsb3mhbzmpw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:12.655Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3080",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2861 - Royal Vista Bld 6 #604",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 6 #604 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 6 #604",
+ "Job_Number": "2861",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2861 - Royal Vista Bld 6 #604",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2861 - Royal Vista Bld 6 #604 - - Krueger, Paul - Paul 417-337-3080 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.323Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bszmwa1xgj6zywh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:12.789Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3079",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2860 - Royal Vista Bld 6 #601",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 6 #601 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 6 #601",
+ "Job_Number": "2860",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2860 - Royal Vista Bld 6 #601",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2860 - Royal Vista Bld 6 #601 - - Krueger, Paul - Paul 417-337-3079 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.382Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kounm28l5kmjm78",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:12.917Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3078",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2859 - Royal Vista Bld 4 #409",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 4 #409 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 4 #409",
+ "Job_Number": "2859",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2859 - Royal Vista Bld 4 #409",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2859 - Royal Vista Bld 4 #409 - - Krueger, Paul - Paul 417-337-3078 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.431Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7do1qikkui0qwy0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.029Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2858 - Royal Vista Bld 4 #403",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 4 #403 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 4 #403",
+ "Job_Number": "2858",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2858 - Royal Vista Bld 4 #403",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2858 - Royal Vista Bld 4 #403 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.487Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iy3ymmygekizioz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.134Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "BP Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "matt@bpbuilder.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "710 N. McCroskey, Nixa, Missouri",
+ "Job_Codes": "2857 - Nixa Fire Station",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2857%20BP%20Nixa%20Fire%20Station%207&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Nixa Fire Station - 710 N. McCroskey, Nixa, Missouri - BP Builders",
+ "Job_Name": "Nixa Fire Station",
+ "Job_Number": "2857",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2857 - Nixa Fire Station",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178876177",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2857 - Nixa Fire Station - 710 N. McCroskey, Nixa, Missouri - BP Builders - Matt Bailey - 4178876177",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.558Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wok72wpq9mec5qy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.263Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2129 East Sunshine Street, Springfield, MO 65804",
+ "Job_Codes": "2856 - Fire Station # 7:",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2856%20Fire%20Station%20%237&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Fire Station # 7: - 2129 East Sunshine Street, Springfield, MO 65804 - Rich Kramer Construction",
+ "Job_Name": "Fire Station # 7:",
+ "Job_Number": "2856",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2856 - Fire Station # 7:",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2856 - Fire Station # 7: - 2129 East Sunshine Street, Springfield, MO 65804 - Rich Kramer Construction - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.614Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "69h4fbui8qgpq0o",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.397Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whitaker, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon (417) 521-8733",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2855 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - - Whitaker, Brandon",
+ "Job_Name": "Water damage",
+ "Job_Number": "2855",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2855 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/10/23 11:36 AM Beth Cardoza Gave the job to someone else.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2855 - Water damage - - Whitaker, Brandon - Brandon (417) 521-8733 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.662Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l7n1lt5vbkbvjm6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.524Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Keet O'Gary Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Keet O'Gary Construction 417-371-1922",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "738 Ozark Hollow Rd, Blue Eye",
+ "Job_Codes": "2854 - Glasshaus Wedding Chapel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Glasshaus Wedding Chapel - 738 Ozark Hollow Rd, Blue Eye - Keet O'Gary Construction",
+ "Job_Name": "Glasshaus Wedding Chapel",
+ "Job_Number": "2854",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2854 - Glasshaus Wedding Chapel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/31/23 11:24 AM Beth Cardoza Would you or Steve please give me the option of using orange peel instead of L4. Also we will need to drywall and finish the dining hall area in new addition. Existing vaulted ceiling in dancing area will remain as is,wood.-\n01/18/23 3:59 PM Beth Cardoza L4 with L5 option. 4 way window wraps in big addition with alot of windows including the dining hall will be 4 way wraps with tearaway.\nThe rest will be cased windows.\nThe ceiling in main area: dining hall and dance floor is",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2854 - Glasshaus Wedding Chapel - 738 Ozark Hollow Rd, Blue Eye - Keet O'Gary Construction - Keet O'Gary Construction 417-371-1922 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.710Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ltxug151zr5l3dc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.647Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Stokes, Rodney",
+ "Contact_Notes": "",
+ "Contact_Person": "Rodney (417) 239-6152",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1905 N 9th Ave, Ozark",
+ "Job_Codes": "2853 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 1905 N 9th Ave, Ozark - Stokes, Rodney",
+ "Job_Name": "Water damage",
+ "Job_Number": "2853",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2853 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2853 - Water damage - 1905 N 9th Ave, Ozark - Stokes, Rodney - Rodney (417) 239-6152 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.770Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fq3s6alrbwjzw04",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.770Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland (417) 536-8445",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "878 Lake Forrest Dr, Galena",
+ "Job_Codes": "2852 - Schmieder",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Schmieder - 878 Lake Forrest Dr, Galena - Sutherland Construction",
+ "Job_Name": "Schmieder",
+ "Job_Number": "2852",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2852 - Schmieder",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/21/23 1:57 PM Beth Cardoza There is a seam in the ceiling needs fixed\nAlso, the electrician put some lights in the wrong place and we need to get the drywall repaired in those places\n\nWe know that will be extra.---\n03/20/23 9:26 AM david cardoza Texture: Light op everywhere. Lets get it approved by owner first.---\n03/15/23 9:47 AM david cardoza Stock 15,632\nLeftover 496\nHang 15,136---\n01/09/23 1:21 PM Beth Cardoza We would need a quote by next week please, it will be ready for you the end of Feb\nCan you give us a price light orange peel ceiling and walls\nNo windows need to be wrapped\nThe address is 878 Lake Forrest Drive Galena---\n01/13/23 4:24 PM Beth Cardoza Actually the windows DO get wrapped!---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2852 - Schmieder - 878 Lake Forrest Dr, Galena - Sutherland Construction - Angel Sutherland (417) 536-8445 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.822Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q3ei3m0muy407rb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:13.909Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland (417) 536-8445",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2233 E Claiborne, Spfd",
+ "Job_Codes": "2851 - Simpson Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Simpson Remodel - 2233 E Claiborne, Spfd - Sutherland Construction",
+ "Job_Name": "Simpson Remodel",
+ "Job_Number": "2851",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2851 - Simpson Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/12/23 10:42 AM Beth Cardoza CO: The homeowners added a wall in existing bedroom 12x12 room\nThe walls in the existing family room already have drywall\nPrice separate---\n01/09/23 1:19 PM Beth Cardoza We would need a quote by Thursday please, to start sheetrock on Jan 18th \nCan you give us a price light knock down vs smooth walls. Then they want this picture below for the ceiling to match the rest of the house.\nNo windows",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2851 - Simpson Remodel - 2233 E Claiborne, Spfd - Sutherland Construction - Angel Sutherland (417) 536-8445 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.878Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7oerngau2qykxp8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.047Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jamco",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry (417) 464-2928 Joseph 417-830-8141",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "205 N Commercial St, Seymour",
+ "Job_Codes": "2850 - Seymour Senior Center",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Seymour Senior Center - 205 N Commercial St, Seymour - Jamco",
+ "Job_Name": "Seymour Senior Center",
+ "Job_Number": "2850",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2850 - Seymour Senior Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/08/23 10:35 AM Beth Cardoza Job awarded. Center is in full operation and occupied and so we'll be working around them and them around us. They need 2 weeks notice so they can announce publish in advance. Needs to be re-estimated. Rick to walk hopefull",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2850 - Seymour Senior Center - 205 N Commercial St, Seymour - Jamco - Jerry (417) 464-2928 Joseph 417-830-8141 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.942Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gqlnrqycordqdo9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.175Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kruegar, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Kruegar",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "143 Arizona Dr, Branson",
+ "Job_Codes": "2849 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 143 Arizona Dr, Branson - Kruegar, Paul",
+ "Job_Name": "Patch",
+ "Job_Number": "2849",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2849 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2849 - Patch - 143 Arizona Dr, Branson - Kruegar, Paul - Paul Kruegar - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:51.998Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "avibw48qqz6pi0t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.277Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harvest Ministries",
+ "Contact_Notes": "",
+ "Contact_Person": "DAn (318) 481-6097",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3114 E Sunset, Spfd",
+ "Job_Codes": "2848 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 3114 E Sunset, Spfd - Harvest Ministries",
+ "Job_Name": "Repairs",
+ "Job_Number": "2848",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2848 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/06/23 4:51 PM Beth Cardoza Eddie meeting on Monday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2848 - Repairs - 3114 E Sunset, Spfd - Harvest Ministries - DAn (318) 481-6097 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.051Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ir9uq5md1ip9kcn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.415Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul Krueger 417-337-3077, Darrell Breeden, occupant (479) 926-8400",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2847 - Royal Vista Bld 4 #406",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista Bld 4 #406 - - Krueger, Paul",
+ "Job_Name": "Royal Vista Bld 4 #406",
+ "Job_Number": "2847",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2847 - Royal Vista Bld 4 #406",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2847 - Royal Vista Bld 4 #406 - - Krueger, Paul - Paul Krueger 417-337-3077, Darrell Breeden, occupant (479) 926-8400 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.106Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4cv4l9btwkg0z2a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.549Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "RaeLei Farmer ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rfarmer@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "483 Hatchery Road, Branson, MO 65616, United States of America",
+ "Job_Codes": "2846 - Shepherd of the Hills Fish Hat",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2846%20Shepard%20of%20The%20Hills%20Fish%20Hatchery&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Shepherd of the Hills Fish Hat - 483 Hatchery Road, Branson, MO 65616, United States of America - Branco",
+ "Job_Name": "Shepherd of the Hills Fish Hat",
+ "Job_Number": "2846",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2846 - Shepherd of the Hills Fish Hat",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174515250",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2846 - Shepherd of the Hills Fish Hat - 483 Hatchery Road, Branson, MO 65616, United States of America - Branco - RaeLei Farmer - 4174515250",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.175Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zhljoi16lrilrb7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.676Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1844 S Broadway Ave, Spfd",
+ "Job_Codes": "2845 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1844 S Broadway Ave, Spfd - Nav Construction",
+ "Job_Name": "Patch",
+ "Job_Number": "2845",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2845 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2845 - Patch - 1844 S Broadway Ave, Spfd - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.226Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iohpq56jh9c4h6a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.778Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4603 N 17th St, Ozark",
+ "Job_Codes": "2844 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 4603 N 17th St, Ozark - Nav Construction",
+ "Job_Name": "Patch",
+ "Job_Number": "2844",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2844 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2844 - Patch - 4603 N 17th St, Ozark - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.286Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oa800w5y9yjttt2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:14.916Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "RaeLei Farmer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rfarmer@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Reed Springs",
+ "Job_Codes": "2843 - Stone County Health Department",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2843%20Branco%20%28Stone%20County%20Health%20Dept%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Stone County Health Department - Reed Springs - Branco",
+ "Job_Name": "Stone County Health Department",
+ "Job_Number": "2843",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2843 - Stone County Health Department",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174515250",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2843 - Stone County Health Department - Reed Springs - Branco - RaeLei Farmer - 4174515250",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.334Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4muxdzh1h0hssrt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.028Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Windy Ridge Ln",
+ "Job_Codes": "2842 - Float",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Float - Windy Ridge Ln - Still, Mark",
+ "Job_Name": "Float",
+ "Job_Number": "2842",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2842 - Float",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2842 - Float - Windy Ridge Ln - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.393Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vggqtjuyfao1tbb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.168Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfd",
+ "Job_Codes": "2841 - LWH 23",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 23 - Spfd - Everlasting Homes",
+ "Job_Name": "LWH 23",
+ "Job_Number": "2841",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2841 - LWH 23",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/25/23 3:27 PM Beth Cardoza CO: Vanity light repair. Might be a couple other ones, but so far looks like just the one---\n10/13/23 3:39 PM Beth Cardoza CO Lwh 23 \nSmall repair---\n04/03/23 7:15 AM david cardoza Stock 9,044 (included coldwall?)\nI will assume that for now it did include the coldwall. I will estimate cold wall was about 6 sheets @ 288 ft.\nSecond stock 336\nTotal stock 9380.\nHang less cold wall 9,092 ft.---\n03/02/23 2:43 PM Beth Cardoza Need info for quote---\n02/28/23 3:09 PM Beth Cardoza Not started yet. Also not walked yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2841 - LWH 23 - Spfd - Everlasting Homes - Jerry 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.445Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pe02zmh16h82ku2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.338Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2840 - LWH 15",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 15 - - Everlasting Homes",
+ "Job_Name": "LWH 15",
+ "Job_Number": "2840",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2840 - LWH 15",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/06/23 8:25 AM david cardoza Stock 9,182\nSecond stock 480\nFinal stock 72\nTransfer from Lot 12 was 64'\nTotal stock 9,798\nNo leftover\n(coldwall stock was 632. Figure no leftover from coldwall)\n---------\nHang to Angel 9,798\nFinisher 10,430---\n02/03/23 2:00 PM Beth Cardoza Dave walkthrough notes 2/3/23\nThree car garage at 10 foot high over concrete \n\nSingle level house, all 9 foot flat except for the living room, which is 11 foot flat and the master bedroom which is 15 foot high double vaulted.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2840 - LWH 15 - - Everlasting Homes - Jerry 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.494Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vmujkr2mxr26s7r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.476Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2839 - LWH 14",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 14 - - Everlasting Homes",
+ "Job_Name": "LWH 14",
+ "Job_Number": "2839",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2839 - LWH 14",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/20/24 10:11 AM Beth Cardoza CO: tiny electrical patch by bathroom vanity---\n02/29/24 4:41 PM Beth Cardoza Seth 27th---\n01/10/24 12:06 PM Beth Cardoza CO: Need a few repairs (electrical patches it looks like)---\n04/29/23 10:22 AM david cardoza Prehang on this house was approximately nine sheets of 12’ x 48” = 432\n\nDrywall on job site before the main stock was one sheet of 12 foot drywall\n\nMain stock 8804\nSecond stock 720\nhangers get 9,572\nfinishers get 10,004---\n02/03/23 11:50 AM Beth Cardoza Dave walk through notes 2/3/23:\n\nSingle level crawlspace house. \nThree car garage at 10 foot over concrete. \nMain room and entry is all 10 foot flat ( maybe 11’?)\nas well as the front office. \nRemainder is basically 9 foot f",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2839 - LWH 14 - - Everlasting Homes - Jerry 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.554Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d5453b7vjit4f6i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.599Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CEI",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken Knight 417-343-6844",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3000 E Division, Spfd",
+ "Job_Codes": "2838 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 3000 E Division, Spfd - CEI",
+ "Job_Name": "Water damage",
+ "Job_Number": "2838",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2838 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/18/23 10:17 AM Beth Cardoza found someone cheaper---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2838 - Water damage - 3000 E Division, Spfd - CEI - Ken Knight 417-343-6844 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.623Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "75da3ehcbzuw976",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.738Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1321 Maplewood, Spfd",
+ "Job_Codes": "2837 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1321 Maplewood, Spfd - Bateman, Ronnie",
+ "Job_Name": "Patch",
+ "Job_Number": "2837",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2837 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2837 - Patch - 1321 Maplewood, Spfd - Bateman, Ronnie - Ronnie - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.682Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4jzia131foz977n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.865Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Miller, Jake",
+ "Contact_Notes": "",
+ "Contact_Person": "(636) 575-8381",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "851 Montarosa Dr, Nixa",
+ "Job_Codes": "2836 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 851 Montarosa Dr, Nixa - Miller, Jake",
+ "Job_Name": "Step thru",
+ "Job_Number": "2836",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2836 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/03/23 3:14 PM Beth Cardoza Went with family friend---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2836 - Step thru - 851 Montarosa Dr, Nixa - Miller, Jake - (636) 575-8381 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.742Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yyfw7zrzxhuzn1c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:15.967Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "162 Oak Ln, Stonebridge Village",
+ "Job_Codes": "2835 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 162 Oak Ln, Stonebridge Village - Krueger, Paul",
+ "Job_Name": "Patch",
+ "Job_Number": "2835",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2835 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2835 - Patch - 162 Oak Ln, Stonebridge Village - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.798Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jkz1cczfgujf04u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.137Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "White, Linda",
+ "Contact_Notes": "",
+ "Contact_Person": "Linda White (501) 730-1100",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "878 E Galway Ct, Nixa",
+ "Job_Codes": "2834 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 878 E Galway Ct, Nixa - White, Linda",
+ "Job_Name": "Repairs",
+ "Job_Number": "2834",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2834 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2834 - Repairs - 878 E Galway Ct, Nixa - White, Linda - Linda White (501) 730-1100 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.859Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p89wjkpucwz1ocz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.279Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "House, Ed",
+ "Contact_Notes": "",
+ "Contact_Person": "Ed (417)425-6856",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5574 S Farm Rd 137, Spfd",
+ "Job_Codes": "2833 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 5574 S Farm Rd 137, Spfd - House, Ed",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2833",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2833 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/03/23 11:32 AM Beth Cardoza Possible change order for furniture and stuff being in the way. Offered more money for popcorn, stuck to joints, but Rick said that was on us---\n01/09/23 9:59 AM Beth Cardoza 4 bedrooms and a theater room, including closets. All 8' ceilings. 1324 sqft. Random Roll texture. Basement bedrooms have some paneling walls. Walls will not be re-painted.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2833 - Popcorn scrape - 5574 S Farm Rd 137, Spfd - House, Ed - Ed (417)425-6856 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.910Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aa3yn2zo2ch5rso",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.389Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2832 - Royal Vista #412",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Vista #412 - - Krueger, Paul",
+ "Job_Name": "Royal Vista #412",
+ "Job_Number": "2832",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2832 - Royal Vista #412",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2832 - Royal Vista #412 - - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:52.970Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jmfsf3odb654sig",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.517Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Davis (417) 259-0081",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mtn Grove",
+ "Job_Codes": "2831 - 2nd house",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "2nd house - Mtn Grove - Davis, Jason",
+ "Job_Name": "2nd house",
+ "Job_Number": "2831",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2831 - 2nd house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/06/23 4:30 PM Beth Cardoza Waiting on response on our bid for the first one---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2831 - 2nd house - Mtn Grove - Davis, Jason - Jason Davis (417) 259-0081 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.019Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ey1fxx2vwvzc634",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.639Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Drake, Patrick",
+ "Contact_Notes": "",
+ "Contact_Person": "Patrick (417) 437-0292",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "807 E Roubidoux St. Nixa",
+ "Job_Codes": "2830 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 807 E Roubidoux St. Nixa - Drake, Patrick",
+ "Job_Name": "Patch",
+ "Job_Number": "2830",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2830 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2830 - Patch - 807 E Roubidoux St. Nixa - Drake, Patrick - Patrick (417) 437-0292 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.070Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zop7puymjqddd6u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.769Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob Horman",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St. Ozark Mo",
+ "Job_Codes": "2829 - JRC South TM Water Damage",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "JRC South TM Water Damage - 6100 N. 19th St. Ozark Mo - James River Church",
+ "Job_Name": "JRC South TM Water Damage",
+ "Job_Number": "2829",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2829 - JRC South TM Water Damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2829 - JRC South TM Water Damage - 6100 N. 19th St. Ozark Mo - James River Church - Bob Horman - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.138Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "po1ed5swdfc4q4y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:16.895Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows (417) 527-1095",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "2828 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - Branson - Peach Tree",
+ "Job_Name": "Repairs",
+ "Job_Number": "2828",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2828 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2828 - Repairs - Branson - Peach Tree - Chad Meadows (417) 527-1095 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.206Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hwubs0unj9za0gc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.018Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bybee, Gene",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 860-3551",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "2827 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - Branson - Bybee, Gene",
+ "Job_Name": "Water damage",
+ "Job_Number": "2827",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2827 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/06/23 4:29 PM Beth Cardoza Waiting for it to dry out and Gene to call back---\n01/04/23 6:09 PM Beth Cardoza Waiting for area to dry completely.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2827 - Water damage - Branson - Bybee, Gene - (417) 860-3551 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.254Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fu65j9lvcf8texl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.124Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Seth Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 521-4747",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6041 S Lakepoint Dr, Spfld",
+ "Job_Codes": "2826 - repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "repair - 6041 S Lakepoint Dr, Spfld - Seth Allen",
+ "Job_Name": "repair",
+ "Job_Number": "2826",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2826 - repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2826 - repair - 6041 S Lakepoint Dr, Spfld - Seth Allen - (417) 521-4747 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.315Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fvljh2enqngibc5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.349Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cobb, Brian",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 546-1451",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1444 Savage Rd, Kirbyville",
+ "Job_Codes": "2825 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2825%20%20%28Kirbyville%29%20%28Cobb%2C%20Brian%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 1444 Savage Rd, Kirbyville - Cobb, Brian",
+ "Job_Name": "N/A",
+ "Job_Number": "2825",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2825 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 4:06 PM Beth Cardoza Assumed not awarded. No response---\n12/27/22 3:57 PM Beth Cardoza 1444 savage rd Kirbyville mo 65679\nIt is the next house is on right. Can’t miss it.---\n12/27/22 3:58 PM Beth Cardoza 1 hour 2 minutes from office---\n12/27/22 10:25 AM Beth Cardoza Ready in early or mid February. 1900 floor sqft. all 9' ceilings, except garage probably 10'. Stomp knockdown ceilings orange peel walls, square corners, 3 way window wraps. Wants moisture board at walls and ceilings around",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2825 - N/A - 1444 Savage Rd, Kirbyville - Cobb, Brian - (417) 546-1451 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.367Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y79kpi26292hnzp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.477Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Davis (417) 259-0081",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Mtn Grove",
+ "Job_Codes": "2824 - Vonderhiede",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Vonderhiede - Mtn Grove - Davis, Jason",
+ "Job_Name": "Vonderhiede",
+ "Job_Number": "2824",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2824 - Vonderhiede",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/28/22 1:30 PM Beth Cardoza 9 ft. Walls w a small vault in living. Planning on light knockdown. If homeowner changes mind, it will be an upcharge. Windows have wood extension jambs.\nJason---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2824 - Vonderhiede - Mtn Grove - Davis, Jason - Jason Davis (417) 259-0081 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.427Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "66padfgkguadepm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.599Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wheatley, Linda",
+ "Contact_Notes": "",
+ "Contact_Person": "Linda Wheatley",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "429 Richwood Rd, Ozark",
+ "Job_Codes": "2823 - Ceiling patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling patch - 429 Richwood Rd, Ozark - Wheatley, Linda",
+ "Job_Name": "Ceiling patch",
+ "Job_Number": "2823",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2823 - Ceiling patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/29/22 5:43 PM Beth Cardoza Was a mistake. It was Linda White that had a ceiling water damage repair!---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2823 - Ceiling patch - 429 Richwood Rd, Ozark - Wheatley, Linda - Linda Wheatley - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.482Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qvizq0vqn6z4olb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.727Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillan, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kingsley St, Spfd",
+ "Job_Codes": "2822 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - Kingsley St, Spfd - McMillan, Allen",
+ "Job_Name": "Patch",
+ "Job_Number": "2822",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2822 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2822 - Patch - Kingsley St, Spfd - McMillan, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.534Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hz72429crgo9gdd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.877Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sprague, Bill",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill (817) 889-4048",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1030 Emory Creek Blvd, Branson",
+ "Job_Codes": "2821 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1030 Emory Creek Blvd, Branson - Sprague, Bill",
+ "Job_Name": "Patches",
+ "Job_Number": "2821",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2821 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/28/22 4:17 PM Beth Cardoza Eddie looking at this project around the 7th of January---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2821 - Patches - 1030 Emory Creek Blvd, Branson - Sprague, Bill - Bill (817) 889-4048 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.595Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4hetyeb6us57lar",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:17.988Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "A. Eilers Construction , Adam Eilers",
+ "Contact_Notes": "",
+ "Contact_Person": "Adam Eilers ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "aeilers@aeilersconstruction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2870 S. Ingram Mill Rd., Springfield",
+ "Job_Codes": "2820 - Ameriprise- Springfield, MO",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2820%20Ameriprise&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Ameriprise- Springfield, MO - 2870 S. Ingram Mill Rd., Springfield - A. Eilers Construction , Adam Eilers",
+ "Job_Name": "Ameriprise- Springfield, MO",
+ "Job_Number": "2820",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2820 - Ameriprise- Springfield, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "3146231490",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2820 - Ameriprise- Springfield, MO - 2870 S. Ingram Mill Rd., Springfield - A. Eilers Construction , Adam Eilers - Adam Eilers - 3146231490",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.650Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mp31jtgbsoyz44e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.127Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1000 Summer Rd, Kim City",
+ "Job_Codes": "2819 - LaMastus Res",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2819%20LaMastus%20Res%20%281000%20Summer%20Rd%2C%20Kim%20City%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "LaMastus Res - 1000 Summer Rd, Kim City - Pitts, Doug",
+ "Job_Name": "LaMastus Res",
+ "Job_Number": "2819",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2819 - LaMastus Res",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/31/23 12:58 PM Beth Cardoza Decided not to build---\n12/26/22 3:21 PM Beth Cardoza Level 4 in main areas and master. Orange peel everywhere else.\nSquare bead\nNo wrap on windows\n6 months at least.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2819 - LaMastus Res - 1000 Summer Rd, Kim City - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.714Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3rdr5zx187iml4b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.239Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Aldridge, Mallory",
+ "Contact_Notes": "",
+ "Contact_Person": "(636) 734-4247",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "907 N 42nd St, Nixa",
+ "Job_Codes": "2818 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 907 N 42nd St, Nixa - Aldridge, Mallory",
+ "Job_Name": "Patches",
+ "Job_Number": "2818",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2818 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 4:44 PM Beth Cardoza Never got back to us. Eddie left a couple of voicemails---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2818 - Patches - 907 N 42nd St, Nixa - Aldridge, Mallory - (636) 734-4247 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.790Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g01x6iwkieokusn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.367Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Baty, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "Gary Baty 417-337-1168",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2161 Acacia Club Rd, Hollister",
+ "Job_Codes": "2817 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2161 Acacia Club Rd, Hollister - Baty, Gary",
+ "Job_Name": "N/A",
+ "Job_Number": "2817",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2817 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/27/23 9:42 AM Heidi Mahan Lockbox code: 9501---\n01/19/23 6:58 PM david cardoza Measured 17,948 SQF\nLeftover 2,026\nHang to Angel 15,922\n\nI had REW pickup leftover but instructed them to leave 102' for misc.\n\nAdd an additional 54' to finisher.\nFinisher footage 15,976---\n12/27/22 3:01 PM Beth Cardoza Dave walkthrough notes 12/27/22\nGarage is a little over 10 foot over concrete. Two story house with a bonus room over the garage.\n\nBonus room is double vaulted on the sides to a 9 foot flat at the top. Figure about 80 feet X \n12/22/22 3:51 PM Beth Cardoza Please bid as tree bark on ceilings and orange peel on walls. The corners will be square. Windows will be trimmed.---\n12/19/22 3:37 PM Beth Cardoza Waiting for walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2817 - N/A - 2161 Acacia Club Rd, Hollister - Baty, Gary - Gary Baty 417-337-1168 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.839Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qgzjh042jt9mxsx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.495Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie (417) 848-0010",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "106 W Sherman Way, Nixa",
+ "Job_Codes": "2816 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 106 W Sherman Way, Nixa - Bateman, Ronnie",
+ "Job_Name": "Patch",
+ "Job_Number": "2816",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2816 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/14/22 6:16 PM Beth Cardoza According to iphone maps the place is called Pure Holistic Health Clinic---\n12/14/22 6:15 PM Beth Cardoza Doorway patch in the Acupuncture place next door to where we had the Christmas party. Ready Tuesday afternoon.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2816 - Patch - 106 W Sherman Way, Nixa - Bateman, Ronnie - Ronnie (417) 848-0010 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.890Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "62q4n148xe62tby",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.666Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Petrov, Aurel",
+ "Contact_Notes": "",
+ "Contact_Person": "Aurel (417) 840-2709",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "699 John F Kennedy, Willard",
+ "Job_Codes": "2815 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 699 John F Kennedy, Willard - Petrov, Aurel",
+ "Job_Name": "N/A",
+ "Job_Number": "2815",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2815 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/21/22 2:00 PM Beth Cardoza Just noting that I DID add the unit price wording but then I got plans and sent the FX format with UP wording. So... if it turns out that the footage is much different than what I estimated we should change to price... he ju\n12/14/22 12:41 PM Beth Cardoza Waiting to see if I can get plans. I have an estimate started but if no plans I need to add the UP wording.---\n12/14/22 12:00 PM Beth Cardoza It's a referral from HVAC guy---\n12/14/22 11:58 AM Beth Cardoza Aurel petrov. 699 John f Kennedy Willard mo, 417-840-2709. Aureliypetrov@gmail.com new house , house is 2000 sq ft, and garage is 810 square ft, front bedroom has vault going up to 11ft 9 inch room size is 12x14 , liv",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2815 - N/A - 699 John F Kennedy, Willard - Petrov, Aurel - Aurel (417) 840-2709 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:53.946Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e30onxivpr7thm4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.805Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim 209-8635. Homeowner Travis (417) 699-1960 for scheduling",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "154 Moberly Mill Rd, Branson",
+ "Job_Codes": "2814 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 154 Moberly Mill Rd, Branson - Solar Solutions",
+ "Job_Name": "Patch",
+ "Job_Number": "2814",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2814 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2814 - Patch - 154 Moberly Mill Rd, Branson - Solar Solutions - Tim 209-8635. Homeowner Travis (417) 699-1960 for scheduling - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.006Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vn4rjg28qjt8psl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:18.927Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "2813 - Liberty Mutual",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2813%20Friga%20%28%20Liberty%20Mutual%20%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Liberty Mutual - Springfield - Friga Construction",
+ "Job_Name": "Liberty Mutual",
+ "Job_Number": "2813",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2813 - Liberty Mutual",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178877134",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2813 - Liberty Mutual - Springfield - Friga Construction - Eric Friga - 4178877134",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.067Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "smys6ugd64vfot4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.050Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Campbell, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 551-1102",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1211 S 17th St, Ozark",
+ "Job_Codes": "2812 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1211 S 17th St, Ozark - Campbell, Don",
+ "Job_Name": "N/A",
+ "Job_Number": "2812",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2812 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/23/23 11:29 AM Beth Cardoza House is done and lived in. Apparently not awarded---\n12/12/22 12:13 PM Beth Cardoza Dave walk through notes 12/12\n\n1211 S. 17th St., Ozark, MO\n\nTwo car garage over very uneven coarse rocks at roughly 12 foot depending where you stand. I recommend they get their gravel and or concrete poured before we would \n12/20/22 1:39 PM Beth Cardoza Per Eddie: windows to be trimmed in wood and square bead on corners---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2812 - N/A - 1211 S 17th St, Ozark - Campbell, Don - (417) 551-1102 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.127Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q0dh0tdvoxv4mor",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.168Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "RaeLei Farmer",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rfarmer@branco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "410 South Fiske Street, Marionville, MO 65705",
+ "Job_Codes": "2811 - Marrionville R-9 Field House",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2811%20Branco%20%28Marrionville%20Field%20House%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Marrionville R-9 Field House - 410 South Fiske Street, Marionville, MO 65705 - Branco",
+ "Job_Name": "Marrionville R-9 Field House",
+ "Job_Number": "2811",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2811 - Marrionville R-9 Field House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174515250",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2811 - Marrionville R-9 Field House - 410 South Fiske Street, Marionville, MO 65705 - Branco - RaeLei Farmer - 4174515250",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.179Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "63bn43jrm1phnq4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.327Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Crosslands",
+ "Contact_Notes": "",
+ "Contact_Person": "Caleb Stultz ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cstultz@crossland.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "250 Champagne Boulevard, Branson, MO 65616",
+ "Job_Codes": "2810 - Branson Fire Station #4",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2810%20Crossland%20Co%2E%20%28Branson%20Fire%20%20Station%20%234%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Branson Fire Station #4 - 250 Champagne Boulevard, Branson, MO 65616 - Crosslands",
+ "Job_Name": "Branson Fire Station #4",
+ "Job_Number": "2810",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2810 - Branson Fire Station #4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6204291414",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2810 - Branson Fire Station #4 - 250 Champagne Boulevard, Branson, MO 65616 - Crosslands - Caleb Stultz - 6204291414",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.225Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y1u7en5d0pg698g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.429Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholtz",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jarrett.sims@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "915 Long Creek Road, Ridgedale, MO 65739, United States of America",
+ "Job_Codes": "2809 - The Cliffs at Long Creek",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2809%20The%20Cliffs%20at%20Long%20Creek&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "The Cliffs at Long Creek - 915 Long Creek Road, Ridgedale, MO 65739, United States of America - Nabholtz",
+ "Job_Name": "The Cliffs at Long Creek",
+ "Job_Number": "2809",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2809 - The Cliffs at Long Creek",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174506018",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2809 - The Cliffs at Long Creek - 915 Long Creek Road, Ridgedale, MO 65739, United States of America - Nabholtz - Jarrett Sims - 4174506018",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.290Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wbrhnq288g2yz0h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.578Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Abramovitz, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 343-3730",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4524 S Hemlock Ave, Spfd",
+ "Job_Codes": "2808 - Ceiling patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling patches - 4524 S Hemlock Ave, Spfd - Abramovitz, Gary",
+ "Job_Name": "Ceiling patches",
+ "Job_Number": "2808",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2808 - Ceiling patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2808 - Ceiling patches - 4524 S Hemlock Ave, Spfd - Abramovitz, Gary - (417) 343-3730 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.338Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fj67q08vhkou1as",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.727Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Draper Plumbing",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Draper",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "2807 - Draper Plumbing",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2807%20Draper%20Plumbing&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Draper Plumbing - Ozark - Draper Plumbing",
+ "Job_Name": "Draper Plumbing",
+ "Job_Number": "2807",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2807 - Draper Plumbing",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2807 - Draper Plumbing - Ozark - Draper Plumbing - Tim Draper - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.387Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "emoh4dl9xfv8sx5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.839Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Oreilly Build",
+ "Contact_Notes": "",
+ "Contact_Person": "Brennan Bagwell ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "brennan@oreillybuild.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1616 East Bradford Parkway, Springfield, MO 65804,",
+ "Job_Codes": "2806 - Cambium Apartments",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2806%20Oreilly%20Build%20%28Cambium%20Apartments%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cambium Apartments - 1616 East Bradford Parkway, Springfield, MO 65804, - Oreilly Build",
+ "Job_Name": "Cambium Apartments",
+ "Job_Number": "2806",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2806 - Cambium Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5014229866",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2806 - Cambium Apartments - 1616 East Bradford Parkway, Springfield, MO 65804, - Oreilly Build - Brennan Bagwell - 5014229866",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.439Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o6zowc39sf65d6t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:19.978Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dewitt & Associates",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Thomlinson ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "20281 Missouri 413 - Reeds Spring, MO 65737-",
+ "Job_Codes": "2805 - Reeds Spring Technical Center",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2805%20Reed%20Springs%20Tech%20Center&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Reeds Spring Technical Center - 20281 Missouri 413 - Reeds Spring, MO 65737- - Dewitt & Associates",
+ "Job_Name": "Reeds Spring Technical Center",
+ "Job_Number": "2805",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2805 - Reeds Spring Technical Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178814820",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2805 - Reeds Spring Technical Center - 20281 Missouri 413 - Reeds Spring, MO 65737- - Dewitt & Associates - Brad Thomlinson - 4178814820",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.506Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4vaidg0fnei2ihj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.095Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Venture Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim Sargent ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield",
+ "Job_Codes": "2804 - Twin Peaks",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Twin Peaks - Springfield - Venture Construction",
+ "Job_Name": "Twin Peaks",
+ "Job_Number": "2804",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2804 - Twin Peaks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "7704416555",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2804 - Twin Peaks - Springfield - Venture Construction - Kim Sargent - 7704416555",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.565Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2yya1phxqrcxw90",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.239Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2098 S Hillside Dr, Spfd",
+ "Job_Codes": "2803 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 2098 S Hillside Dr, Spfd - Concept2Completion",
+ "Job_Name": "Addition",
+ "Job_Number": "2803",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2803 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/20/22 1:55 PM Beth Cardoza Kent Medlin probably will texture it himself so need to deduct texture.---\n12/06/22 11:32 AM Beth Cardoza a small addition 18x24 @ 2098 S Hillside Dr Springfield. Sorry for short notice---\n12/06/22 11:33 AM Beth Cardoza Will probably be under 2,000 sqft of board. I’m guessing and 1,500 based on size---\n12/06/22 11:30 AM Beth Cardoza I wasn't given any information other than it was an addition. Ready next Monday 12/12. I'm going to assume TM although we typically estimate additions...---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2803 - Addition - 2098 S Hillside Dr, Spfd - Concept2Completion - Tim Schwenke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.621Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i4tbdbgp7deejjd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.389Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Intrinsic Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Maria Cass (417) 522-3716",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2802 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - - Intrinsic Homes",
+ "Job_Name": "Patches",
+ "Job_Number": "2802",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2802 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/09/23 2:08 PM Beth Cardoza Eddie called her on it and she didn't know what he was talking about it and says she doesn't have any projects for us at this point. Maybe fell through or didn't actually need us.---\n12/02/22 3:18 PM Beth Cardoza Job coming up in January. Don't have info on it yet.---\n01/17/23 12:28 PM Beth Cardoza Actually Demo starting February 1st now, so after that. She hasn't provided the address yet, but says it can be done T&M---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2802 - Patches - - Intrinsic Homes - Maria Cass (417) 522-3716 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.674Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k1k9hy1pgwqmml8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.538Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McDonald, Kellie",
+ "Contact_Notes": "",
+ "Contact_Person": "Kellie (417) 693-1088",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "735 Delaware Town Rd, Nixa",
+ "Job_Codes": "2801 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 735 Delaware Town Rd, Nixa - McDonald, Kellie",
+ "Job_Name": "Repairs",
+ "Job_Number": "2801",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2801 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2801 - Repairs - 735 Delaware Town Rd, Nixa - McDonald, Kellie - Kellie (417) 693-1088 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.730Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fu9lynge346xg9u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.656Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McConnell, Terry",
+ "Contact_Notes": "",
+ "Contact_Person": "Terry 417-849-0993",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2054 S FR 45, Republic",
+ "Job_Codes": "2800 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2054 S FR 45, Republic - McConnell, Terry",
+ "Job_Name": "N/A",
+ "Job_Number": "2800",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2800 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/06/25 4:24 PM Beth Cardoza Going back to take care of cracks (not under warranty)---\n06/08/23 5:58 PM Beth Cardoza He wants us to come back to wrap a door with bullnose. I don't think we need to CO it since we are significantly underbudget, but we can if we need to. Check with Rick week after complete. (job was billed complete today)---\n05/31/23 11:56 AM Beth Cardoza Possible CO - no L5. Confirm before billing---\n06/08/23 5:56 PM Beth Cardoza They did the L5 afterall.---\n05/10/23 5:29 PM david cardoza Stock 20,248\nLeftover 3-12’\nHang 20,104---\n05/03/23 10:10 AM Beth Cardoza CO: Rick says drywall on bonus room over garage ceiling only. Only the walls will be plywood!---\n03/16/23 4:18 PM Beth Cardoza Dave walkthrough notes: \n\n2054 S Farm Rd 45\nRepublic, Mo. \n\nLarge three car garage with doors on both sides of it so you can drive right through if you want. Concrete is poured and it is about 10 1/2 feet high. \n\nTwo-story ho\n03/09/23 10:02 AM Beth Cardoza Ready for an actual quote. About a month out for drywall. Someone needs to walk it and call him while there to talk through some details. If he doesn't answer, shoot him a text and he will call back. He will be out of town b\n12/01/22 12:05 PM Beth Cardoza New construction. Probably 2.5 months or so out if all goes smoothly. Smooth walls, not sure about ceilings, but likely not smooth, but nothing crazy. Farm house style home. Some window wraps but not all. Some barn doors tha\n12/01/22 12:08 PM Beth Cardoza Budgetary number only since there's still decisions being made.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2800 - N/A - 2054 S FR 45, Republic - McConnell, Terry - Terry 417-849-0993 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.789Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4n596yfd5qnasza",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.780Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Duncan, Dave",
+ "Contact_Notes": "",
+ "Contact_Person": "Dave D (417) 234-5331",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3015 S Ridge Dr, Spfld",
+ "Job_Codes": "2799 - Hunt Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hunt Remodel - 3015 S Ridge Dr, Spfld - Duncan, Dave",
+ "Job_Name": "Hunt Remodel",
+ "Job_Number": "2799",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2799 - Hunt Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/12/23 2:34 PM Beth Cardoza CO: Taping where crown molding is staying off where it was not previously taped. Eddie to calculate hours after they mark areas the crown molding won't be reinstalled---\n01/13/23 1:48 PM Beth Cardoza Also another CO: 2 soffits (2 sides each) over doorways. Approx 1 sheet of drywall needed plus time to do that.---\n01/06/23 5:34 PM Beth Cardoza Phase 2 in progress---\n12/29/22 10:57 AM Heidi Mahan Garage Door Code: 2390---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2799 - Hunt Remodel - 3015 S Ridge Dr, Spfld - Duncan, Dave - Dave D (417) 234-5331 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.843Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pq5t0uhlji32cl4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:20.896Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "104 Pelican Point, Kimberling City",
+ "Job_Codes": "2798 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 104 Pelican Point, Kimberling City - Essick, Dusty",
+ "Job_Name": "Remodel",
+ "Job_Number": "2798",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2798 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2798 - Remodel - 104 Pelican Point, Kimberling City - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.895Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "99ofegru27qbzj8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.018Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2797 - Rocky Shores #20",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #20 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #20",
+ "Job_Number": "2797",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2797 - Rocky Shores #20",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/26/23 10:51 AM david cardoza Stock 10,446\nLeftover 288\nHang 10,158---\n12/08/22 1:25 PM Beth Cardoza Rocky shores building 20\n\nSingle level with walkout basement. All 9 foot flat.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2797 - Rocky Shores #20 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.946Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pq55ldu1hxg4zbt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.167Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2796 - Rocky Shores #19",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #19 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #19",
+ "Job_Number": "2796",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2796 - Rocky Shores #19",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/11/23 9:09 AM david cardoza Stock 14,646---\n01/11/23 9:46 AM Beth Cardoza The other of the same plan was short 452 sqft. Surprised they didn't stock the extra on this one to make sure they had enough this time---\n12/08/22 1:24 PM Beth Cardoza Dave walk through notes:\n\nRocky shores building 19 Basement all 9 foot\n\nMain level is 9 foot except for the big high double vaulted living room which goes up to probably 26 feet high might need a fourth stage to reach it.\n\nUp",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2796 - Rocky Shores #19 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:54.994Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "esunpmifklfvf3c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.317Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2795 - Rocky Shores #18",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #18 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #18",
+ "Job_Number": "2795",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2795 - Rocky Shores #18",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/11/23 9:08 AM david cardoza Stock 10,494---\n12/08/22 1:24 PM Beth Cardoza Rocky shores building 18\n\nSingle level with walkout basement. All 9 foot flat.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2795 - Rocky Shores #18 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.038Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vqfn17987wd82js",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.418Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2794 - Rocky Shores #17",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #17 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #17",
+ "Job_Number": "2794",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2794 - Rocky Shores #17",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/23/23 12:17 PM Beth Cardoza Rocky shores lockboxes Code 7855\nUnit 4, 34, 17, 27\nThere is a lockbox on the backside of the post of the front deck. This unlocks all the buildings.---\n01/02/23 6:59 AM david cardoza Assume stock is same as RS16\nNo leftover (needs confirmation)\n13,774---\n12/08/22 1:23 PM Beth Cardoza Dave walk through notes: \nRocky shores building 17\n\nTwo story with walkout basement. \nSo that is three levels. \n 9 foot.\n\nMain level all 9 foot\n\nUpstairs two bedrooms with the vaulted ceiling on each side up to the ceiling fl",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2794 - Rocky Shores #17 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.097Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wclo0ycviml4oqz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.535Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2793 - Rocky Shores #16",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #16 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #16",
+ "Job_Number": "2793",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2793 - Rocky Shores #16",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/15/22 8:03 AM david cardoza Stock 13,774---\n12/08/22 1:23 PM Beth Cardoza Dave walk through notes:\nRocky shores building 16\n\nTwo story with walkout basement. \nSo that is three levels. \n 9 foot.\n\nMain level all 9 foot\n\nUpstairs two bedrooms with the vaulted ceiling on each side up to the ceiling fla",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2793 - Rocky Shores #16 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.162Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4ymwoyoov726fde",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.669Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2792 - Rocky Shores #15",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #15 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #15",
+ "Job_Number": "2792",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2792 - Rocky Shores #15",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/15/22 8:02 AM david cardoza Stock 14,646\nsecond stock 452\nTotal stock 15,098---\n12/08/22 1:22 PM Beth Cardoza Dave walk through notes:\n\nRocky shores building 15 two-story with a walkout basement\n\nBasement all 9 foot\n\nMain level is 9 foot except for the big high double vaulted living room which goes up to probably 26 feet high might n",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2792 - Rocky Shores #15 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.214Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rf2i46oz1pl4mqq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.807Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "9207 Branson Landing Blvd, Branson.",
+ "Job_Codes": "2791 - BL #207",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BL #207 - 9207 Branson Landing Blvd, Branson. - Krueger, Paul",
+ "Job_Name": "BL #207",
+ "Job_Number": "2791",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2791 - BL #207",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/15/22 11:08 AM Beth Cardoza Adjustments will be needed. He's not worried about price, so adjust at the end.\nAdjustments include: Framing already done by other---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2791 - BL #207 - 9207 Branson Landing Blvd, Branson. - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.277Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f1otlaz5jz0euo0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:21.919Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bartholom, Tony",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Bartholomew (417) 840-2070",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1536 S. John, Springfield",
+ "Job_Codes": "2790 - Ceiling repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling repair - 1536 S. John, Springfield - Bartholom, Tony",
+ "Job_Name": "Ceiling repair",
+ "Job_Number": "2790",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2790 - Ceiling repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/06/23 9:42 AM Beth Cardoza This job has been rescheduled for Friday at 730---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2790 - Ceiling repair - 1536 S. John, Springfield - Bartholom, Tony - Tony Bartholomew (417) 840-2070 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.335Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d7drepa2pvw1xab",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.058Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2789 - Rocky Shores #14",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Shores #14 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Shores #14",
+ "Job_Number": "2789",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2789 - Rocky Shores #14",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/15/22 8:01 AM david cardoza Stock 13,774\nLeftover 136\nHang 13,638---\n11/30/22 9:28 AM Beth Cardoza Rocky point building 14\n\nTwo story with walkout basement. \nSo that is three levels. \n 9 foot.\n\nMain level all 9 foot\n\nUpstairs two bedrooms with the vaulted ceiling on each side up to the ceiling flat which is at 9 foot high.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2789 - Rocky Shores #14 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.394Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kcnyt939d2sfoex",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.197Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfld",
+ "Job_Codes": "2788 - LWH 24",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 24 - Spfld - Everlasting Homes",
+ "Job_Name": "LWH 24",
+ "Job_Number": "2788",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2788 - LWH 24",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/15/23 3:44 PM david cardoza 11,028 sqft per REW\nLeftover 306\nHang 10,722---\n12/09/22 2:30 PM Beth Cardoza Dave walk-through notes 12/9/22\n( same as lot 16)\n\nSingle level crawlspace house. \n\nThree car garage at 10 foot over concrete. \n\nMain room and entry is all 10 foot flat as well as the front office. \n\nRemainder is basically 9",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2788 - LWH 24 - Spfld - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.443Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oxu4zoyb762zytl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.320Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfld",
+ "Job_Codes": "2787 - LWH 12",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 12 - Spfld - Everlasting Homes",
+ "Job_Name": "LWH 12",
+ "Job_Number": "2787",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2787 - LWH 12",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/23 1:33 PM david cardoza Figure 384’ for coldwall. \nLeftover drywall after final hang 54’\nHanger pay 11,156\nFinisher pay 11,540---\n03/08/23 2:43 PM Beth Cardoza I don't have the stock amount---\n12/09/22 2:28 PM Beth Cardoza Dave walk-through notes 12/9/22\nThree car garage at 10 foot over concrete\n\nSingle level crawl space home mostly 9 foot flat. \n\nMain room is double vaulted at 14’ high \n\nMaster bedroom has a pop-up to 10 foot.\n\n10 windows \n\n9,",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2787 - LWH 12 - Spfld - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.495Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3me3iwilk1xuwv9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.448Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Everlasting Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfld",
+ "Job_Codes": "2786 - LWH 16",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "LWH 16 - Spfld - Everlasting Homes",
+ "Job_Name": "LWH 16",
+ "Job_Number": "2786",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2786 - LWH 16",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/03/23 12:06 PM david cardoza Stock 10,894\nColdwall stock 576\n\nLeftover from coldwall hang is one 12 foot sheet and one 10 foot sheet\n\nShortage stock 224\n( 32 ft came from another house nearby?)\n\nHang to pino 10,470\n\nTo finisher 11,694---\n12/09/22 2:27 PM Beth Cardoza Dave walk-through notes 12/9/22\nSingle level crawlspace house. \n\nThree car garage at 10 foot over concrete. \n\nMain room and entry is all 10 foot flat as well as the front office. \n\nRemainder is basically 9 foot flat except fo",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2786 - LWH 16 - Spfld - Everlasting Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.554Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tbomfv842r8n093",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.576Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Gerald Burnett 636-299-1362",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "528 N FR 199, Spfld",
+ "Job_Codes": "2785 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 528 N FR 199, Spfld - Burnett Homes",
+ "Job_Name": "N/A",
+ "Job_Number": "2785",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2785 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/08/23 10:49 AM Beth Cardoza CO: patch in the golf simulation room---\n05/30/23 12:33 PM Beth Cardoza Job 2785\nFr 199\nBurnette \n\nIn addition to having to re-hang the sheet under the stairs in the basement, we also need to \n\nDo a little more texture around the mudroom door on the main level. Apparently it had temporary plywoo\n05/01/23 4:29 PM Beth Cardoza CO: hang under the stairs, and some patches.\nFigure 8 sheets of drywall.---\n03/20/23 9:24 AM david cardoza Stock 31,912\nsecond stock 128\nThird stock 672\nTotal stock 32,712---\n12/09/22 1:56 PM Beth Cardoza Dave walkthrough notes 12/9/22:\n\n552 N Farm Rd 199\nSpringfield Mo\n\nLarge house with six car garage.12’ high over gravel. \n\nWalkout basement house\n\nAbout a third of the main level is 10 foot flat.\n\nOne room is double vaulted u",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2785 - N/A - 528 N FR 199, Spfld - Burnett Homes - Gerald Burnett 636-299-1362 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.611Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ninml1e2p4pz1dw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.687Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schuble, Sue",
+ "Contact_Notes": "",
+ "Contact_Person": "Sue 417-619-3060",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4708 S FR 137, Spfld",
+ "Job_Codes": "2784 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 4708 S FR 137, Spfld - Schuble, Sue",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2784",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2784 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2784 - Popcorn scrape - 4708 S FR 137, Spfld - Schuble, Sue - Sue 417-619-3060 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.671Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6gsklqb3g7ubg80",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.805Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wisdom, Tyler",
+ "Contact_Notes": "",
+ "Contact_Person": "Tyler (417) 379-4067",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "509 W High St, Spfld",
+ "Job_Codes": "2783 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 509 W High St, Spfld - Wisdom, Tyler",
+ "Job_Name": "Remodel",
+ "Job_Number": "2783",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2783 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2783 - Remodel - 509 W High St, Spfld - Wisdom, Tyler - Tyler (417) 379-4067 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.722Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o0udsn7oadxeex0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:22.927Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Voss, Randy",
+ "Contact_Notes": "",
+ "Contact_Person": "Randy (417) 839-0166",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3810 E Cherry St #26, Spfld",
+ "Job_Codes": "2782 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3810 E Cherry St #26, Spfld - Voss, Randy",
+ "Job_Name": "N/A",
+ "Job_Number": "2782",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2782 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/01/22 6:13 PM Beth Cardoza His contractor friend had someone else already. He really like our breakdown in the estimate. Thought it was really through. Professional. He liked that. Must be an engineer. Or accountant.---\n11/22/22 2:36 PM Beth Cardoza 3810 E. Cherry Springfield Missouri\nLot 26\n\nThree car garage at 10 foot maybe 10 1/2 feet over gravel\n\nSingle level house with most of it being at 9 foot flat except for the main living area which is 12 foot flat including th",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2782 - N/A - 3810 E Cherry St #26, Spfld - Voss, Randy - Randy (417) 839-0166 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.786Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jgbz0jvl6s98wnu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.039Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kronholm",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2781 - ##New job##",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "##New job## - - Q and Co.",
+ "Job_Name": "##New job##",
+ "Job_Number": "2781",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2781 - ##New job##",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/10/24 5:10 PM Beth Cardoza Duplicate---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2781 - ##New job## - - Q and Co. - Justin Kronholm - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.838Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "an4n8pelxvb0bzj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.156Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kronholm",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2780 - ###New job##",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "###New job## - - Q and Co.",
+ "Job_Name": "###New job##",
+ "Job_Number": "2780",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2780 - ###New job##",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/10/24 5:10 PM Beth Cardoza Duplicate---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2780 - ###New job## - - Q and Co. - Justin Kronholm - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.890Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v39jfv1gpzm4mt3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.269Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kronholm",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2779 - Convoy of Hope Mezzanine",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Convoy of Hope Mezzanine - - Q and Co.",
+ "Job_Name": "Convoy of Hope Mezzanine",
+ "Job_Number": "2779",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2779 - Convoy of Hope Mezzanine",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/05/23 10:21 AM Steve Brewer duplicate---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2779 - Convoy of Hope Mezzanine - - Q and Co. - Justin Kronholm - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.941Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xqipiduppc5hoii",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.418Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hendricks, Shannon",
+ "Contact_Notes": "",
+ "Contact_Person": "Shannon",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1926 S Ingram Mill Rd, Spfld",
+ "Job_Codes": "2778 - Preschool",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Preschool - 1926 S Ingram Mill Rd, Spfld - Hendricks, Shannon",
+ "Job_Name": "Preschool",
+ "Job_Number": "2778",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2778 - Preschool",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176890020",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2778 - Preschool - 1926 S Ingram Mill Rd, Spfld - Hendricks, Shannon - Shannon - 4176890020",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:55.991Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4ljvwqtnds333o2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.557Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "233 Hobart, Forsyth",
+ "Job_Codes": "2777 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 233 Hobart, Forsyth - Krueger, Paul",
+ "Job_Name": "Cracks",
+ "Job_Number": "2777",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2777 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/17/22 10:48 AM Beth Cardoza Work scheduled for tomorrow/Friday, Jeremy---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2777 - Cracks - 233 Hobart, Forsyth - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.042Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kkiqi8f4jubyxe9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.668Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q and Co.",
+ "Contact_Notes": "",
+ "Contact_Person": "Justin Kronholm",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2776 - Convoy of Hope Mezzanine",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Convoy of Hope Mezzanine - - Q and Co.",
+ "Job_Name": "Convoy of Hope Mezzanine",
+ "Job_Number": "2776",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2776 - Convoy of Hope Mezzanine",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/05/23 10:25 AM Steve Brewer was 5555 still in planswift as 5555---",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2776 - Convoy of Hope Mezzanine - - Q and Co. - Justin Kronholm - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.093Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dqt5i24cf8g4w5l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.797Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schuble, Sue",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 619-3060",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4708 S FR 137, Spfld",
+ "Job_Codes": "2775 - Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen - 4708 S FR 137, Spfld - Schuble, Sue",
+ "Job_Name": "Kitchen",
+ "Job_Number": "2775",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2775 - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2775 - Kitchen - 4708 S FR 137, Spfld - Schuble, Sue - (417) 619-3060 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.143Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gpqwz2wdtczx55f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:23.909Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hayes, Tim",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Hayes",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1437 E Primrose, Spfld",
+ "Job_Codes": "2774 - Law Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Law Office - 1437 E Primrose, Spfld - Hayes, Tim",
+ "Job_Name": "Law Office",
+ "Job_Number": "2774",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2774 - Law Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/06/22 3:03 PM Beth Cardoza Making a change. not demoing a wall with shelves and painting the shelves instead. Someone to look at it and then we can adjust the estimate. Would like to have the majority of the work done while he is in the Ukraine Februar\n02/10/23 1:23 PM Beth Cardoza I'm not sure if there were actual changes. The walkthrough report didn't really indicate changes, just what we are doing and I'm not familiar enough to know if it was changed from original... the work is in progress and Tim i",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2774 - Law Office - 1437 E Primrose, Spfld - Hayes, Tim - Tim Hayes - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.194Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q6ls33tbk3wb53k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.015Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Peach Tree",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Meadows",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "416 Winchester Rd, Branson",
+ "Job_Codes": "2773 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 416 Winchester Rd, Branson - Peach Tree",
+ "Job_Name": "Patches",
+ "Job_Number": "2773",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2773 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/11/22 12:48 PM Beth Cardoza All the materials are supplied by client and are there---\n11/10/22 4:43 PM Beth Cardoza Chad Meadows, from peach tree hdr, 416 Winchester Rd Branson, going to see it tomorrow, several patches to do he figures a couple days for 2 people, I'll see when I get there tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2773 - Patches - 416 Winchester Rd, Branson - Peach Tree - Chad Meadows - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.254Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kgkqve2t0efd48c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.127Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "417-887-1600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1084 Cumberland",
+ "Job_Codes": "2772 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1084 Cumberland - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2772",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2772 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/21/22 9:44 AM david cardoza Stock 11,758\nSecond stock 384\nNo leftover\nHang 12,142---\n11/17/22 2:20 PM Beth Cardoza Dave walkthrough notes: 1084 Cumberland\nRepublic Mo.\n\nMain level all 8 foot except for the main room which is a double pop-up to 10 foot.\n\nGarage is 11 foot over concrete\n\nBasement mostly 9 foot\n\nProbably around 12,000 feet.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2772 - N/A - 1084 Cumberland - Cowherd - 417-887-1600 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.306Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q8wwozkuk2nz4ri",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.239Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Blansky, Chaya",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 331-2218 chayablansky@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1 Memory Ln Unit 1, Branson",
+ "Job_Codes": "2771 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1 Memory Ln Unit 1, Branson - Blansky, Chaya",
+ "Job_Name": "Patch",
+ "Job_Number": "2771",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2771 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/10/22 10:40 AM Beth Cardoza The people that caused the damage is using their own contractor. She plans to call us next time she needs something though.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2771 - Patch - 1 Memory Ln Unit 1, Branson - Blansky, Chaya - (417) 331-2218 chayablansky@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.355Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2ytm75e4zp6qpyc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.367Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Temple Remodeling",
+ "Contact_Notes": "",
+ "Contact_Person": "Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "22887 Fireman Rd, Shell Knob",
+ "Job_Codes": "2770 - Lake Cabin",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lake Cabin - 22887 Fireman Rd, Shell Knob - Temple Remodeling",
+ "Job_Name": "Lake Cabin",
+ "Job_Number": "2770",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2770 - Lake Cabin",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/08/22 3:47 PM Beth Cardoza We're looking at roughly 1,724 sq ft of total sheetrock for walls and ceilings, with 520 sq ft of that being the ceiling portion. Level 4 finish. Assume flat texture. It isn't all brand-new framing, either, some of the she",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2770 - Lake Cabin - 22887 Fireman Rd, Shell Knob - Temple Remodeling - Michelle Humbert or Terry Pence 417-866-9965 or 904-755-5689 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.415Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8y9d1ljw9gu4lp7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.479Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "2769 - Tabuya",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2769%20%20%28Ozark%29%20%28Concept2Completion%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Tabuya - Ozark - Concept2Completion",
+ "Job_Name": "Tabuya",
+ "Job_Number": "2769",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2769 - Tabuya",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/08/22 9:25 AM Beth Cardoza I am bidding only I don't have the job yet - Tim---\n11/07/22 4:53 PM Beth Cardoza home in Christian County. Two miles east of Ozark---\n11/07/22 4:56 PM Beth Cardoza Standard orange peel wall and stomp ceiling.\nWrap windows but not sill. Sq corner---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2769 - Tabuya - Ozark - Concept2Completion - Tim Schwenke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.482Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fnkbh9z8vsy9lvy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.628Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4323 Enyart St, Battlefield",
+ "Job_Codes": "2768 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 4323 Enyart St, Battlefield - Essick, Dusty",
+ "Job_Name": "Repairs",
+ "Job_Number": "2768",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2768 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2768 - Repairs - 4323 Enyart St, Battlefield - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.533Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bdghgv5w3543lf9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.740Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pharr, Brianna",
+ "Contact_Notes": "",
+ "Contact_Person": "Brianna 662-416-8430 bkpharr@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2767 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - - Pharr, Brianna",
+ "Job_Name": "Repair",
+ "Job_Number": "2767",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2767 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/15/22 9:42 AM Beth Cardoza She went with someone else---\n11/14/22 10:59 AM Beth Cardoza Stephanie called and left voicemail last Tuesday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2767 - Repair - - Pharr, Brianna - Brianna 662-416-8430 bkpharr@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.581Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "np2tbudd16gp77f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.853Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1325 Wilder Trail, Republic",
+ "Job_Codes": "2766 - 2023 St Jude House",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "2023 St Jude House - 1325 Wilder Trail, Republic - King, Brad",
+ "Job_Name": "2023 St Jude House",
+ "Job_Number": "2766",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2766 - 2023 St Jude House",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/18/23 4:57 PM Beth Cardoza CO: They need a couple walls changed from op to smooth for wallpaper---\n04/18/23 4:58 PM Beth Cardoza St jude will have wallpaper in two areas. Both are textured \nAlex\n\nWere we told? Estimate doesn't indicate that. Has it been painted?\nDave\n\nYes painted. Not sure if it was communicated \nAlex\n\nWell, it will have to be skimmed \n03/03/23 11:57 AM Beth Cardoza CO: 3-12s from a garage wall and 2 or 3-8s from a bathroom wall have to be RE-hung. Taken down by electricians---\n03/02/23 8:56 AM david cardoza Stock 16,684\nNo leftover---\n02/03/23 1:53 PM Beth Cardoza Dave walkthrough notes 2/3/23:\n\nSaint Jude house 1325 S. Wilder Republic Missouri\n\nThree car garage 10.5’\n\nTwo-story house. Main room main level is the width of the house and it’s 16 foot high flat. \n\nRemainder of the main fl\n11/07/22 4:40 PM Beth Cardoza Address: 1325 Wilder Trail, Republic MO\nFinish: Light orange peel\nTiming: Ready to hang January 1\nTrim: Likely these will have trim around them but we are waiting for a final decision from the designer. Can we let you know ab\n11/07/22 9:54 AM Beth Cardoza From Friday: I will get you address and additional details next week when design booklet is complete. I will also check with Brad on timeline.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2766 - 2023 St Jude House - 1325 Wilder Trail, Republic - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.637Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kxcp6a807rk7d00",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:24.959Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6531 Happy Valley Ln, Battlefield",
+ "Job_Codes": "2765 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 6531 Happy Valley Ln, Battlefield - McMillin, Allen",
+ "Job_Name": "N/A",
+ "Job_Number": "2765",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2765 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/05/23 4:09 PM Beth Cardoza CO: Couple new repairs. They had to change the ceiling height over the master shower. Not quite sure what that means except that he said we need a couple pieces of cornerbead and a rip of drywall that is 4“ x 7‘. Install and \n02/23/23 8:36 AM david cardoza First stock 13,294\nBasement 2nd stock 6,372\nTotal stock 19,666\nCold wall 480\nLeftover from cold wall 30\nFinal leftover on entire job 234.\n------------\nFinal to Angel 19,462\nFinisher 19,912---\n01/06/23 2:59 PM Beth Cardoza Plans labeled Job #2384 Greene Residence in planswift---\n12/16/22 1:16 PM Beth Cardoza Dave walkthrough notes 12/16:\n\n6531 Happy Valley Ln., Battlefield, MO\n\nThree car garage is almost 12 foot high over gravel at this point. \n\nJohn Deere room in the basement needs to be hung complete with the ceiling being 5/8 \n12/15/22 1:45 PM Beth Cardoza We will supply drywall on this.\nNot doing the basement.\nExcept there is a John Deere room that we will have to do by code. And the ceiling will need to be five eights.\nProbably some kind of texture.\n\nHas a coldwall that needs\n12/07/22 9:42 AM Beth Cardoza Waiting to get my insulation man to give me his schedule, but I think it should be ready within three weeks\nWe are not finishing the basement on this house\nAllen---\n11/07/22 12:24 PM Beth Cardoza Waiting for job walk notes and/or plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2765 - N/A - 6531 Happy Valley Ln, Battlefield - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.685Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7leb9f6hpqfaubw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.077Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Trendsetter",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Tamba (417) 866-9311",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1701 S Enterprise Ave, ste 101, Spfld",
+ "Job_Codes": "2764 - Drop ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Drop ceiling - 1701 S Enterprise Ave, ste 101, Spfld - Trendsetter",
+ "Job_Name": "Drop ceiling",
+ "Job_Number": "2764",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2764 - Drop ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2764 - Drop ceiling - 1701 S Enterprise Ave, ste 101, Spfld - Trendsetter - Tony Tamba (417) 866-9311 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.742Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2pu84bzbyyyizt4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.188Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Won, Megan",
+ "Contact_Notes": "",
+ "Contact_Person": "Ralph (314) 651-7267",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "916 Destiny Ln, Nixa",
+ "Job_Codes": "2763 - Closets",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Closets - 916 Destiny Ln, Nixa - Won, Megan",
+ "Job_Name": "Closets",
+ "Job_Number": "2763",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2763 - Closets",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2763 - Closets - 916 Destiny Ln, Nixa - Won, Megan - Ralph (314) 651-7267 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.802Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4q26y5o104tk9q7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.306Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tammy",
+ "Contact_Notes": "",
+ "Contact_Person": "Tessa (cousin gathering quotes) (417) 459-2428",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "North Springfield",
+ "Job_Codes": "2762 - Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Room - North Springfield - Tammy",
+ "Job_Name": "Room",
+ "Job_Number": "2762",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2762 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/09/23 5:05 PM Beth Cardoza Never heard back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2762 - Room - North Springfield - Tammy - Tessa (cousin gathering quotes) (417) 459-2428 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.861Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y6w752bcf9vsrp1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.418Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jones, Shannon",
+ "Contact_Notes": "",
+ "Contact_Person": "Shannon (417) 830-8927",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "344 Jasmine Rd, Clever",
+ "Job_Codes": "2761 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 344 Jasmine Rd, Clever - Jones, Shannon",
+ "Job_Name": "Addition",
+ "Job_Number": "2761",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2761 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2761 - Addition - 344 Jasmine Rd, Clever - Jones, Shannon - Shannon (417) 830-8927 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.913Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f767ov33d3269p2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.535Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "John Moody Const",
+ "Contact_Notes": "",
+ "Contact_Person": "John or Linda (417) 865-1478",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "107 N 37th St, Nixa",
+ "Job_Codes": "2760 - Ceiling Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling Patches - 107 N 37th St, Nixa - John Moody Const",
+ "Job_Name": "Ceiling Patches",
+ "Job_Number": "2760",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2760 - Ceiling Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/08/22 11:44 AM Beth Cardoza Never got me the information I needed. Had original contractor do it.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2760 - Ceiling Patches - 107 N 37th St, Nixa - John Moody Const - John or Linda (417) 865-1478 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:56.962Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o65vn0ki5kq177l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.646Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Colton (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1851 E Vincent, Spfld",
+ "Job_Codes": "2759 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1851 E Vincent, Spfld - Colton, Jim",
+ "Job_Name": "N/A",
+ "Job_Number": "2759",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2759 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/08/22 6:27 AM david cardoza Stock 10,398\nLeftover:\n6-14\n6-12\n11-8---\n11/04/22 2:08 PM Beth Cardoza 1851 E Vincent St, \nSpringfield, MO 65804\n\nSingle level home. Three car garage over gravel at 11’\n\nMain living area at 11 foot Master bedroom has a pop up to 10 foot flat\n\nThe rest of the house is 9 foot flat\n\nProbably around\n11/02/22 1:22 PM Beth Cardoza Three sides on windows. Square corners. Basket ceiling texture---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2759 - N/A - 1851 E Vincent, Spfld - Colton, Jim - Jim Colton (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.351Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i4h2w8y0ftnbifn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.770Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jones, David",
+ "Contact_Notes": "",
+ "Contact_Person": "(804) 349-8671",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "291 Esplande Dr, Hollister",
+ "Job_Codes": "2758 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 291 Esplande Dr, Hollister - Jones, David",
+ "Job_Name": "N/A",
+ "Job_Number": "2758",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2758 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/03/23 11:17 AM CCLLC Office Spoke with Dave who confirmed his frustrations. Sent following email in response 5/3/23\n\nHello David,\nI am truly sorry that you had a bad experience with our company. I wish this conversation had happened immediately after\n05/03/23 11:15 AM CCLLC Office Email received 4/24/23\n\nIt seems the time change and the inability for us to connect is frustrating everyone involved. The check was sent on Friday so it will be to you this week. Please pass on my apologies to your team.\n11/02/22 10:58 AM Beth Cardoza Eddie was driving and got a call. Doesn't even remember guy's name. But he's going to go look at it and gather info including customer name. It's ready now new residential construction---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2758 - N/A - 291 Esplande Dr, Hollister - Jones, David - (804) 349-8671 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.407Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vwk4xrtotprjn9l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.887Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLaughlin, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 838-9646",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3158 S Elmira, Spfld",
+ "Job_Codes": "2757 - Walls",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Walls - 3158 S Elmira, Spfld - MacLaughlin, Julie",
+ "Job_Name": "Walls",
+ "Job_Number": "2757",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2757 - Walls",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2757 - Walls - 3158 S Elmira, Spfld - MacLaughlin, Julie - Julie (417) 838-9646 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.462Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u52h502m46k0euj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:25.999Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction Co., Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "efriga@sbcglobal.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "400 North Main Street, Mt. Vernon, MO 65712",
+ "Job_Codes": "2756 - BathHouse Renovations for City of Mt. Vernon",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "BathHouse Renovations for City of Mt. Vernon - 400 North Main Street, Mt. Vernon, MO 65712 - Friga Construction Co., Inc.",
+ "Job_Name": "BathHouse Renovations for City of Mt. Vernon",
+ "Job_Number": "2756",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2756 - BathHouse Renovations for City of Mt. Vernon",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178877134",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2756 - BathHouse Renovations for City of Mt. Vernon - 400 North Main Street, Mt. Vernon, MO 65712 - Friga Construction Co., Inc. - Eric Friga - 4178877134",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.510Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y8ixyztp02yd4h6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.149Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hambey Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Chad Rohrer, 417-988-0206, chad@hambeyconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2755 - AGCU",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "AGCU - - Hambey Construction",
+ "Job_Name": "AGCU",
+ "Job_Number": "2755",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2755 - AGCU",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2755 - AGCU - - Hambey Construction - Chad Rohrer, 417-988-0206, chad@hambeyconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.562Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cbnhdtg0d4tc9wr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.277Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey Pyle Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey, 417-887-6177, matt@bpbuilder.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1111 E. Brower, Springfield, MO 65802",
+ "Job_Codes": "2754 - OTC ITTC Renovations and MEP Upgrades",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "OTC ITTC Renovations and MEP Upgrades - 1111 E. Brower, Springfield, MO 65802 - Bailey Pyle Builders",
+ "Job_Name": "OTC ITTC Renovations and MEP Upgrades",
+ "Job_Number": "2754",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2754 - OTC ITTC Renovations and MEP Upgrades",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2754 - OTC ITTC Renovations and MEP Upgrades - 1111 E. Brower, Springfield, MO 65802 - Bailey Pyle Builders - Matt Bailey, 417-887-6177, matt@bpbuilder.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.614Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s2gfwn84iihttbp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.389Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Kimberly",
+ "Contact_Notes": "",
+ "Contact_Person": "Kimberly (417) 4298856",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3908 S Belvedere Ct, Spfd",
+ "Job_Codes": "2753 - Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Room - 3908 S Belvedere Ct, Spfd - King, Kimberly",
+ "Job_Name": "Room",
+ "Job_Number": "2753",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2753 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 3:36 PM Beth Cardoza Assumed not awarded. Maybe we dropped the ball? Last vox was Jan 17, 2023 me asking what happened with this job because we had talked about scheduling it end of October but nothing had happened... I did NOT get a response fro\n10/31/22 11:58 AM Beth Cardoza Two walls in a room that have mildew/water damage that need replacing. Don't have dimensions or an address or email address yet. Eddie to view, but he's thinking we can take care of it for her maybe Wednesday or Thursday of",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2753 - Room - 3908 S Belvedere Ct, Spfd - King, Kimberly - Kimberly (417) 4298856 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.675Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "56v1542w8g90pzj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.517Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "500 North National Avenue, Springfield, MO 65802",
+ "Job_Codes": "2752 - Calvary Chapel - New Church Infill & Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Calvary Chapel - New Church Infill & Addition - 500 North National Avenue, Springfield, MO 65802 - Rich Kramer Construction",
+ "Job_Name": "Calvary Chapel - New Church Infill & Addition",
+ "Job_Number": "2752",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2752 - Calvary Chapel - New Church Infill & Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2752 - Calvary Chapel - New Church Infill & Addition - 500 North National Avenue, Springfield, MO 65802 - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.734Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "opo9175nzh6f3bo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.629Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Wayne",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5353 S Stonehaven, Spfld",
+ "Job_Codes": "2751 - Morosavillo",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2751%2E2%20cracks%20%285353%20S%20Stonehaven%2C%20Spfld%29%20%28Weber%2C%20Bryon%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Morosavillo - 5353 S Stonehaven, Spfld - Weber, Bryon",
+ "Job_Name": "Morosavillo",
+ "Job_Number": "2751",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2751 - Morosavillo",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/24/24 3:08 PM Beth Cardoza 2751.2 Wanting an estimate to go back and repair some cracks---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2751 - Morosavillo - 5353 S Stonehaven, Spfld - Weber, Bryon - Wayne - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.795Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jlee6o084yw9utw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jones, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark Jones (417) 569-0441",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Granite Springs, Spfld",
+ "Job_Codes": "2750 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Granite Springs, Spfld - Jones, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "2750",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2750 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/07/22 11:59 AM Beth Cardoza He never got back to me with plans. Assuming he found someone else.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2750 - N/A - Granite Springs, Spfld - Jones, Mark - Mark Jones (417) 569-0441 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.858Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nwegk57zgp5ew44",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:26.885Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz Const",
+ "Contact_Notes": "",
+ "Contact_Person": "417-444-2511",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "621 W Sunshine St, Spfld",
+ "Job_Codes": "2749 - Anglers Inn Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Anglers Inn Patch - 621 W Sunshine St, Spfld - Nabholz Const",
+ "Job_Name": "Anglers Inn Patch",
+ "Job_Number": "2749",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2749 - Anglers Inn Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2749 - Anglers Inn Patch - 621 W Sunshine St, Spfld - Nabholz Const - 417-444-2511 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.914Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hn0r65zzt20pwy6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.101Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos Chan, 417-522-3600. cchan@hcrogers.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1015 S. Grant Ave, Spfld, MO 65807",
+ "Job_Codes": "2748 - Loose Goose",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Loose Goose - 1015 S. Grant Ave, Spfld, MO 65807 - HC Rogers Construction Group",
+ "Job_Name": "Loose Goose",
+ "Job_Number": "2748",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2748 - Loose Goose",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2748 - Loose Goose - 1015 S. Grant Ave, Spfld, MO 65807 - HC Rogers Construction Group - Carlos Chan, 417-522-3600. cchan@hcrogers.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:57.970Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6n006es54nio9lg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.237Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "White, Candice",
+ "Contact_Notes": "",
+ "Contact_Person": "Candice 417-689-2985",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5383 Tharpe School Rd, Norwood",
+ "Job_Codes": "2747 - Hand Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hand Texture - 5383 Tharpe School Rd, Norwood - White, Candice",
+ "Job_Name": "Hand Texture",
+ "Job_Number": "2747",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2747 - Hand Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/27/22 11:29 AM Beth Cardoza I think she's going with someone local---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2747 - Hand Texture - 5383 Tharpe School Rd, Norwood - White, Candice - Candice 417-689-2985 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.031Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mfwt2aapxv0vwuk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.353Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dygert, Keith",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith (417) 337-2258",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "71 Shady Pl Ln, Blue Eye",
+ "Job_Codes": "2746 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 71 Shady Pl Ln, Blue Eye - Dygert, Keith",
+ "Job_Name": "Patch",
+ "Job_Number": "2746",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2746 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2746 - Patch - 71 Shady Pl Ln, Blue Eye - Dygert, Keith - Keith (417) 337-2258 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.090Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "od9zqjp5d3iyhdh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.481Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Singh, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason (573) 529-3642",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5875 Anthony Ct, Spfld",
+ "Job_Codes": "2745 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 5875 Anthony Ct, Spfld - Singh, Jason",
+ "Job_Name": "Patch",
+ "Job_Number": "2745",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2745 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2745 - Patch - 5875 Anthony Ct, Spfld - Singh, Jason - Jason (573) 529-3642 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.138Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4he3f7110rqr27e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.589Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6220 E FR 116, Strafford",
+ "Job_Codes": "2744 - Outdoor Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Outdoor Kitchen - 6220 E FR 116, Strafford - Weber, Bryon",
+ "Job_Name": "Outdoor Kitchen",
+ "Job_Number": "2744",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2744 - Outdoor Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2744 - Outdoor Kitchen - 6220 E FR 116, Strafford - Weber, Bryon - Bryon (417) 830-2424 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.191Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d3wg7sw4nynk6ho",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.705Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jones, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "195 Cozy Ln, Branson",
+ "Job_Codes": "2743 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 195 Cozy Ln, Branson - Jones, Mike",
+ "Job_Name": "Patches",
+ "Job_Number": "2743",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2743 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/29/22 11:45 AM Heidi Mahan Gate Code: 718---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2743 - Patches - 195 Cozy Ln, Branson - Jones, Mike - Mike - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.247Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "io6h94pz9www1mm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.813Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Peaceful Dr, Branson",
+ "Job_Codes": "2742 - Suzanne",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F2742%20Suzanne%20%28Peaceful%20Dr%2C%20Branson%29%20%28Ozark%20Mountain%20Homes%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Suzanne - Peaceful Dr, Branson - Ozark Mountain Homes",
+ "Job_Name": "Suzanne",
+ "Job_Number": "2742",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2742 - Suzanne",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/04/24 9:57 AM Beth Cardoza Rick to review and consider discount towards end of week---\n10/23/24 11:24 AM Beth Cardoza CO? hourly footage? waiting on Dave comments---\n10/14/24 8:14 AM david cardoza Pre stock for coldwall was 768.\nLeftover from coldwall 118 \nRegular Stock 12,080\nSecond stock 240 (to be paid hourly)\nNo final leftover?---\n10/12/24 3:58 PM Beth Cardoza Stocking Monday. Estimate needs updated!---\n05/10/24 3:52 PM Beth Cardoza Probably not ready until July or August now---\n01/08/24 1:58 PM Beth Cardoza Start in about 4 months/Beginning of May---\n03/24/23 2:22 PM Beth Cardoza Haven't broken ground yet. Verifying numbers before start now.---\n10/19/22 4:31 PM Beth Cardoza Square corners and standard textures. 3 way wrap on windows. Figure 10 foot walls throughout and the vault in the living room is 7:12 so it is 15' tall at the peak. There will probably be a drop beam between the master and",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2742 - Suzanne - Peaceful Dr, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.299Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uzt6w8kpmdqlkzk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:27.917Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lyon, Jess",
+ "Contact_Notes": "",
+ "Contact_Person": "Jess (male) 417-429-6267",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "570 Hidden Creek Dr, Ozark",
+ "Job_Codes": "2741 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 570 Hidden Creek Dr, Ozark - Lyon, Jess",
+ "Job_Name": "Patch",
+ "Job_Number": "2741",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2741 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2741 - Patch - 570 Hidden Creek Dr, Ozark - Lyon, Jess - Jess (male) 417-429-6267 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.359Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9jr10iokivd9ici",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.025Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Heffington, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew P: 479-259-1532 C: 501-454-1517",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Forsyth",
+ "Job_Codes": "2740 - Great Escapes RV Resort",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Great Escapes RV Resort - Forsyth - Heffington, Andrew",
+ "Job_Name": "Great Escapes RV Resort",
+ "Job_Number": "2740",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2740 - Great Escapes RV Resort",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/19/22 4:19 PM Beth Cardoza For the Concession Building (~700 SF), please price...\n- Wood Framing Package incl sheathing\n- Tyvek\n- Drywall (please confirm tape and bed included)\n- Standing HSS columns for roof material.\n\nFor the Bath House / Laundry (~1\n10/19/22 11:55 AM Beth Cardoza Probably will need to be Bathhouse 2740.1 and Concession 2740.2 because schedule shows bathouse starting in May and the concessions starting in July (assuming breaking ground. Figuring end of May or beginning of June for dry",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2740 - Great Escapes RV Resort - Forsyth - Heffington, Andrew - Andrew P: 479-259-1532 C: 501-454-1517 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.411Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m3yeplwzwu2f2ht",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.145Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McConnell, Kirk",
+ "Contact_Notes": "",
+ "Contact_Person": "Kirk 417-294-7179",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "873 E Edenmore, Nixa",
+ "Job_Codes": "2739 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 873 E Edenmore, Nixa - McConnell, Kirk",
+ "Job_Name": "N/A",
+ "Job_Number": "2739",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2739 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/04/23 12:51 PM david cardoza First Stock 18,122\nNo leftover but short 184---\n10/27/22 1:06 PM Beth Cardoza Dave walkthrough notes 10/27/22: \n\n873 E Edenmore Cir\nNixa, Mo. \n\nThree car garage at 10 1/2 foot over concrete\n\nWalkout basement house entry front office and main living area 10 foot flat\n\nMaster bedroom four sided fault up",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2739 - N/A - 873 E Edenmore, Nixa - McConnell, Kirk - Kirk 417-294-7179 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.466Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "prfj5y3g9y8cc7h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.256Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nelson, Roy",
+ "Contact_Notes": "",
+ "Contact_Person": "Roy (417) 619-5139",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3827 S Western Ct, Spfld",
+ "Job_Codes": "2738 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 3827 S Western Ct, Spfld - Nelson, Roy",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2738",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2738 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/03/22 11:39 AM Beth Cardoza Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2738 - Popcorn scrape - 3827 S Western Ct, Spfld - Nelson, Roy - Roy (417) 619-5139 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.522Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "y7nvwymn7xbzakt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.380Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3113 Winged Foot Dr, Nixa",
+ "Job_Codes": "2737 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3113 Winged Foot Dr, Nixa - Krueger, Paul",
+ "Job_Name": "Patches",
+ "Job_Number": "2737",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2737 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2737 - Patches - 3113 Winged Foot Dr, Nixa - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.578Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "it5n5wej9fx5w8a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.509Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Silliman, Drew",
+ "Contact_Notes": "",
+ "Contact_Person": "Drew 417-773-9667",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5518 E FR 168, Rogersville",
+ "Job_Codes": "2736 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 5518 E FR 168, Rogersville - Silliman, Drew",
+ "Job_Name": "Remodel",
+ "Job_Number": "2736",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2736 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/09/23 4:45 PM Beth Cardoza Never heard back so assuming not awarded---\n10/19/22 9:42 AM Beth Cardoza 5518 E farm rd 168 Rogersville Mo 65742 \nYes orange peel and knockdown, whole house will have trim around it. And they are 8 foot ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2736 - Remodel - 5518 E FR 168, Rogersville - Silliman, Drew - Drew 417-773-9667 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.631Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gvtrbp4t32y47cu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.624Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Codling, Chris",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris (417) 343-8099",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "874 Crane Ct, Nixa",
+ "Job_Codes": "2735 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 874 Crane Ct, Nixa - Codling, Chris",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2735",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2735 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/19/22 5:55 PM Beth Cardoza We were too high---\n10/18/22 3:30 PM Beth Cardoza Needs price for texturing ceiling that she has scraped popcorn off of. Hoping to get it done soon (she's working on scraping the vaulted living room ceiling still, but does not plan to do the rest of the house)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2735 - Ceiling - 874 Crane Ct, Nixa - Codling, Chris - Chris (417) 343-8099 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.682Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sm5321c3ejewq28",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.737Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pleasant & Sons",
+ "Contact_Notes": "",
+ "Contact_Person": "pleasantandsons@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7526 W FR 160, Republic",
+ "Job_Codes": "2734 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 7526 W FR 160, Republic - Pleasant & Sons",
+ "Job_Name": "Finish",
+ "Job_Number": "2734",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2734 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 2:11 PM Beth Cardoza Assumed unawarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2734 - Finish - 7526 W FR 160, Republic - Pleasant & Sons - pleasantandsons@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.739Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1lmt9ulumph7ot7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.841Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Helitech",
+ "Contact_Notes": "",
+ "Contact_Person": "Rob Mardirosian",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "robco3@htc.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1549 North Ohara Avenue, Spfld, MO",
+ "Job_Codes": "2733 - Helitech Office",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2733%20Helitech%20Office%20%281549%20North%20Ohara%20Avenue%2C%20Spfld%2C%20MO%29%20%28Helitech%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Helitech Office - 1549 North Ohara Avenue, Spfld, MO - Helitech",
+ "Job_Name": "Helitech Office",
+ "Job_Number": "2733",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2733 - Helitech Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6187799271",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2733 - Helitech Office - 1549 North Ohara Avenue, Spfld, MO - Helitech - Rob Mardirosian - 6187799271",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.791Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wjjn1pnpmy17nv0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:28.941Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Truman Isbell",
+ "Contact_Notes": "",
+ "Contact_Person": "Truman (417) 841-7956",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2009 N 9th Ave, Ozark",
+ "Job_Codes": "2732 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 2009 N 9th Ave, Ozark - Truman Isbell",
+ "Job_Name": "Patches",
+ "Job_Number": "2732",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2732 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2732 - Patches - 2009 N 9th Ave, Ozark - Truman Isbell - Truman (417) 841-7956 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.847Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yupsoxw6r1s26qb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.054Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Marshfield",
+ "Job_Codes": "2731 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Marshfield - King, Brad",
+ "Job_Name": "N/A",
+ "Job_Number": "2731",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2731 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/12/23 3:44 PM CCLLC Office Need CO for bunk beds. Ask Eddie for details.---\n05/03/23 4:16 PM Beth Cardoza Dave. We need you at snith in marshfield asap to get all drywall patching done \nOk. Yes please. Also in upstairs bath above garage there is a pipe exposed. Need to figure out how to cover it. Maybe double up later of drywall \n04/12/23 1:44 PM Beth Cardoza CO: Amithbhouse has about 4 or 5 large patches need done. \nNo drywall needed just patches\nBrad king \nMarshfield house\n2731---\n12/01/22 3:43 PM Beth Cardoza CO: Framing issues. Waiting for specific information to create the CO---\n11/22/22 11:08 AM Beth Cardoza CO: add tearaway at window wraps---\n11/22/22 11:08 AM Beth Cardoza CO: Also I will be paying Julio two or three hours for basically having to enclosed the carport area with the plywood that was sitting there in the garage. And probably covering some of the floors as well with paper---\n11/06/22 8:32 AM david cardoza Stock \nCold wall 768\nRegular stock 32,944\nNext stock 768 (coincidence)\nFinal stock 288\nTotal stock 34,768\n\nFinal left over at Marshfield \n\n6-8\n2-10\n11-12\n_________\nTotal leftover 800---\n11/17/22 5:20 PM Beth Cardoza Just as a side note, there was also a cold wall stock of 768 sqft.---\n11/11/22 11:50 AM Beth Cardoza CO: door wraps? Find out how many and if they were any other than openings on plans and if they were done on Saturday and not needed to be caught up---\n11/16/22 4:33 PM Beth Cardoza They did not need to be caught up, but if we do charge for them there were about 9 openings to wrap in that main area. There are other things related to framing issues that will need to be caught up that we will need to make\n10/25/22 11:05 AM Beth Cardoza Dave walk through notes 10/25/22\n\nBrad king Marshfield \n\n37.38566° N, 92.93864° W\n\nMulti car garage is about 60 feet long by 26 feet deep. 11 1/2 feet high. \n\nthere is another four car garage that sits about 10 feet behind t\n10/17/22 2:33 PM Beth Cardoza Asking for cold wall to be hung, but this is the first we've heard of the job---\n10/20/22 11:03 AM Beth Cardoza I emailed asking about finishes and window wraps and all that. Waiting for a response.---\n10/19/22 6:12 PM Beth Cardoza For reference for later, the detached garage is 6,976 sqft---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2731 - N/A - Marshfield - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.903Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h5fj7t1tn9sa58z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.181Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hall, Shirley",
+ "Contact_Notes": "",
+ "Contact_Person": "Shirley (417) 414-1273",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1710 W Erie St, Spfld",
+ "Job_Codes": "2730 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1710 W Erie St, Spfld - Hall, Shirley",
+ "Job_Name": "Patches",
+ "Job_Number": "2730",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2730 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 2:09 PM Beth Cardoza Never heard back---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2730 - Patches - 1710 W Erie St, Spfld - Hall, Shirley - Shirley (417) 414-1273 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:58.950Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2fz7mjx9rnu3nrl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.302Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "124 Spyglass, Branson",
+ "Job_Codes": "2729 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 124 Spyglass, Branson - Ozark Mountain Homes",
+ "Job_Name": "Patch",
+ "Job_Number": "2729",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2729 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/29/22 11:47 AM Heidi Mahan Code: #0591---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2729 - Patch - 124 Spyglass, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.003Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tw8wlumkcjr3o9p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.410Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mullings, Dorian",
+ "Contact_Notes": "",
+ "Contact_Person": "Dorian (845) 750-5780",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "834 Blacksands, Nixa",
+ "Job_Codes": "2728 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 834 Blacksands, Nixa - Mullings, Dorian",
+ "Job_Name": "Repairs",
+ "Job_Number": "2728",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2728 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/21/22 1:53 PM CCLLC Office @apence@ccllc.pro this has a change order that needs billing still---\n10/24/22 9:37 AM Beth Cardoza STarting today---\n10/12/22 5:51 PM Beth Cardoza Found us on google---\n10/12/22 5:46 PM Beth Cardoza Needs some work in a bathroom. Installed new shower, need patch around shower and a wall built out. plus a 12\" dent in the wall. Eddie to call and schedule a time to look at it. 10' ceilings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2728 - Repairs - 834 Blacksands, Nixa - Mullings, Dorian - Dorian (845) 750-5780 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.059Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "levz3gxlyh36ze9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.529Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece Builders & Design Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso, 417-336-3895, tom@buildinbranson.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1017 W. Main St., Branson, MO",
+ "Job_Codes": "2727 - Vinton Real Estate Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Vinton Real Estate Office - 1017 W. Main St., Branson, MO - Masterpiece Builders & Design Inc.",
+ "Job_Name": "Vinton Real Estate Office",
+ "Job_Number": "2727",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2727 - Vinton Real Estate Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2727 - Vinton Real Estate Office - 1017 W. Main St., Branson, MO - Masterpiece Builders & Design Inc. - Tom Caruso, 417-336-3895, tom@buildinbranson.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.119Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yah7so60t6cjm4l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.641Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Melugin, Kelsey",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelsey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5131 S Chelsea Ave, Spfld",
+ "Job_Codes": "2726 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 5131 S Chelsea Ave, Spfld - Melugin, Kelsey",
+ "Job_Name": "Step thru",
+ "Job_Number": "2726",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2726 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/12/22 5:33 PM Beth Cardoza Doing it TM---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2726 - Step thru - 5131 S Chelsea Ave, Spfld - Melugin, Kelsey - Kelsey - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.186Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7dv2jd4cor0wb4x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.752Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moreland, Shawn",
+ "Contact_Notes": "",
+ "Contact_Person": "Shawn (417) 619-4943",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3505 S Kings Ave, Spfld",
+ "Job_Codes": "2725 - Bathrooms",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bathrooms - 3505 S Kings Ave, Spfld - Moreland, Shawn",
+ "Job_Name": "Bathrooms",
+ "Job_Number": "2725",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2725 - Bathrooms",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/20/22 11:03 AM Beth Cardoza We will work on an estimate in about a month. It's a full on bathroom remodel, not just drywall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2725 - Bathrooms - 3505 S Kings Ave, Spfld - Moreland, Shawn - Shawn (417) 619-4943 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.247Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sh0eq0rhknag68c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.862Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schmidly, Felicia",
+ "Contact_Notes": "",
+ "Contact_Person": "Felicia (417) 773-7196",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5832 S Clay Ave, Spfld",
+ "Job_Codes": "2724 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 5832 S Clay Ave, Spfld - Schmidly, Felicia",
+ "Job_Name": "Patches",
+ "Job_Number": "2724",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2724 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/23 10:43 AM Beth Cardoza Felicia is replacing a shower in a bathroom and will need a second phase at some point---\n06/27/23 2:06 PM Beth Cardoza Felicia texted me saying they had more to add to last year's quote. Eddie is going to try to look at it.---\n01/17/23 2:08 PM Beth Cardoza This job is on hold. She will call when they are ready to proceed (message from November)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2724 - Patches - 5832 S Clay Ave, Spfld - Schmidly, Felicia - Felicia (417) 773-7196 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.299Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vukde9rp13yin87",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:29.973Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Higgins, Julie",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie (417) 849-7451",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1026 W Riverbluff",
+ "Job_Codes": "2723 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 1026 W Riverbluff - Higgins, Julie",
+ "Job_Name": "Addition",
+ "Job_Number": "2723",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2723 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/23 1:51 PM Beth Cardoza Estimate needs update---\n10/12/22 9:41 AM Beth Cardoza it's just for the back living room and bedroom---\n10/11/22 2:07 PM Beth Cardoza Waiting on plans. Architect fixing an error---\n10/07/22 3:11 PM Beth Cardoza Small addition. Digging in 2 weeks and expect to be ready for us 1st week of December. Addition on an old farm house. A great room and a bedroom. The great room will have a slight vault up to a flat. probably something like 7",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2723 - Addition - 1026 W Riverbluff - Higgins, Julie - Julie (417) 849-7451 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.355Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "89ije3gfkxm01zo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.080Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "465 Bear Trail, Galena",
+ "Job_Codes": "2722 - McKenzie",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F2722%20McKenzie%20%28465%20Bear%20Trail%2C%20Galena%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "McKenzie - 465 Bear Trail, Galena - Pitts, Doug",
+ "Job_Name": "McKenzie",
+ "Job_Number": "2722",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2722 - McKenzie",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/25 2:10 PM Beth Cardoza Decided not to build---\n08/31/23 1:00 PM Beth Cardoza On hold - Pitts---\n10/12/22 9:36 AM Beth Cardoza Cardoza Sales\nMon, Oct 10, 11:20 AM (2 days ago)\nOkay, thanks. I can't find anywhere where it shows ceiling heights for the basement. What should I figure for that?\n\ndoug@dougpittsconstruction.net\n8:23 AM (1 hour ago)\nto me\n\n\n10/10/22 10:26 AM Beth Cardoza Lets assume Level 4 only on main level Living, Kitchen, and Dining.\nWindows will be trimmed out.\nSquare corners\nIf it gets in budget we should be ready for drywall late spring.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2722 - McKenzie - 465 Bear Trail, Galena - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.407Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b5luevshufcpiv1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.217Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "169 Country Ridge, Branson",
+ "Job_Codes": "2721 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 169 Country Ridge, Branson - Krueger, Paul",
+ "Job_Name": "Addition",
+ "Job_Number": "2721",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2721 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/21/23 1:09 PM Beth Cardoza CO: delay taping. Changes… move some walls and change out some pocket doors. Will have to come back next week and do some more hanging before start taping---\n03/23/23 4:37 PM Beth Cardoza Also Hat channel... Get with Eddie on details---\n10/10/22 11:14 AM Beth Cardoza He sent plans, but someone (Dave?) needs to talk to him about soundproofing studio room and walk it to confirm actual areas needed to be included in estimate, etc. Waiting on more info for estimate.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2721 - Addition - 169 Country Ridge, Branson - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.459Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uteaq2t594gh3uz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.317Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1201 Berry Dr, Branson",
+ "Job_Codes": "2720 - Bsmt",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bsmt - 1201 Berry Dr, Branson - Krueger, Paul",
+ "Job_Name": "Bsmt",
+ "Job_Number": "2720",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2720 - Bsmt",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/10/22 11:12 AM Beth Cardoza Needs to be looked at---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2720 - Bsmt - 1201 Berry Dr, Branson - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.507Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rvhrhchvrfdpwrt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.425Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cleveringa, Bob",
+ "Contact_Notes": "",
+ "Contact_Person": "bob.cleveringa@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2719 - Cleveringa Residence",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2719%20Cleveringa%20Residence%20%28%29%20%28Cleveringa%2C%20Bob%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Cleveringa Residence - - Cleveringa, Bob",
+ "Job_Name": "Cleveringa Residence",
+ "Job_Number": "2719",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2719 - Cleveringa Residence",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 3:28 PM Beth Cardoza Assumed not awarded---\n10/12/22 1:49 PM Beth Cardoza Gave a photo of unit price as budgetary through Dave. Rick hadn't reviewed and it did not show board prices, just the labor unit price including my take off from plans. It'll be refigured next year anyway.---\n10/11/22 3:24 PM Beth Cardoza Bob is a superintendent for Mark Still. His son (Allen I assume) is building a house and needs budgetary numbers for the bank---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2719 - Cleveringa Residence - - Cleveringa, Bob - bob.cleveringa@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.567Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hfwl285upp7ro47",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.544Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Babin, Kevin",
+ "Contact_Notes": "",
+ "Contact_Person": "Kevin Babin (417) 848-7054",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "392 N Niangua Dr, Nixa",
+ "Job_Codes": "2718 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 392 N Niangua Dr, Nixa - Babin, Kevin",
+ "Job_Name": "Repairs",
+ "Job_Number": "2718",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2718 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/10/22 11:07 AM Beth Cardoza Eddie has an appointment at 11:30 to view---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2718 - Repairs - 392 N Niangua Dr, Nixa - Babin, Kevin - Kevin Babin (417) 848-7054 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.615Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rzuumtvbhr2v83l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.653Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Superior Building Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Bookstaver, 314-241-5383",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "300 Tanger Blvd, Ste 105, Branson, MO",
+ "Job_Codes": "2717 - Levi's - Branson, MO",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Levi's - Branson, MO - 300 Tanger Blvd, Ste 105, Branson, MO - Superior Building Group",
+ "Job_Name": "Levi's - Branson, MO",
+ "Job_Number": "2717",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2717 - Levi's - Branson, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2717 - Levi's - Branson, MO - 300 Tanger Blvd, Ste 105, Branson, MO - Superior Building Group - Chris Bookstaver, 314-241-5383 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.670Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bznhxzxtju4g3yt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.769Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2805 N. General Aviation Ave., Springfield, MO 65803",
+ "Job_Codes": "2716 - AG Aircraft Hanger Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2716%20AG%20Aircraft%20Hanger%20Renovation%20%282805%20N%2E%20General%20Aviation%20Ave%2E%2C%20Springfield%2C%20MO%2065803%29%20%28Rich%20Kramer%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "AG Aircraft Hanger Renovation - 2805 N. General Aviation Ave., Springfield, MO 65803 - Rich Kramer Construction",
+ "Job_Name": "AG Aircraft Hanger Renovation",
+ "Job_Number": "2716",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2716 - AG Aircraft Hanger Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2716 - AG Aircraft Hanger Renovation - 2805 N. General Aviation Ave., Springfield, MO 65803 - Rich Kramer Construction - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.727Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d9jop47jbqaun4z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.870Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Petry, Jessica",
+ "Contact_Notes": "",
+ "Contact_Person": "Jessica petry.jess@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "800 State Hwy Y, Galena",
+ "Job_Codes": "2715 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 800 State Hwy Y, Galena - Petry, Jessica",
+ "Job_Name": "N/A",
+ "Job_Number": "2715",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2715 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/05/22 3:57 PM Beth Cardoza They already found someone else (we didn't respond for a couple of days to the inquiry)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2715 - N/A - 800 State Hwy Y, Galena - Petry, Jessica - Jessica petry.jess@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.779Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xjcp3vqzl439cu1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:30.989Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bartholom, Tony",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony (541) 592-9400",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfld",
+ "Job_Codes": "2714 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - Spfld - Bartholom, Tony",
+ "Job_Name": "Remodel",
+ "Job_Number": "2714",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2714 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/06/22 12:51 PM Beth Cardoza Duplication. Same job as 2790 ceiling repair.---\n10/10/22 12:22 PM Beth Cardoza Stephanie has a tenant name and number to contact to set up an appointment to look at it---\n10/06/22 10:26 AM Beth Cardoza Stephanie called and left a message---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2714 - Remodel - Spfld - Bartholom, Tony - Tony (541) 592-9400 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.831Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6mtu8gxli6nucnf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.097Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "David Lipscomb",
+ "Contact_Notes": "",
+ "Contact_Person": "David Lipscomb, dtltd@aol.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "222 E. Primrose St, Ste E, Springfield MO",
+ "Job_Codes": "2713 - Elite Pain Management",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Elite Pain Management - 222 E. Primrose St, Ste E, Springfield MO - David Lipscomb",
+ "Job_Name": "Elite Pain Management",
+ "Job_Number": "2713",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2713 - Elite Pain Management",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2713 - Elite Pain Management - 222 E. Primrose St, Ste E, Springfield MO - David Lipscomb - David Lipscomb, dtltd@aol.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.895Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ep5mbl9v3nzvwq4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.205Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "543 Weaver Road, Springfield, MO 65810",
+ "Job_Codes": "2712 - New Climate Controlled Mini-Storage Project",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "New Climate Controlled Mini-Storage Project - 543 Weaver Road, Springfield, MO 65810 - Rich Kramer Construction",
+ "Job_Name": "New Climate Controlled Mini-Storage Project",
+ "Job_Number": "2712",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2712 - New Climate Controlled Mini-Storage Project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2712 - New Climate Controlled Mini-Storage Project - 543 Weaver Road, Springfield, MO 65810 - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:22:59.948Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "17w8e194t8tu8om",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.313Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Q & Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Cameron Pope, 417-863-6700, cameronpope@qandcompanyllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4000 Continental Way, Springfield, MO 65803",
+ "Job_Codes": "2711 - Northstar Battery Mezzanine",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Northstar Battery Mezzanine - 4000 Continental Way, Springfield, MO 65803 - Q & Company",
+ "Job_Name": "Northstar Battery Mezzanine",
+ "Job_Number": "2711",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2711 - Northstar Battery Mezzanine",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2711 - Northstar Battery Mezzanine - 4000 Continental Way, Springfield, MO 65803 - Q & Company - Cameron Pope, 417-863-6700, cameronpope@qandcompanyllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.003Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "n5q5va67qpvyhjx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.425Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ferry, Craig",
+ "Contact_Notes": "",
+ "Contact_Person": "Craig (417) 988-2622",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10141 Easton Rd, Lebanon",
+ "Job_Codes": "2710 - Tape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Tape - 10141 Easton Rd, Lebanon - Ferry, Craig",
+ "Job_Name": "Tape",
+ "Job_Number": "2710",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2710 - Tape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/06/22 10:24 AM Beth Cardoza It was a \"ready now\" job, but I went out of town and Rick wasn't interested in doing it and was swamped so it got dropped. I'm assuming he found someone else or has got a lot of it done himself now, but I did send him an apo",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2710 - Tape - 10141 Easton Rd, Lebanon - Ferry, Craig - Craig (417) 988-2622 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.059Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ktxr0k2zq5nwhqx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.565Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reynolds, Ken",
+ "Contact_Notes": "",
+ "Contact_Person": "Ken (417) 861-4160",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4111 Sweetgum, Spokane",
+ "Job_Codes": "2709 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 4111 Sweetgum, Spokane - Reynolds, Ken",
+ "Job_Name": "Remodel",
+ "Job_Number": "2709",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2709 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/31/22 10:17 AM Beth Cardoza They went with another company. We were too high---\n10/06/22 10:25 AM Beth Cardoza They didn't have a tape measure. Measuring it today.\nNot in too big of a rush. Ready 1st week of November probably. Has a few things to wrap up and they are going out of town next week.---\n09/28/22 4:38 PM Beth Cardoza Eddie & Stephanie looking at it this Friday at 11 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2709 - Remodel - 4111 Sweetgum, Spokane - Reynolds, Ken - Ken (417) 861-4160 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.123Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zk3w6c6jjmhab5w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.677Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve 417-813-6889",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1939 E Woodland, Spfld",
+ "Job_Codes": "2708 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1939 E Woodland, Spfld - Larsen, Steve",
+ "Job_Name": "Patch",
+ "Job_Number": "2708",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2708 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/28/22 1:37 PM Beth Cardoza 4'x4' patch---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2708 - Patch - 1939 E Woodland, Spfld - Larsen, Steve - Steve 417-813-6889 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.179Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ezm30rg6hl9l095",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.809Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle 417-860-3628",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2707 - San Poppi Ph 1 Lot 8",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F2707%20San%20Poppi%20Ph%201%20Parcel%20B%20%28Dowell%2C%20Kyle%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "San Poppi Ph 1 Lot 8 - - Dowell, Kyle",
+ "Job_Name": "San Poppi Ph 1 Lot 8",
+ "Job_Number": "2707",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2707 - San Poppi Ph 1 Lot 8",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/23/24 2:11 PM Beth Cardoza Trying to get the permit from the city still. Hopefully get it approved and start digging late this or early next week. So we probably have 3ish months before we are ready for drywall.\nKyle---\n09/28/22 1:45 PM Beth Cardoza There are a list of rules (downloaded to job folder) among which are to keep the site clean/cleanup daily. and \n2. Work hours are Mon- Saturday from 7 a.m to 7 p.m. Sunday work can be permitted if it is requested\nand approved\n09/28/22 1:42 PM Beth Cardoza Drywall- Tree bark textured ceiling, light orange peel on the walls. Window wall of dinning room level 5.\nAll windows wrapped on 3 sides with wood sills.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2707 - San Poppi Ph 1 Lot 8 - - Dowell, Kyle - Kyle 417-860-3628 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.234Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g8lpdi9jp0s2yxv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:31.913Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Todd, Keaton",
+ "Contact_Notes": "",
+ "Contact_Person": "Keaton (417) 818-8387",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1119 E Cambridge St, Spfld",
+ "Job_Codes": "2706 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 1119 E Cambridge St, Spfld - Todd, Keaton",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2706",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2706 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/26/22 12:56 PM Beth Cardoza Walking it tomorrow. Maybe start Thursday if awarded?---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2706 - Popcorn scrape - 1119 E Cambridge St, Spfld - Todd, Keaton - Keaton (417) 818-8387 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.287Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3v21iy1umm9f0tz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.037Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wendy",
+ "Contact_Notes": "",
+ "Contact_Person": "Wendy (417) 616-7904",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4059 E Winding, Spfld",
+ "Job_Codes": "2705 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 4059 E Winding, Spfld - Wendy",
+ "Job_Name": "Patch",
+ "Job_Number": "2705",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2705 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/22/22 2:07 PM Beth Cardoza Wendy\n( marvins daughter\n\n417.616.7904\nEmerald Park subdivision\n\n4059 E. Winding\nSpringfield Mo 65809\n\nSmall patch under bathroom sink where there was a water leak. Call her direct to set up appointment.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2705 - Patch - 4059 E Winding, Spfld - Wendy - Wendy (417) 616-7904 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.344Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ojoin4z6iw9buga",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.157Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "2704 - Galgano",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2704%20Galgano%20%28Ozark%29%20%28King%2C%20Brad%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Galgano - Ozark - King, Brad",
+ "Job_Name": "Galgano",
+ "Job_Number": "2704",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2704 - Galgano",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 2:29 PM Beth Cardoza Assumed not awarded---\n09/22/22 12:17 PM Beth Cardoza smooth walls throughout. Window wraps---\n09/26/22 4:20 PM Beth Cardoza Beams will be finished not wrapped---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2704 - Galgano - Ozark - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.403Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "yhqb4heeshegtae",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.261Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nash, Stephanie",
+ "Contact_Notes": "",
+ "Contact_Person": "Stephanie (417) 773-3201",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2224 Eagles Ln, Nixa",
+ "Job_Codes": "2703 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 2224 Eagles Ln, Nixa - Nash, Stephanie",
+ "Job_Name": "Addition",
+ "Job_Number": "2703",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2703 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/03/23 3:16 PM Beth Cardoza Went with someone else---\n11/04/22 1:46 PM Beth Cardoza Have not broken ground yet. Probably another month and a half. She will call when they get the framing up so we can walk it---\n09/22/22 10:46 AM Beth Cardoza For reference, I sent a budgetary quote showing $7,890.50 with an email stating \"I'm thinking it will probably cost between $6,500 and 8,500 including drywall board.\" \nI think the $7,890.50 is on the high side and think IF i\n09/22/22 9:44 AM Beth Cardoza Maria Cass reference. Master suite addition: Bed room, bathroom, closet and laundry room. 16x40 area. Figure 9' ceilings and texture to match existing, figure standard textures. She thinks their dirt guy won't start for 4 or",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2703 - Addition - 2224 Eagles Ln, Nixa - Nash, Stephanie - Stephanie (417) 773-3201 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.463Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0ff8dpy8mcip0lz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.373Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Evans, Chelsea",
+ "Contact_Notes": "",
+ "Contact_Person": "Chelsea (417) 521-8169",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hiawatha, Fordland",
+ "Job_Codes": "2702 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Hiawatha, Fordland - Evans, Chelsea",
+ "Job_Name": "N/A",
+ "Job_Number": "2702",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2702 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 3:26 PM Beth Cardoza No response. Assumed not awarded.---\n09/21/22 11:56 AM Beth Cardoza Does not yet have an address. It's at the edge of Christian County in Fordland where Hiawatha and Martins Branch meet. There is a curve there and their driveway is on the curve.\n\n37.07622681642075, -92.91544431493355---\n09/21/22 12:00 PM Beth Cardoza 37 minute drive from office---\n09/21/22 11:55 AM Beth Cardoza Building a shop with living quarters to live in temporarily for a couple of years. Want drywall in shop and in living area. Figured standard textures, square corners and no window wraps. May make adjustments when the time co",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2702 - N/A - Hiawatha, Fordland - Evans, Chelsea - Chelsea (417) 521-8169 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.519Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mxlzeh84khrxsdq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.481Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dortch, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike (801) 372-4215",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "155 Ruby's Rest, Reeds Spring",
+ "Job_Codes": "2701 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 155 Ruby's Rest, Reeds Spring - Dortch, Mike",
+ "Job_Name": "N/A",
+ "Job_Number": "2701",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2701 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/23/22 1:51 PM Beth Cardoza Rick viewing this evening and Phill with REW is hoping to measure on Monday---\n09/20/22 10:17 AM Beth Cardoza Needs to be looked at and measured---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2701 - N/A - 155 Ruby's Rest, Reeds Spring - Dortch, Mike - Mike (801) 372-4215 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.575Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g22sj103kdy779i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.600Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McConnell, Kirk",
+ "Contact_Notes": "",
+ "Contact_Person": "Kirk 417-294-7179",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1589 Silo Pl, Bolivar",
+ "Job_Codes": "2700 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1589 Silo Pl, Bolivar - McConnell, Kirk",
+ "Job_Name": "Remodel",
+ "Job_Number": "2700",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2700 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/06/22 10:14 AM Beth Cardoza He did not require an estimate. I created one for our needs, but it will need to be reviewed/compared to costs before billing---\n09/26/22 11:06 AM Beth Cardoza Eddie & Stephanie scheduled to view tomorrow morning---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2700 - Remodel - 1589 Silo Pl, Bolivar - McConnell, Kirk - Kirk 417-294-7179 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.631Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7ceqhfcax6yyp3d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.721Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Windy Ct, Branson West",
+ "Job_Codes": "2699 - Amass",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Amass - Windy Ct, Branson West - King, Brad",
+ "Job_Name": "Amass",
+ "Job_Number": "2699",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2699 - Amass",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/17/23 2:05 PM Beth Cardoza CO: We have 3 holes at Amass. Can we schedule you in? -King---\n07/27/23 9:26 AM Beth Cardoza CO:\n\nReminder \n\nHad clay frame and hang entryway soffits. Billable extra. I guess julio just caught it up with the first coat.---\n07/27/23 9:29 AM Beth Cardoza Remember to consider that it’s a unit price job---\n07/27/23 9:58 AM Beth Cardoza Clay had about 9.5 hrs to frame and hang the soffit.\nProbably a sheet and a half of drywall---\n07/05/23 10:38 AM david cardoza Cold wall stock 960\nMain stock 15,856\nFinal stock 864\nTotal stock 17,680\n(figure for now the actual cold wall hang was 850)\nFinal Leftover 108\nFootage to Angel 15,762\nFootage to Julio 17,572---\n06/16/23 1:08 PM Beth Cardoza 36.58282° N, 93.37017° W---\n09/19/22 5:12 PM Beth Cardoza square corners. Will be several months out. Only budgeting now---\n09/19/22 1:03 PM Beth Cardoza drywall all locations\nno window wraps\nlevel 5 smooth throughout interior of home walls and ceilings - we can do orange peel in garage---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2699 - Amass - Windy Ct, Branson West - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.683Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dfwzq6jmpw0kae7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.841Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moses, Wally",
+ "Contact_Notes": "",
+ "Contact_Person": "Wally (417) 300-5643",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5849 S Meadowood, Spfld",
+ "Job_Codes": "2698 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5849 S Meadowood, Spfld - Moses, Wally",
+ "Job_Name": "N/A",
+ "Job_Number": "2698",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2698 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/05/22 12:58 PM Beth Cardoza Bank required a new contractor and contractor has his own subs and won't use anyone he had already lined up (like us). He wanted to use us but can't now.---\n09/23/22 12:46 PM Beth Cardoza We supply board.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2698 - N/A - 5849 S Meadowood, Spfld - Moses, Wally - Wally (417) 300-5643 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.743Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "36a3vmdws8cbx5z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:32.970Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI Construction, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Trey Ziegenbein, 417-590-8131, tziegenbein@kciconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5602 South Campbell Ave., Spfld, MO",
+ "Job_Codes": "2697 - Healing Paws Veterinary Clinic",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Healing Paws Veterinary Clinic - 5602 South Campbell Ave., Spfld, MO - KCI Construction, Inc.",
+ "Job_Name": "Healing Paws Veterinary Clinic",
+ "Job_Number": "2697",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2697 - Healing Paws Veterinary Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2697 - Healing Paws Veterinary Clinic - 5602 South Campbell Ave., Spfld, MO - KCI Construction, Inc. - Trey Ziegenbein, 417-590-8131, tziegenbein@kciconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.799Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ousuxqgn902qpkt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.093Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Manager house",
+ "Job_Codes": "2696 - Serenity Shores",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Serenity Shores - Manager house - King, Brad",
+ "Job_Name": "Serenity Shores",
+ "Job_Number": "2696",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2696 - Serenity Shores",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/15/22 3:34 PM Beth Cardoza Patches. Waiting to get info for quote/bill---\n09/20/22 2:20 PM Beth Cardoza Actually, it'll just be TM like everything else.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2696 - Serenity Shores - Manager house - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.854Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xnabcm81rhy09fp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.257Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Cove",
+ "Job_Codes": "2695 - #77BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#77BC - Branson Cove - Still, Mark",
+ "Job_Name": "#77BC",
+ "Job_Number": "2695",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2695 - #77BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/15/22 3:49 PM Beth Cardoza waiting for info for quote---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2695 - #77BC - Branson Cove - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.903Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oadxijxstdxjb08",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.382Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Colton, Jim",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim (417) 299-2407",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5923 S Dollison, Spfld",
+ "Job_Codes": "2694 - Anthony Park",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Anthony Park - 5923 S Dollison, Spfld - Colton, Jim",
+ "Job_Name": "Anthony Park",
+ "Job_Number": "2694",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2694 - Anthony Park",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/20/22 8:36 AM david cardoza Stocked 14,210\nNo leftover---\n09/19/22 3:43 PM Beth Cardoza Mayberry referal---\n09/16/22 1:44 PM Beth Cardoza Orange peel walls basket weave ceilings, square corners, 3 way window wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2694 - Anthony Park - 5923 S Dollison, Spfld - Colton, Jim - Jim (417) 299-2407 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:00.952Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cpiazv6o3wcm82w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.502Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2693 - Rocky Point #9",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #9 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #9",
+ "Job_Number": "2693",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2693 - Rocky Point #9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:34 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n01/06/23 4:50 PM Beth Cardoza CO: framers forgot a closet in the front room. They are framing it now and I will need it sheetrocked---\n11/30/22 8:49 AM david cardoza Stock 8,278\nSecond stock 2,052\nTotal stock 10,330\nLeftover 54\nHang 10,276---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2693 - Rocky Point #9 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.011Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z42dnkirqy1bedt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.614Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2692 - Rocky Point #8",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #8 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #8",
+ "Job_Number": "2692",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2692 - Rocky Point #8",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:34 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:14 PM Beth Cardoza CO: punchlist---\n11/30/22 8:48 AM david cardoza stock 8,278\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2692 - Rocky Point #8 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.062Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f09q9n5ps84qntx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.742Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2691 - Rocky Point #7",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #7 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #7",
+ "Job_Number": "2691",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2691 - Rocky Point #7",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:34 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n11/21/22 1:48 PM CCLLC Office Job done by Eddings---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2691 - Rocky Point #7 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.112Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ngo4or5ikerr07t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.849Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2690 - Rocky Point #6",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #6 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #6",
+ "Job_Number": "2690",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2690 - Rocky Point #6",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:34 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:13 PM Beth Cardoza CO: punchlist---\n02/03/23 2:06 PM Beth Cardoza CO: window installed late. Need to return to wrap---\n11/14/22 6:33 AM david cardoza Stock 13,184\nSecond stock 1,224\nFinal stock 14,408\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2690 - Rocky Point #6 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.162Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8zujc5rb7uhnrct",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:33.948Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2689 - Rocky Point #5",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #5 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #5",
+ "Job_Number": "2689",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2689 - Rocky Point #5",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:34 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:13 PM Beth Cardoza CO: punchlist---\n11/08/22 6:24 AM david cardoza Stock 11,364\nLeftover \n1,080\nHang 10,284---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2689 - Rocky Point #5 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.219Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4e0nr4abg0my9pl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:34.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2688 - Rocky Point #4",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #4 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #4",
+ "Job_Number": "2688",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2688 - Rocky Point #4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/23/23 12:16 PM Beth Cardoza Rocky shores lockboxes Code 7855\nUnit 4, 34, 17, 27\nThere is a lockbox on the backside of the post of the front deck. This unlocks all the buildings.---\n05/22/23 12:34 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n05/22/23 12:33 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:12 PM Beth Cardoza CO: punchlist---\n11/15/22 7:14 AM david cardoza Stock 15,370\nLeftover 1,200\nHang 14,170---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2688 - Rocky Point #4 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.275Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4xufvu0q3n82uem",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:34.153Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2687 - Rocky Point #3",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #3 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #3",
+ "Job_Number": "2687",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2687 - Rocky Point #3",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:32 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:12 PM Beth Cardoza CO: punchlist---\n11/08/22 6:28 AM david cardoza Stock 16,638\nLeftover 2,576\nHang 14,062---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2687 - Rocky Point #3 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.347Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "41727eq5hmh169r",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:34.261Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2686 - Rocky Point #2",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #2 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #2",
+ "Job_Number": "2686",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2686 - Rocky Point #2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/22/23 12:32 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:12 PM Beth Cardoza CO: punchlist---\n11/30/22 12:41 PM Beth Cardoza CO: Will be paying Russo $75 to hang patches where drywall was removed \n\nStairway ceiling by main level for a sprinkler problem \n\nBathroom sheets were removed for some reason\n\nCeiling patch near fireplace \n\nShould be charged\n11/14/22 6:32 AM david cardoza Stock 16,416\nNo leftover---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2686 - Rocky Point #2 - Hollister - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.408Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "efkgof3lrf7gax0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:34.361Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Josh",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh King (417) 631-5041",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1498 State Highway K Bois D Arc",
+ "Job_Codes": "2685 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 1498 State Highway K Bois D Arc - King, Josh",
+ "Job_Name": "Addition",
+ "Job_Number": "2685",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2685 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/23/23 10:34 AM david cardoza Leftover 568---\n01/23/23 11:16 AM Beth Cardoza Looks like original stock was 8,686. so\n\nStock: 8686\nLeftover: 568\nTotal Hang: 8118---\n11/04/22 1:38 PM Beth Cardoza Probably not ready until the week after Thanksgiving---\n10/26/22 11:06 AM Beth Cardoza Wants some concrete board on kitchen walls. He's wanting to do it himself and get a deduct on footage---\n10/10/22 9:47 AM Beth Cardoza Ready mid - November---\n09/16/22 3:41 PM Beth Cardoza Expect to be ready for drywall Nov 1st. Wanted option for L4 smooth and option for orange peel walls and a different texture on ceiling (were going to look at our website). I'm figuring on bidding stomp knockdown unless other\n09/14/22 4:18 PM Beth Cardoza Millers to view 8am Thursday, Sept 15th---\n09/16/22 12:31 PM Beth Cardoza walkthrough got pushed off by client---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2685 - Addition - 1498 State Highway K Bois D Arc - King, Josh - Josh King (417) 631-5041 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.463Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8e0bd4xa9x5im8w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:34.490Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highlandville?",
+ "Job_Codes": "2684 - Patches at Dusty's Parent's",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches at Dusty's Parent's - Highlandville? - Essick, Dusty",
+ "Job_Name": "Patches at Dusty's Parent's",
+ "Job_Number": "2684",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2684 - Patches at Dusty's Parent's",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/13/22 11:04 AM Beth Cardoza Need info for estimate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2684 - Patches at Dusty's Parent's - Highlandville? - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.510Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "05w6q1i7xxy9ruu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:34.922Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jeffers, Julian",
+ "Contact_Notes": "",
+ "Contact_Person": "Julian (816) 695-0119",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5434 S Woodcliff Dr, Spfld",
+ "Job_Codes": "2683 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 5434 S Woodcliff Dr, Spfld - Jeffers, Julian",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2683",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2683 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/15/22 3:55 PM Heidi Mahan Lockbox on meter in front of house. Code: 2001---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2683 - Popcorn scrape - 5434 S Woodcliff Dr, Spfld - Jeffers, Julian - Julian (816) 695-0119 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.567Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4661862upo4imp8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.025Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson, 417-830-6726, estimator@nesbittconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "535 W. Walnut St., Springfield, MO 65806",
+ "Job_Codes": "2682 - Arvest Branch Bank Tenant Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2682%20Arvest%20Branch%20Bank%20Tenant%20Infill%20%28535%20W%2E%20Walnut%20St%2E%2C%20Springfield%2C%20MO%2065806%29%20%28Nesbitt%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Arvest Branch Bank Tenant Infill - 535 W. Walnut St., Springfield, MO 65806 - Nesbitt Construction",
+ "Job_Name": "Arvest Branch Bank Tenant Infill",
+ "Job_Number": "2682",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2682 - Arvest Branch Bank Tenant Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2682 - Arvest Branch Bank Tenant Infill - 535 W. Walnut St., Springfield, MO 65806 - Nesbitt Construction - Joe Jackson, 417-830-6726, estimator@nesbittconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.619Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jgbdywquuvzt005",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.141Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Doris, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mark (618) 554-3433",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "20200 FR 2275, Eagle Rock",
+ "Job_Codes": "2681 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 20200 FR 2275, Eagle Rock - Doris, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "2681",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2681 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/03/23 5:41 PM Beth Cardoza CO?: Called about some drywall repairs. Not sure if they are billable, but I'm guessing so---\n03/06/23 9:10 AM Beth Cardoza An outlet and air return had been covered by drywall. Some damage there plus we moved some outlets and had to fix a water leak that had a drywall screw in it. Several little patches mainly.\nMark\n\nOk. Let me get it on the sch\n12/26/22 4:01 PM Beth Cardoza CO? figured more than one shower area for concrete board but only one sheet of concrete board was used.---\n12/20/22 8:45 AM david cardoza Stock 13,568\nLeftover 48 ft drywall\nLeftover 32 ft cement board.\nFinal Hang 13,520\nHang cement board 32 ft---\n12/19/22 11:23 AM Beth Cardoza CO: Angel fixing framing issues---\n12/02/22 12:35 PM Beth Cardoza 20200 FR 2275\nEagles Rock Mo. \n\nMain level all 10 foot flat except for the living room area at its highest point is 17 foot. Figure about 26 feet of xcrack plus another 20 feet of XTRAC something like that.\n\nBasement will al\n10/27/22 5:36 PM Beth Cardoza Start week of December 5th?---\n09/26/22 9:31 AM Beth Cardoza Awarded. We supply. 5/8\" drywall on all ceilings---\n09/08/22 4:53 PM Beth Cardoza I got your info from Landon Sullens, my wife's nephew. Square corners are fine. Would like windows wrapped but may not be possible. We hope to be ready for drywall in 4 to 5 weeks.---\n09/08/22 4:15 PM Beth Cardoza 3276, no drywall in garage\n\n10' ceilings with cathedral ceiling in great room\n\"Orange peel\" finish---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2681 - N/A - 20200 FR 2275, Eagle Rock - Doris, Mark - Mark (618) 554-3433 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.671Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7jhmu7t75fy0b1q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.318Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Southernview Lot 3",
+ "Job_Codes": "2680 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - Southernview Lot 3 - King, Brad",
+ "Job_Name": "Patches",
+ "Job_Number": "2680",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2680 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/07/23 12:50 PM Heidi Mahan Garage Door Code: 0123---\n01/05/23 12:22 PM Beth Cardoza Several more patches---\n10/26/22 2:47 PM Beth Cardoza The front door and possibly other studs near it are rotted and are being replaced so there will be repairs to make soon, but not yet. Maybe next week.---\n09/08/22 11:50 AM Beth Cardoza Same job as 1171 on Wisteria (off of Southernview)---\n10/18/22 4:23 PM Beth Cardoza Also known as \"Johnson Residence\"---\n09/28/22 12:36 PM Beth Cardoza Bob fixing garage water damage (and maybe a soffit water damage?) 9/28/22. There is some electrical patches in a closet and the water damaged soffit to do at a later date when the electrical is done after this though.---\n09/08/22 2:39 PM Beth Cardoza Planning to bill TM unless otherwise noted---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2680 - Patches - Southernview Lot 3 - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.735Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rmb6l2htskgrcbr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.437Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos 417.522.3600",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1300 S Campbell, Spfld",
+ "Job_Codes": "2679 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1300 S Campbell, Spfld - HC Rogers",
+ "Job_Name": "N/A",
+ "Job_Number": "2679",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2679 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/19/22 5:14 PM Beth Cardoza Not sure we want to bid this job. May be just checking our prices---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2679 - N/A - 1300 S Campbell, Spfld - HC Rogers - Carlos 417.522.3600 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.790Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oqqfkogcjrldcji",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.545Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "South of Nixa",
+ "Job_Codes": "2678 - Henry",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Henry - South of Nixa - Essick, Dusty",
+ "Job_Name": "Henry",
+ "Job_Number": "2678",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2678 - Henry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/12/22 10:55 AM Beth Cardoza Should we figure drywall in the dormers?\n\nDusty Essick\nSat, Sep 10, 11:58 AM (2 days ago)\nto me\n\nno---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2678 - Henry - South of Nixa - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.847Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gh4kxlexbudfndx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.653Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Maska, Kara",
+ "Contact_Notes": "",
+ "Contact_Person": "Kara (417) 818-5881 mkmaska@mchsi.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4737 S Holland, Spfld",
+ "Job_Codes": "2677 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 4737 S Holland, Spfld - Maska, Kara",
+ "Job_Name": "Repair",
+ "Job_Number": "2677",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2677 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/05/22 2:10 PM Beth Cardoza Needs a general contractor as the project is beyond drywall---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2677 - Repair - 4737 S Holland, Spfld - Maska, Kara - Kara (417) 818-5881 mkmaska@mchsi.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.907Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l3o7m59aj6a5epl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.769Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Matthews, Randall",
+ "Contact_Notes": "",
+ "Contact_Person": "Randall (417) 414-2864",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3208 W State St, Spfld",
+ "Job_Codes": "2676 - Acoustic Scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Acoustic Scrape - 3208 W State St, Spfld - Matthews, Randall",
+ "Job_Name": "Acoustic Scrape",
+ "Job_Number": "2676",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2676 - Acoustic Scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/24/22 2:52 PM Beth Cardoza Starting tomorrow 10/25---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2676 - Acoustic Scrape - 3208 W State St, Spfld - Matthews, Randall - Randall (417) 414-2864 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:01.955Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dah407u5vjh7lpw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.877Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Regnell, Reggie",
+ "Contact_Notes": "",
+ "Contact_Person": "Reggie (417) 335-1330",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "2675 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Branson - Regnell, Reggie",
+ "Job_Name": "N/A",
+ "Job_Number": "2675",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2675 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/08/23 10:58 AM Beth Cardoza Never heard back from him---\n07/05/23 2:39 PM Beth Cardoza Dave texted and I emailed a couple of weeks ago. No response to either. Heidi is pushing it out to August at least.---\n01/19/23 10:24 AM Beth Cardoza Hi, the house plans have changed. But yes I will still need drywall done. I will get back with you to get an updated quote when it’s time. Thank you!\n\nOzarks Builders Group \nJohan Regnell \nOwner / General Contractor\n+1 (417)\n09/08/22 9:09 AM Beth Cardoza Good friend of Justin Cardoza’s. He’s known him for a long time and has done business with him---\n09/07/22 2:08 PM Beth Cardoza 2400 floor sqft house, 2 levels in Branson area. Not broken ground yet. No address yet. Maybe October or November. emailing plans. Figure no window wraps, standard textures, square corners, we [Cardoza] supply board.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2675 - N/A - Branson - Regnell, Reggie - Reggie (417) 335-1330 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.007Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0s13ils7px7088s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:35.985Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Marvin",
+ "Contact_Notes": "",
+ "Contact_Person": "Marvin 417-861-7844",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1136 E Siler, Spfld",
+ "Job_Codes": "2674 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1136 E Siler, Spfld - Marvin",
+ "Job_Name": "N/A",
+ "Job_Number": "2674",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2674 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/24/22 9:45 AM Beth Cardoza CO: Drywall patch. about a sheet and a half of drywall needed.---\n09/21/22 10:31 AM david cardoza Stock 19,502\n\nLeftover 360\n\nHang 19,142---\n09/07/22 2:10 PM Beth Cardoza Dave walkthrough notes 9/7/22: 1136 E. Siler Parkway Springfield,Missouri\nWalkout basement house.\n\nThree car garage over gravel at 9 foot.\n\nMain level all 9 foot flat except the living room at 11 foot flat which goes over the",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2674 - N/A - 1136 E Siler, Spfld - Marvin - Marvin 417-861-7844 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.059Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "23bpthvub1v6639",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.109Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wright, Casey",
+ "Contact_Notes": "",
+ "Contact_Person": "Casey 417-403-4707",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfld",
+ "Job_Codes": "2673 - Church wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Church wall - Spfld - Wright, Casey",
+ "Job_Name": "Church wall",
+ "Job_Number": "2673",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2673 - Church wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2673 - Church wall - Spfld - Wright, Casey - Casey 417-403-4707 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.107Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9e74hq3mvr2l2j8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.229Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gallant, Joe",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe(417) 207-6744",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1624 E. Prairie Ct, Spfd",
+ "Job_Codes": "2672 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 1624 E. Prairie Ct, Spfd - Gallant, Joe",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2672",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2672 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/14/22 1:42 PM Beth Cardoza She (homeowner) decided not to do the remodel. Too much money---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2672 - Ceiling - 1624 E. Prairie Ct, Spfd - Gallant, Joe - Joe(417) 207-6744 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.159Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iafqny01tsw0kbj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.348Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Nathan Henderson, 417-582-2490, nhenderson@construct-com.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "301 North Main St., Nixa, MO : 341 North Avenue, Sparta, MO",
+ "Job_Codes": "2671 - Christian County Ambulance Stations Nixa & Sparta",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Christian County Ambulance Stations Nixa & Sparta - 301 North Main St., Nixa, MO : 341 North Avenue, Sparta, MO - Construct",
+ "Job_Name": "Christian County Ambulance Stations Nixa & Sparta",
+ "Job_Number": "2671",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2671 - Christian County Ambulance Stations Nixa & Sparta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2671 - Christian County Ambulance Stations Nixa & Sparta - 301 North Main St., Nixa, MO : 341 North Avenue, Sparta, MO - Construct - Nathan Henderson, 417-582-2490, nhenderson@construct-com.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.207Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dp1lxqr6fpmuc8w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.456Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rice, Kyndal",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyndal (417) 872-2676",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1011 Prairie Ridge Rd, Ozark",
+ "Job_Codes": "2670 - Ceilings",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceilings - 1011 Prairie Ridge Rd, Ozark - Rice, Kyndal",
+ "Job_Name": "Ceilings",
+ "Job_Number": "2670",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2670 - Ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 3:25 PM Beth Cardoza No response. Assumed not awarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2670 - Ceilings - 1011 Prairie Ridge Rd, Ozark - Rice, Kyndal - Kyndal (417) 872-2676 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.277Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rb4pbbg3n06f262",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.581Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Silva, Kim",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim (417) 229-4175",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "712 E Cherokee St, Spfld",
+ "Job_Codes": "2669 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 712 E Cherokee St, Spfld - Silva, Kim",
+ "Job_Name": "Patch",
+ "Job_Number": "2669",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2669 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/01/22 10:04 AM Beth Cardoza CO? She wants us to include paint if possible. I said I'd have to check on that and get back to her.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2669 - Patch - 712 E Cherokee St, Spfld - Silva, Kim - Kim (417) 229-4175 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.331Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g4wcc91dl5jjo23",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hartman, Mike & Janelle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kevin Babin (417) 848-7054 (ASL interpreter. Hartmans are deaf)",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1005 E McClernon St, Spfld",
+ "Job_Codes": "2668 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1005 E McClernon St, Spfld - Hartman, Mike & Janelle",
+ "Job_Name": "Remodel",
+ "Job_Number": "2668",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2668 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/01/22 1:48 PM Beth Cardoza We have appt on the 7th at 4 with Kevin -Stephanie---\n08/31/22 4:11 PM Beth Cardoza Eddie and/or Stephanie to walk job 9/7 after 4 pm (Kevin waiting for call to schedule time)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2668 - Remodel - 1005 E McClernon St, Spfld - Hartman, Mike & Janelle - Kevin Babin (417) 848-7054 (ASL interpreter. Hartmans are deaf) - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.387Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vgxyjabz6ivwak3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.821Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1550 N Main St, Nixa",
+ "Job_Codes": "2667 - Wrap Entry",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wrap Entry - 1550 N Main St, Nixa - McMillin, Allen",
+ "Job_Name": "Wrap Entry",
+ "Job_Number": "2667",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2667 - Wrap Entry",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/31/22 9:36 AM Beth Cardoza It's at Stoneridge Flooring---\n08/30/22 5:19 PM Beth Cardoza Allen McMillan is going to cut out an opening in between two rooms that will be 9 foot high and 18 foot wide. It’s steel stud. He just want us to wrap it with drywall and finish it out. He will have it framed and ready for us",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2667 - Wrap Entry - 1550 N Main St, Nixa - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.439Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aja9adw96qlqd4n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:36.928Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey Pyle Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey, 417-887-6177, matt@bpbuilder.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2100 West Republic Rd, Springfield MO 65807",
+ "Job_Codes": "2666 - Go Burrito Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Go Burrito Infill - 2100 West Republic Rd, Springfield MO 65807 - Bailey Pyle Builders",
+ "Job_Name": "Go Burrito Infill",
+ "Job_Number": "2666",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2666 - Go Burrito Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2666 - Go Burrito Infill - 2100 West Republic Rd, Springfield MO 65807 - Bailey Pyle Builders - Matt Bailey, 417-887-6177, matt@bpbuilder.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.491Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ezod1hcfasmjhkx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.041Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church South",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Steward",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "keith.steward@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2665 - Angled Wall - JRC South",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Angled Wall - JRC South - 6100 N. 19th St, Ozark, MO 65721 - James River Church South",
+ "Job_Name": "Angled Wall - JRC South",
+ "Job_Number": "2665",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2665 - Angled Wall - JRC South",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175815433",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2665 - Angled Wall - JRC South - 6100 N. 19th St, Ozark, MO 65721 - James River Church South - Keith Steward - 4175815433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.539Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "29arrb0j54at85j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.141Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hideaway Resort, Galena",
+ "Job_Codes": "2664 - Paris",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Paris - Hideaway Resort, Galena - McMillin, Allen",
+ "Job_Name": "Paris",
+ "Job_Number": "2664",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2664 - Paris",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/30/22 3:33 PM Beth Cardoza Could be ready in 6 months. Ceilings will be flat not sloped and there will be drywall over garage.---\n08/30/22 4:35 PM Beth Cardoza Sorry it doesn't really show any [plan for space above garage]. So just skip it for now---\n08/30/22 9:32 AM Beth Cardoza Square corners, return to windows, smooth walls, light texture on ceiling. Ceiling height 10' in great room 9' in all other rooms. This job is at Hideaway on Table Rock Lake---\n08/30/22 9:33 AM Beth Cardoza Looks like it may be 49 minutes from the office, southwest of Branson West, on the Lake---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2664 - Paris - Hideaway Resort, Galena - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.591Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hsfedh5w8dusou7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.253Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fair & True Construction, LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Ben Brown, 417-630-1649, fairandtrueconstruction@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3020 Golfinch Road, Merriam Woods, MO 65740",
+ "Job_Codes": "2663 - TCAD Merriam Woods",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "TCAD Merriam Woods - 3020 Golfinch Road, Merriam Woods, MO 65740 - Fair & True Construction, LLC",
+ "Job_Name": "TCAD Merriam Woods",
+ "Job_Number": "2663",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2663 - TCAD Merriam Woods",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2663 - TCAD Merriam Woods - 3020 Golfinch Road, Merriam Woods, MO 65740 - Fair & True Construction, LLC - Ben Brown, 417-630-1649, fairandtrueconstruction@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.643Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3bcrxlzexf9goxy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.357Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lewellen, Roger",
+ "Contact_Notes": "",
+ "Contact_Person": "Roger (417) 224-7323",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1142 S Kentwood Ave, Spfld",
+ "Job_Codes": "2662 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1142 S Kentwood Ave, Spfld - Lewellen, Roger",
+ "Job_Name": "Repairs",
+ "Job_Number": "2662",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2662 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/25/22 1:37 PM Beth Cardoza Sent a TM quote---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2662 - Repairs - 1142 S Kentwood Ave, Spfld - Lewellen, Roger - Roger (417) 224-7323 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.699Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wq2zf60t0ygz0fm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.478Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pinnacle Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Erickson, 712-527-1385, briane@pinconstr.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "401 N. Eastgate Ave., Spfld, MO 65802",
+ "Job_Codes": "2661 - Whataburger - Eastgate",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Whataburger - Eastgate - 401 N. Eastgate Ave., Spfld, MO 65802 - Pinnacle Construction",
+ "Job_Name": "Whataburger - Eastgate",
+ "Job_Number": "2661",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2661 - Whataburger - Eastgate",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2661 - Whataburger - Eastgate - 401 N. Eastgate Ave., Spfld, MO 65802 - Pinnacle Construction - Brian Erickson, 712-527-1385, briane@pinconstr.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.752Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rahq3ancxvx3063",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.589Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt & Associates, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Thomlinson, 417-881-4820, bthomlinson@dewitt-associates.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1410 S. Kansas Expy, Springfield, MO",
+ "Job_Codes": "2660 - SPS Launch and PD Facility",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SPS Launch and PD Facility - 1410 S. Kansas Expy, Springfield, MO - DeWitt & Associates, Inc.",
+ "Job_Name": "SPS Launch and PD Facility",
+ "Job_Number": "2660",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2660 - SPS Launch and PD Facility",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2660 - SPS Launch and PD Facility - 1410 S. Kansas Expy, Springfield, MO - DeWitt & Associates, Inc. - Brad Thomlinson, 417-881-4820, bthomlinson@dewitt-associates.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.803Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b0opvgwp8k3x0fl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.709Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Murphy, Dan",
+ "Contact_Notes": "",
+ "Contact_Person": "Dan Murphy (417) 374-3414 ext 1065",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5610 S Kimbrough, Spfld",
+ "Job_Codes": "2659 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 5610 S Kimbrough, Spfld - Murphy, Dan",
+ "Job_Name": "Patches",
+ "Job_Number": "2659",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2659 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2659 - Patches - 5610 S Kimbrough, Spfld - Murphy, Dan - Dan Murphy (417) 374-3414 ext 1065 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.859Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "06o1avm1jhi0bxv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.829Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Marvin",
+ "Contact_Notes": "",
+ "Contact_Person": "Marvin 417-861-7844",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3956 E Burks, Spfld",
+ "Job_Codes": "2658 - Hickory Hills",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hickory Hills - 3956 E Burks, Spfld - Marvin",
+ "Job_Name": "Hickory Hills",
+ "Job_Number": "2658",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2658 - Hickory Hills",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2658 - Hickory Hills - 3956 E Burks, Spfld - Marvin - Marvin 417-861-7844 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.906Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jg6ibxhncvy6vw9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:37.993Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lot 135A Seven Pines, Saddlebrooke",
+ "Job_Codes": "2657 - Pollard",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pollard - Lot 135A Seven Pines, Saddlebrooke - Essick, Dusty",
+ "Job_Name": "Pollard",
+ "Job_Number": "2657",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2657 - Pollard",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2657 - Pollard - Lot 135A Seven Pines, Saddlebrooke - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:02.955Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "04b6qhy6zfitn5c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.113Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1939 E Woodland St, Spfld",
+ "Job_Codes": "2656 - Insurance",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Insurance - 1939 E Woodland St, Spfld - Nav Construction",
+ "Job_Name": "Insurance",
+ "Job_Number": "2656",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2656 - Insurance",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/01/22 1:40 PM Beth Cardoza Scheduled for 9/6 8am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2656 - Insurance - 1939 E Woodland St, Spfld - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.003Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "asysm6hfbfqvqhr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.217Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "550 NE Napoleon Dr, Blue Springs",
+ "Job_Codes": "2655 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 550 NE Napoleon Dr, Blue Springs - Nav Construction",
+ "Job_Name": "Cracks",
+ "Job_Number": "2655",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2655 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2655 - Cracks - 550 NE Napoleon Dr, Blue Springs - Nav Construction - Paul McKenzie (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.051Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lxieyfgtvtgxwou",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.337Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Felske, Heather",
+ "Contact_Notes": "",
+ "Contact_Person": "Heather (281) 883-8783",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3354 S Roanoke, Spfld",
+ "Job_Codes": "2654 - Accoustic Scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Accoustic Scrape - 3354 S Roanoke, Spfld - Felske, Heather",
+ "Job_Name": "Accoustic Scrape",
+ "Job_Number": "2654",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2654 - Accoustic Scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/09/23 3:40 PM Beth Cardoza They aren't in a position to do this right now. Don't know if or when.---\n10/31/22 10:10 AM Beth Cardoza Greetings Beth,\n\nMy apologies for not responding sooner! We have been planning our budget and should be ready for y'all to start in Spring around March. Please let me know if you have any questions and I will respond sooner.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2654 - Accoustic Scrape - 3354 S Roanoke, Spfld - Felske, Heather - Heather (281) 883-8783 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.106Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zp3j7rfguu7hbcq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.454Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2653 - Fireplace #20",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #20 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #20",
+ "Job_Number": "2653",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2653 - Fireplace #20",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2653 - Fireplace #20 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.158Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g3qy4xl8hk2z4qp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.566Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Martinez, Rudy",
+ "Contact_Notes": "",
+ "Contact_Person": "Rudy (417) 224-3183",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "707 N Fairway, Nixa",
+ "Job_Codes": "2652 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 707 N Fairway, Nixa - Martinez, Rudy",
+ "Job_Name": "Finish",
+ "Job_Number": "2652",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2652 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2652 - Finish - 707 N Fairway, Nixa - Martinez, Rudy - Rudy (417) 224-3183 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.223Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "40u4o4q4h6lkmkh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.681Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reinold, Jeff",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff (417) 880-9206",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1500 W Atlantic, Spfld",
+ "Job_Codes": "2651 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 1500 W Atlantic, Spfld - Reinold, Jeff",
+ "Job_Name": "Rehab",
+ "Job_Number": "2651",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2651 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/22/22 1:22 PM Beth Cardoza Eddie scheduled to walk 7 am 8/23---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2651 - Rehab - 1500 W Atlantic, Spfld - Reinold, Jeff - Jeff (417) 880-9206 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.285Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rpvauil5fej9fuy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.809Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Battaglia, Andrew",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrew (417) 559-6077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1160 Indian Point Rd, Branson",
+ "Job_Codes": "2650 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1160 Indian Point Rd, Branson - Battaglia, Andrew",
+ "Job_Name": "Remodel",
+ "Job_Number": "2650",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2650 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/29/22 9:13 AM Missie Bechard Per voxer with Dave on left over board\nthere are 2-12' leftover in the house. 1-8' leftover at motel---\n09/06/22 4:40 PM david cardoza Stock at 2650.1 (the house ) main 3,120\nStock at 2650.1 (basement): 1,792\nLeftover at 2650.1 (house) main 176\n\n Stock 2650.2 front units:3,360\nLeftover 2650.2 (front units) after first hang Sep 5th: 1,296\n\nStock on basement\n08/22/22 3:40 PM Beth Cardoza Eddie scheduled to view 8/23 9:30 am---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2650 - Remodel - 1160 Indian Point Rd, Branson - Battaglia, Andrew - Andrew (417) 559-6077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.343Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8113hzopmg8e3p5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:38.912Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Beechwood Dr., Reeds Spring",
+ "Job_Codes": "2649 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Beechwood Dr., Reeds Spring - Ozark Mountain Homes",
+ "Job_Name": "N/A",
+ "Job_Number": "2649",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2649 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/22/22 11:24 AM Beth Cardoza Probably around January---\n08/22/22 10:58 AM Beth Cardoza 43 minute drive from office---\n08/22/22 10:54 AM Beth Cardoza It will be in Stonebridge Village on Beechwood Dr. Single level on a slab with 9 foot exterior walls that raise to 10 foot in the main living and kitchen area. There will be a ceiling treatment in the entry and in the mast",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2649 - N/A - Beechwood Dr., Reeds Spring - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.391Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b747bun7uvmxobu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.021Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4323 W Enyart, Battlefield",
+ "Job_Codes": "2648 - Touchup",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Touchup - 4323 W Enyart, Battlefield - Essick, Dusty",
+ "Job_Name": "Touchup",
+ "Job_Number": "2648",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2648 - Touchup",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2648 - Touchup - 4323 W Enyart, Battlefield - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.438Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kp6ogef9ess35md",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.141Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sutherland Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Angel Sutherland (417) 536-8445",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Raspberry Rd, Highlandville",
+ "Job_Codes": "2647 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Raspberry Rd, Highlandville - Sutherland Construction",
+ "Job_Name": "N/A",
+ "Job_Number": "2647",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2647 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/08/22 12:07 PM Beth Cardoza Went with another company---\n08/19/22 1:01 PM Beth Cardoza Coordinates: 36.94910° N, 93.29803° W---\n08/18/22 3:54 PM Beth Cardoza Can we get an estimate for labor to hang and finished with knock down ceiling and walls. The walls will be 9ft in main except for master bed will be cathedral about 12 foot tall in the center\nSquare corners. 10 ft ceilings in",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2647 - N/A - Raspberry Rd, Highlandville - Sutherland Construction - Angel Sutherland (417) 536-8445 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.486Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oeji5r06ng817ag",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.290Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2646 - Fireplace #18",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #18 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #18",
+ "Job_Number": "2646",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2646 - Fireplace #18",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2646 - Fireplace #18 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.555Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rrbusobc5t8xr96",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.413Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2645 - Fireplace #17",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #17 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #17",
+ "Job_Number": "2645",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2645 - Fireplace #17",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2645 - Fireplace #17 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.618Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0aep367c9tytthe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.545Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2644 - Fireplace #16",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #16 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #16",
+ "Job_Number": "2644",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2644 - Fireplace #16",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2644 - Fireplace #16 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.671Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wncmlswiqzkg0xa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.653Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2643 - Fireplace #15",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #15 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #15",
+ "Job_Number": "2643",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2643 - Fireplace #15",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2643 - Fireplace #15 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.722Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ctuq47w1ez4vo3i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2642 - Fireplace #14",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #14 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #14",
+ "Job_Number": "2642",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2642 - Fireplace #14",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2642 - Fireplace #14 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.775Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4kk7mhzzrtj9wyy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.869Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2641 - Fireplace #13",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #13 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #13",
+ "Job_Number": "2641",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2641 - Fireplace #13",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2641 - Fireplace #13 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.831Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4qy1nm4ivsuzsoc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:39.985Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2640 - Fireplaces #19",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplaces #19 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplaces #19",
+ "Job_Number": "2640",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2640 - Fireplaces #19",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2640 - Fireplaces #19 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.883Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7htkb0fboy0qnfc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.105Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim 209-8635. Homeowner Eric Wiese 903-327-3910 for scheduling",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "920 Shawnee Rd, Sparta",
+ "Job_Codes": "2639 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 920 Shawnee Rd, Sparta - Solar Solutions",
+ "Job_Name": "Patch",
+ "Job_Number": "2639",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2639 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2639 - Patch - 920 Shawnee Rd, Sparta - Solar Solutions - Tim 209-8635. Homeowner Eric Wiese 903-327-3910 for scheduling - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.930Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3ea71nugxvqr5fy",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.208Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "811 E Sunset, Ozark",
+ "Job_Codes": "2638 - Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Room - 811 E Sunset, Ozark - Concept2Completion",
+ "Job_Name": "Room",
+ "Job_Number": "2638",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2638 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/17/22 1:40 PM Beth Cardoza Dave viewing tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2638 - Room - 811 E Sunset, Ozark - Concept2Completion - Tim Schwenke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:03.983Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bca0exsp24qqc1t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.308Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "MacLaughlin, Rusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Rusty",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2451 E Bennett, Spfld",
+ "Job_Codes": "2637 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2451 E Bennett, Spfld - MacLaughlin, Rusty",
+ "Job_Name": "N/A",
+ "Job_Number": "2637",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2637 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/26/22 2:23 PM Beth Cardoza Key for Bennett \nJob 2637\n\nYes. It’s above the corner post that holds up the carport. The Southeast corner---\n08/17/22 1:40 PM Beth Cardoza Looks like they are adding more work to the job. Was cutting out an area of moldy ceiling and patching, and kilzing entire bath ceiling. Waiting to hear more before bidding.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2637 - N/A - 2451 E Bennett, Spfld - MacLaughlin, Rusty - Rusty - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.035Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "arb7h7mhys55su7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.420Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lurvey, Margaret",
+ "Contact_Notes": "",
+ "Contact_Person": "Margaret (417) 343-2643",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "727 E Lakewood, Spfld",
+ "Job_Codes": "2636 - Nail pops",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nail pops - 727 E Lakewood, Spfld - Lurvey, Margaret",
+ "Job_Name": "Nail pops",
+ "Job_Number": "2636",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2636 - Nail pops",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2636 - Nail pops - 727 E Lakewood, Spfld - Lurvey, Margaret - Margaret (417) 343-2643 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.095Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5yjz3a22jqdxeiu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.525Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "TLC Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt (417) 987-1447",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1625 Kansas Expressway, Apt A32",
+ "Job_Codes": "2635 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1625 Kansas Expressway, Apt A32 - TLC Properties",
+ "Job_Name": "Patch",
+ "Job_Number": "2635",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2635 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/16/22 11:48 AM Beth Cardoza Assuming TM job---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2635 - Patch - 1625 Kansas Expressway, Apt A32 - TLC Properties - Matt (417) 987-1447 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.147Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5o6e1rjx53oj45j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.637Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moore Water & Air",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeremy or Justin Tims 417.300.8250",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "207 Trent St, Hollister",
+ "Job_Codes": "2634 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 207 Trent St, Hollister - Moore Water & Air",
+ "Job_Name": "Patches",
+ "Job_Number": "2634",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2634 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2634 - Patches - 207 Trent St, Hollister - Moore Water & Air - Jeremy or Justin Tims 417.300.8250 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.198Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wkfj1inoedw4s5k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.753Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hunt, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve (417) 860-9707",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8020 N Cami Ln, Fair Grove",
+ "Job_Codes": "2633 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 8020 N Cami Ln, Fair Grove - Hunt, Steve",
+ "Job_Name": "Garage",
+ "Job_Number": "2633",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2633 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/17/22 11:20 AM Beth Cardoza I texted him for his email address and gave him the total... He never responded. I'm thinking we might be too high---\n08/15/22 12:03 PM Beth Cardoza Nick McAvoy reference. Tape coming loose on seams in garage, walls and ceilings. Need re-taped and textured. ASAP. Trying to get house on the market by September 1st. He is emailing a video of the garage. standard 2 car gar",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2633 - Garage - 8020 N Cami Ln, Fair Grove - Hunt, Steve - Steve (417) 860-9707 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.251Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qrcwp99mnw4ypup",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.857Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lifetime Destinations",
+ "Contact_Notes": "",
+ "Contact_Person": "Heather Whitmer, 417-320-5071, hwhitmer@lifetimedestinations.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2724 N. State Hwy 265, Branson, MO 65616",
+ "Job_Codes": "2632 - Nantucket 5 Story",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Nantucket 5 Story - 2724 N. State Hwy 265, Branson, MO 65616 - Lifetime Destinations",
+ "Job_Name": "Nantucket 5 Story",
+ "Job_Number": "2632",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2632 - Nantucket 5 Story",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/18/23 2:42 PM Beth Cardoza Need insulation material and labor estimate(s). Confirm if it needs to be broken down by job or if it's okay to lump it together into one estimate---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2632 - Nantucket 5 Story - 2724 N. State Hwy 265, Branson, MO 65616 - Lifetime Destinations - Heather Whitmer, 417-320-5071, hwhitmer@lifetimedestinations.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.302Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hexfm0s64vxadso",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:40.960Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Principal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Tyler Waddell, 913-227-4154, twaddell@prismres.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "119 N. Massey Blvd, Nixa, MO 65714",
+ "Job_Codes": "2631 - Lendmark Financial",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2631%20Lendmark%20Financial%20%28119%20N%2E%20Massey%20Blvd%2C%20Nixa%2C%20MO%2065714%29%20%28Principal%20Construction%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Lendmark Financial - 119 N. Massey Blvd, Nixa, MO 65714 - Principal Construction",
+ "Job_Name": "Lendmark Financial",
+ "Job_Number": "2631",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2631 - Lendmark Financial",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2631 - Lendmark Financial - 119 N. Massey Blvd, Nixa, MO 65714 - Principal Construction - Tyler Waddell, 913-227-4154, twaddell@prismres.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.350Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jqylwxpi4kclknm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:41.061Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gurian, Rita",
+ "Contact_Notes": "",
+ "Contact_Person": "Rita 417-848-7004",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5043 S Glenhaven, Spfld",
+ "Job_Codes": "2630 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 5043 S Glenhaven, Spfld - Gurian, Rita",
+ "Job_Name": "Water damage",
+ "Job_Number": "2630",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2630 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2630 - Water damage - 5043 S Glenhaven, Spfld - Gurian, Rita - Rita 417-848-7004 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.399Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "j8n1x5aimz26vxu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:41.173Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "KCI Construction, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Trey Ziegenbein, 417-590-8131, tziegenbein@kciconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "524 N. Boonville Ave, Springfield, MO",
+ "Job_Codes": "2629 - MSU - JVIC - Building 4 First and Second Floor Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "MSU - JVIC - Building 4 First and Second Floor Infill - 524 N. Boonville Ave, Springfield, MO - KCI Construction, Inc.",
+ "Job_Name": "MSU - JVIC - Building 4 First and Second Floor Infill",
+ "Job_Number": "2629",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2629 - MSU - JVIC - Building 4 First and Second Floor Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2629 - MSU - JVIC - Building 4 First and Second Floor Infill - 524 N. Boonville Ave, Springfield, MO - KCI Construction, Inc. - Trey Ziegenbein, 417-590-8131, tziegenbein@kciconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.451Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "95wwt403unl4q45",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:41.297Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jamco",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe (417) 935-4004",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "60 Greenbrier Dr, Kimberling City",
+ "Job_Codes": "2628 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 60 Greenbrier Dr, Kimberling City - Jamco",
+ "Job_Name": "N/A",
+ "Job_Number": "2628",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2628 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/16/23 10:25 AM Beth Cardoza CO: \nCouple of changes ….\n\n1. Can we get bullnose around the big glass doors?\nI know you asked us. But seeing how great it looks around the windows makes me want it around the glass doors.\n\n2. Can we get Rock installed on th\n01/16/23 12:47 PM Beth Cardoza Waiting on details. Uncle Dave thought there we two doors. They confirmed the were not wrapped so we didn't so now we would be going back to do it. probably 10' wide by 6 or 8' high. On the 2nd, may doesn't have to do with u\n01/09/23 6:01 PM Beth Cardoza CO: From customer: Tiny Bathroom will be wallpaper - no texture needed on walls\nThat’s the half bath upstairs---\n12/22/22 11:43 AM david cardoza Stock 12,996\nSecond stock 1,044\nHang 14,040---\n12/22/22 9:46 AM Beth Cardoza CO: four way window wraps with bullnose---\n12/05/22 2:58 PM Beth Cardoza Wildcat plans to stock middle of next week---\n10/11/22 9:48 AM Beth Cardoza Probably still another couple weeks out.---\n10/05/22 10:43 AM Beth Cardoza Ready around 13th or so?---\n08/31/22 9:49 AM Beth Cardoza Should be ready for rock in about three weeks.\n\nPlan on the knockdown ceilings and orange peel walls. \n\nThe kitchen ceiling under the mezzanine will just be fire taped. We’ll be using a wood plank ceiling material in that are",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2628 - N/A - 60 Greenbrier Dr, Kimberling City - Jamco - Joe (417) 935-4004 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.506Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f0mr1lg1fo9kr4w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:41.421Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Christian County",
+ "Job_Codes": "2627 - Evans",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Evans - Christian County - Essick, Dusty",
+ "Job_Name": "Evans",
+ "Job_Number": "2627",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2627 - Evans",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/15/22 4:33 PM Beth Cardoza Thanks Dusty. Do you want us to hang and fire tape shop, or no drywall in shop other than maybe the common wall?\nCardoza Construction LLC logo\nCardoza Construction, LLC\nsales@cardozaconstruction.com\n\n\n\nDusty Essick\n3:15 PM (\n08/11/22 12:45 PM Beth Cardoza Sent plans. No details. Put something together for standard textures, but waiting to see if he responds with more info.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2627 - Evans - Christian County - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.558Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4jqbu42trvfa2pk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:41.805Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Selmore Baptist",
+ "Contact_Notes": "",
+ "Contact_Person": "Cliff 417-331-1706",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4768 Selmore Rd",
+ "Job_Codes": "2626 - Tape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Tape - 4768 Selmore Rd - Selmore Baptist",
+ "Job_Name": "Tape",
+ "Job_Number": "2626",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2626 - Tape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/10/22 3:51 PM Beth Cardoza Only flagged in case they need an estimate.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2626 - Tape - 4768 Selmore Rd - Selmore Baptist - Cliff 417-331-1706 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.618Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rl07t17ivxzsdc2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:41.932Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Davis, Natalie",
+ "Contact_Notes": "",
+ "Contact_Person": "Natalie 417-693-9509",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "364 S Timberhill, Nixa",
+ "Job_Codes": "2625 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 364 S Timberhill, Nixa - Davis, Natalie",
+ "Job_Name": "N/A",
+ "Job_Number": "2625",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2625 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/11/22 3:01 PM Beth Cardoza Info on Voxer---\n08/11/22 12:44 PM Beth Cardoza Eddie and Stephanie viewing today---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2625 - N/A - 364 S Timberhill, Nixa - Davis, Natalie - Natalie 417-693-9509 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.667Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ou3gr94uy8l4vig",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.100Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4150 W Republic Rd, Spfld",
+ "Job_Codes": "2624 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 4150 W Republic Rd, Spfld - Nav Construction",
+ "Job_Name": "Patches",
+ "Job_Number": "2624",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2624 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/05/22 2:57 PM Beth Cardoza Review/confirm quote or make it TM---\n12/28/22 3:12 PM Beth Cardoza It's TM---\n12/05/22 2:56 PM Beth Cardoza Walkthrough scheduled Tuesday 12/13---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2624 - Patches - 4150 W Republic Rd, Spfld - Nav Construction - Paul (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.718Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rita9wxlsg1bqd8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.209Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Quest Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon 316-371-0945",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "285 Legends Ln, Hollister",
+ "Job_Codes": "2623 - Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture - 285 Legends Ln, Hollister - Quest Construction",
+ "Job_Name": "Texture",
+ "Job_Number": "2623",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2623 - Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/21/22 2:21 PM CCLLC Office @apence@ccllc.pro This job 2623.2 got paid, but wasn't invoiced. Can you create and invoice to apply the payment to? .1 has a change order that hasn't been paid yet so I'm leaving it open here.---\n08/16/22 3:41 PM david cardoza Agreed to pay Lorenzo the finisher $1,000.00\n\nAgreed to pay Angel to hang $900.00---\n08/10/22 11:42 AM Beth Cardoza Possible change order: Finish hanging. Going slow! 5/8\" drywall---\n08/08/22 10:35 AM Beth Cardoza Approx: \n1300 sq.ft ceiling (knockdown texture)\n4400 sq.ft walls (splatter texture)\nCeiling height 9' 8\"\nBasement only, with walkout access.---\n08/08/22 11:27 AM Beth Cardoza Tape and texture only. matching an \"ugly\" splatter texture walls and ceilings, with the ceilings knocked down. He's going to email the address and some photos. Thinking it'll be finished hanging by end of this week.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2623 - Texture - 285 Legends Ln, Hollister - Quest Construction - Bryon 316-371-0945 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.788Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dhl0wgdt8uj3hbk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.332Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace, 417-429-1417 x103, julie@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3900 W. Washita Street, Springfield, MO",
+ "Job_Codes": "2622 - Springfield Plaza Shopping Center Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Springfield Plaza Shopping Center Addition - 3900 W. Washita Street, Springfield, MO - Ross Construction Group",
+ "Job_Name": "Springfield Plaza Shopping Center Addition",
+ "Job_Number": "2622",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2622 - Springfield Plaza Shopping Center Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2622 - Springfield Plaza Shopping Center Addition - 3900 W. Washita Street, Springfield, MO - Ross Construction Group - Julie Wallace, 417-429-1417 x103, julie@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.847Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "opwb047xa7e3nf8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.437Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7858",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2621 - Rocky Point #1",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rocky Point #1 - Hollister - Still, Mark",
+ "Job_Name": "Rocky Point #1",
+ "Job_Number": "2621",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2621 - Rocky Point #1",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/19/23 4:25 PM Beth Cardoza Rs1\n\nThey had to turn an electric panel because it was framed on the bedroom side of the wall and it should’ve been on the utility room side of the wall. So there is a patch of roughly 2‘ x 4‘ that needs to be done. I think t\n05/22/23 12:31 PM Beth Cardoza CO: “I’ve been walking through doing a punch list starting with unit one there’s drywall repairs in nearly every unit mainly in the stairwell. There’s a punchlist sitting on the island in the units to mark off when your comp\n04/24/23 12:11 PM Beth Cardoza CO: punchlist---\n02/22/23 10:36 AM Beth Cardoza They need one piece a corner bead installed in the basement hallway bathroom before the tile guy starts in there.\n installed and finished out.---\n11/14/22 6:31 AM david cardoza Stock 11,258\nAdditional stock 336\ntotal 11,594---\n08/16/22 11:58 AM Beth Cardoza Dave went by today. Just getting started framing a couple, doing work on several lots getting ready to pour concrete. First one is still probably about a month out---\n08/16/22 11:56 AM Beth Cardoza GPS coordinates: 36.56036° N, 93.28737° W---\n08/05/22 4:28 PM Beth Cardoza There will be like 40 buildings or something like that. The first one should be ready in about 4-6 weeks.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2621 - Rocky Point #1 - Hollister - Still, Mark - Mike Steel 417-840-7858 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.903Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sdl5fbf88g9l390",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.548Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7857",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "472 Stillwood, Branson",
+ "Job_Codes": "2620 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 472 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "2620",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2620 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/22/23 11:05 AM Beth Cardoza #2620\n472 Stillwood\nBranson, Mo. \n\nGate code #3009\n\nHouse code 1234\n\nBedroom wall repair. \n4’ x 4’ \n\nVacant---\n01/20/23 4:00 PM Beth Cardoza TM CO billed---\n10/20/22 10:59 AM david cardoza Stock 8,070---\n08/05/22 3:08 PM Beth Cardoza Let do the same finish that we have been doing and wrap the windows 3 sides.square bead.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2620 - N/A - 472 Stillwood, Branson - Still, Mark - Mike Steel 417-840-7857 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:04.955Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i7wgkbkgngaaj9e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.672Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7856",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "462 Stillwood, Branson",
+ "Job_Codes": "2619 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 462 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "2619",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2619 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/20/23 4:00 PM Beth Cardoza TM CO billed---\n10/20/22 10:58 AM david cardoza Stock 8,070---\n08/05/22 3:08 PM Beth Cardoza Let do the same finish that we have been doing and wrap the windows 3 sides.square bead.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2619 - N/A - 462 Stillwood, Branson - Still, Mark - Mike Steel 417-840-7856 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.015Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2x9x7ey9qic5p7s",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.792Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Steel 417-840-7855",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "422 Stillwood, Branson",
+ "Job_Codes": "2618 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 422 Stillwood, Branson - Still, Mark",
+ "Job_Name": "N/A",
+ "Job_Number": "2618",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2618 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/20/23 4:00 PM Beth Cardoza TM CO billed---\n10/20/22 10:57 AM david cardoza Stock 8,070---\n08/05/22 3:08 PM Beth Cardoza Let do the same finish that we have been doing and wrap the windows 3 sides.square bead.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2618 - N/A - 422 Stillwood, Branson - Still, Mark - Mike Steel 417-840-7855 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.131Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rt5z6rax466plcs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:42.920Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey Pyle Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey, 417-887-6177, matt@bpbuilder.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2900 East Sunshine Street, Springfield, MO 65804",
+ "Job_Codes": "2617 - Hudson Hawk",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hudson Hawk - 2900 East Sunshine Street, Springfield, MO 65804 - Bailey Pyle Builders",
+ "Job_Name": "Hudson Hawk",
+ "Job_Number": "2617",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2617 - Hudson Hawk",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2617 - Hudson Hawk - 2900 East Sunshine Street, Springfield, MO 65804 - Bailey Pyle Builders - Matt Bailey, 417-887-6177, matt@bpbuilder.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.183Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "509n2907p1nkwi0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.038Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz Construction Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Jarrett Sims, 417-450-6018, jarrett.sims@nabholz.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2565 Highway H, Lampe, MO 65681",
+ "Job_Codes": "2616 - Young Life Recreation Center",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Young Life Recreation Center - 2565 Highway H, Lampe, MO 65681 - Nabholz Construction Company",
+ "Job_Name": "Young Life Recreation Center",
+ "Job_Number": "2616",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2616 - Young Life Recreation Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2616 - Young Life Recreation Center - 2565 Highway H, Lampe, MO 65681 - Nabholz Construction Company - Jarrett Sims, 417-450-6018, jarrett.sims@nabholz.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.243Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zz0xl45no565b30",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.157Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt & Associates, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke, 417-881-4820, cburke@dewitt-associates.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1126 N. Boonville Ave, Spfld, MO 65802",
+ "Job_Codes": "2615 - Greene Co. Archives Fire Suppression",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2615%20Greene%20Co%2E%20Archives%20Fire%20Suppression%20%281126%20N%2E%20Boonville%20Ave%2C%20Spfld%2C%20MO%2065802%29%20%28DeWitt%20%26%20Associates%2C%20Inc%2E%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Greene Co. Archives Fire Suppression - 1126 N. Boonville Ave, Spfld, MO 65802 - DeWitt & Associates, Inc.",
+ "Job_Name": "Greene Co. Archives Fire Suppression",
+ "Job_Number": "2615",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2615 - Greene Co. Archives Fire Suppression",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2615 - Greene Co. Archives Fire Suppression - 1126 N. Boonville Ave, Spfld, MO 65802 - DeWitt & Associates, Inc. - Chris Burke, 417-881-4820, cburke@dewitt-associates.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.296Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fyqy6rwv6c8ubh9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.280Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1538 Old Castle Rd, Nixa",
+ "Job_Codes": "2614 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 1538 Old Castle Rd, Nixa - Nav Construction",
+ "Job_Name": "Cracks",
+ "Job_Number": "2614",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2614 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/04/22 10:41 AM Beth Cardoza Castelwood Senior Living. Have like 30 or so cracks and repairs. Paul thinks it's a full day's work. Will bill T&M. Once we know around when he can confirm with the home that that works.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2614 - Cracks - 1538 Old Castle Rd, Nixa - Nav Construction - Paul (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.360Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "etbn47eknuejxvw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.385Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nav Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul (417) 316-3665",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4079 W Leisa St, Spfld",
+ "Job_Codes": "2613 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 4079 W Leisa St, Spfld - Nav Construction",
+ "Job_Name": "Repairs",
+ "Job_Number": "2613",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2613 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/15/22 11:20 AM Beth Cardoza FX portion is waiting for approval---\n08/12/22 3:09 PM Beth Cardoza FX portion has not been schedule yet. I've numbered it 2613.2 in QBs but I'm going to go ahead and put this back in progress even though the TM portion is complete---\n08/04/22 10:37 AM Beth Cardoza T&M job. water damage. Just about 4 spots in the ceiling or a home. Needs to get on the schedule.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2613 - Repairs - 4079 W Leisa St, Spfld - Nav Construction - Paul (417) 316-3665 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.406Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2tezzooh93yw3ve",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.605Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Morris, Autumn",
+ "Contact_Notes": "",
+ "Contact_Person": "Autumn (417) 693-5005",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "916 E Guinevere, Spfld",
+ "Job_Codes": "2612 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 916 E Guinevere, Spfld - Morris, Autumn",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2612",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2612 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 3:22 PM Beth Cardoza Assumed not awarded---\n08/10/22 11:21 AM Beth Cardoza Job walk rescheduled for Friday---\n08/16/22 11:51 AM Beth Cardoza Is rescheduled for this afternoon---\n08/04/22 10:33 AM Beth Cardoza Autumn Morris\n916 E Guinevere\nSpfld Mo 65807\n\nMrsd72415@gmail.com\n417-693-5005 Lead fee-$36.58\nFlexible as far as time\nEntire house scrape and texture ceilings. We have an appt on Tuesday the 9th at 11:30 to go look at it.--",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2612 - Popcorn scrape - 916 E Guinevere, Spfld - Morris, Autumn - Autumn (417) 693-5005 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.459Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "daovd8jem5jw6fr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Israel, Victoria",
+ "Contact_Notes": "",
+ "Contact_Person": "Victoria (253) 241-8020, skippysahara2112@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "E Palomino Ln, Rogersville",
+ "Job_Codes": "2611 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - E Palomino Ln, Rogersville - Israel, Victoria",
+ "Job_Name": "N/A",
+ "Job_Number": "2611",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2611 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/25/22 1:36 PM Beth Cardoza They never got back to us with plans.---\n08/16/22 11:50 AM Beth Cardoza Waiting on plans. I emailed yesterday to follow up---\n08/03/22 1:34 PM Beth Cardoza Getting budgetary numbers for their bank. Will email plans once they are finalized for us to bid off of.---\n08/03/22 1:33 PM Beth Cardoza Angie's list lead: $45.84---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2611 - N/A - E Palomino Ln, Rogersville - Israel, Victoria - Victoria (253) 241-8020, skippysahara2112@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.511Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cop02da54l1hsia",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.841Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozarks Remodeling & Design",
+ "Contact_Notes": "",
+ "Contact_Person": "Jim Ryan: 417-343-2430",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2610 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - - Ozarks Remodeling & Design",
+ "Job_Name": "Remodel",
+ "Job_Number": "2610",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2610 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/16/22 5:13 PM Beth Cardoza I'm going to assume this is not awarded since they did not respond to our quote.---\n08/02/22 9:52 AM Beth Cardoza We did not have good information and I don't think this is a job that we'll actually get... they are just comparing prices and looking for another drywaller in general.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2610 - Remodel - - Ozarks Remodeling & Design - Jim Ryan: 417-343-2430 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.571Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hrsnvqbdlx3elrq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:43.966Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Walsh, Caleb",
+ "Contact_Notes": "",
+ "Contact_Person": "Caleb (417) 300-9012",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "894 Golf Course Rd, Marshfield",
+ "Job_Codes": "2609 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 894 Golf Course Rd, Marshfield - Walsh, Caleb",
+ "Job_Name": "Remodel",
+ "Job_Number": "2609",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2609 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/19/22 11:18 AM Beth Cardoza Followed up on this and he responded \"Thanks for getting back with me. I found another guy that did the job for a lot less though.\"---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2609 - Remodel - 894 Golf Course Rd, Marshfield - Walsh, Caleb - Caleb (417) 300-9012 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.627Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "atzdovswyls7hiu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.094Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Havemann, Josh",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh (417) 844-6933",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1666 Timber Lake Dr, Nixa",
+ "Job_Codes": "2608 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 1666 Timber Lake Dr, Nixa - Havemann, Josh",
+ "Job_Name": "Patch",
+ "Job_Number": "2608",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2608 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2608 - Patch - 1666 Timber Lake Dr, Nixa - Havemann, Josh - Josh (417) 844-6933 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.678Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ah0n4yfwc5tlf52",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.229Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cantrell, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike (417) 294-5032",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Sunset Inn Rd, Branson",
+ "Job_Codes": "2607 - Cabin",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cabin - Sunset Inn Rd, Branson - Cantrell, Mike",
+ "Job_Name": "Cabin",
+ "Job_Number": "2607",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2607 - Cabin",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/10/22 9:32 AM Beth Cardoza Found someone else local to do the work---\n08/01/22 3:05 PM Beth Cardoza 16x40 cabin. New construction, mostly just walls except a downstairs bathroom and bedroom. Vaulted ceiling will get wood. Ready in about 4 weeks.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2607 - Cabin - Sunset Inn Rd, Branson - Cantrell, Mike - Mike (417) 294-5032 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.739Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dl4avrcthaj6nb7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.357Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "B Davis Inc",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert Ford, 408-436-4800, robert_ford@bdavisinc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Pittsburgh Kansas",
+ "Job_Codes": "2606 - Marshall's",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Marshall's - Pittsburgh Kansas - B Davis Inc",
+ "Job_Name": "Marshall's",
+ "Job_Number": "2606",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2606 - Marshall's",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2606 - Marshall's - Pittsburgh Kansas - B Davis Inc - Robert Ford, 408-436-4800, robert_ford@bdavisinc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.799Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hihgbojozvzbeit",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.472Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Noggle, Gail",
+ "Contact_Notes": "",
+ "Contact_Person": "Gail (417) 374-3414 ext1040",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2524 S Cedarbrppl Ave. Spfld",
+ "Job_Codes": "2605 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 2524 S Cedarbrppl Ave. Spfld - Noggle, Gail",
+ "Job_Name": "Repair",
+ "Job_Number": "2605",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2605 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2605 - Repair - 2524 S Cedarbrppl Ave. Spfld - Noggle, Gail - Gail (417) 374-3414 ext1040 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.850Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5ic35s2bd3s1c36",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.588Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann, 417-429-1417, wyatt@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "East Kearney Street, Springfield, MO",
+ "Job_Codes": "2604 - North Creek Lot 7",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2604%20North%20Creek%20Lot%207%20%28East%20Kearney%20Street%2C%20Springfield%2C%20MO%29%20%28Ross%20Construction%20Group%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "North Creek Lot 7 - East Kearney Street, Springfield, MO - Ross Construction Group",
+ "Job_Name": "North Creek Lot 7",
+ "Job_Number": "2604",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2604 - North Creek Lot 7",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2604 - North Creek Lot 7 - East Kearney Street, Springfield, MO - Ross Construction Group - Wyatt Gann, 417-429-1417, wyatt@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.911Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uu7wtiyj4f8tgc0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.701Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ragsdale, Rick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick (417) 230-5103",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "121 Millstone Ct, Branson",
+ "Job_Codes": "2603 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 121 Millstone Ct, Branson - Ragsdale, Rick",
+ "Job_Name": "Remodel",
+ "Job_Number": "2603",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2603 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/29/22 10:50 AM Heidi Mahan Garage Code: 1161---\n08/01/22 9:44 AM Beth Cardoza T&M estimate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2603 - Remodel - 121 Millstone Ct, Branson - Ragsdale, Rick - Rick (417) 230-5103 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:05.966Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u1i33u25qxf0k1j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.825Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Lahr, 417-520-3263, blahr@killco.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hwy 60 & FR 193, Rogersville, MO 65742",
+ "Job_Codes": "2602 - Abacus Office Building & Access Road Project",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Abacus Office Building & Access Road Project - Hwy 60 & FR 193, Rogersville, MO 65742 - Killian Construction",
+ "Job_Name": "Abacus Office Building & Access Road Project",
+ "Job_Number": "2602",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2602 - Abacus Office Building & Access Road Project",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2602 - Abacus Office Building & Access Road Project - Hwy 60 & FR 193, Rogersville, MO 65742 - Killian Construction - Blake Lahr, 417-520-3263, blahr@killco.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.027Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "px9z3oi0cjijhiw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:44.953Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2058 N Park, Spfld",
+ "Job_Codes": "2601 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2058 N Park, Spfld - Krueger, Paul",
+ "Job_Name": "Remodel",
+ "Job_Number": "2601",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2601 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/06/22 2:09 PM Beth Cardoza Code to enter \n\n7703---\n08/03/22 1:51 PM Beth Cardoza Dave looked at this and posted videos and notes in voxer chat. He did not measure it all. Junky old lath and plaster remodel for a flip deal. He wants to go over it with Dad and just figure hours so estimate is waiting on tha\n07/29/22 2:09 PM Beth Cardoza Waiting on Paul to call us on this. It may be a ways out yet.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2601 - Remodel - 2058 N Park, Spfld - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.075Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4jwje9eeixz0uk5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.065Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann, 417-429-1417, wyatt@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2960 E. Jean Street, Springfield, MO 65803",
+ "Job_Codes": "2600 - F&H Food Equipment Company Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2600%20F%26H%20Food%20Equipment%20Company%20Addition%20%282960%20E%2E%20Jean%20Street%2C%20Springfield%2C%20MO%2065803%29%20%28Ross%20Construction%20Group%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "F&H Food Equipment Company Addition - 2960 E. Jean Street, Springfield, MO 65803 - Ross Construction Group",
+ "Job_Name": "F&H Food Equipment Company Addition",
+ "Job_Number": "2600",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2600 - F&H Food Equipment Company Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2600 - F&H Food Equipment Company Addition - 2960 E. Jean Street, Springfield, MO 65803 - Ross Construction Group - Wyatt Gann, 417-429-1417, wyatt@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.127Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l7cuhsnrasdxth9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.190Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Gloria Deo",
+ "Contact_Notes": "",
+ "Contact_Person": "adavis@gloriadeoacademy.org",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3146 S Golden Ave, Spfld",
+ "Job_Codes": "2599 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3146 S Golden Ave, Spfld - Gloria Deo",
+ "Job_Name": "Patches",
+ "Job_Number": "2599",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2599 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2599 - Patches - 3146 S Golden Ave, Spfld - Gloria Deo - adavis@gloriadeoacademy.org - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.186Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6pm1dpngzoayl9i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.317Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Victoria Ramsey (417)521-8041",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2239 N FR 213, Strafford",
+ "Job_Codes": "2598 - Wilson garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wilson garage - 2239 N FR 213, Strafford - Weber, Bryon",
+ "Job_Name": "Wilson garage",
+ "Job_Number": "2598",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2598 - Wilson garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/27/22 2:34 PM Beth Cardoza Per phone call with Victoria: No work on existing garage. Just bidding now, she's guessing late Fall/towards the end of the year before it might be ready for drywall. L5 finish, 4 way window wraps.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2598 - Wilson garage - 2239 N FR 213, Strafford - Weber, Bryon - Victoria Ramsey (417)521-8041 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.239Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i7yewfzlzfe12n3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hencey, Robert",
+ "Contact_Notes": "",
+ "Contact_Person": "Robert (417) 869-6190",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2306 N Weller Ave, Spfld",
+ "Job_Codes": "2597 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - 2306 N Weller Ave, Spfld - Hencey, Robert",
+ "Job_Name": "Water damage",
+ "Job_Number": "2597",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2597 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---09/01/22 11:39 AM Beth Cardoza Told him we probably aren't the best suited company to do that extensive of work. Looks like it would cost in the ballpark of $10,000 for us to do it. You might want to find someone more suited and better pricing for the job\n08/31/22 4:37 PM Beth Cardoza Zillow says built 1949, so not that old. Not sure why the plaster!---\n08/31/22 4:35 PM Beth Cardoza Info from Bob: Room is all smooth... drywall and plaster layered.\n\n12' long 8' high exterior water damaged wall with a big window in it. There could possibly be damage in a little of the other two adjoining walls and/or in th\n07/29/22 4:03 PM Beth Cardoza Sent a T&M work order/bid---\n08/31/22 4:29 PM Beth Cardoza The T&M was just for checking it out and giving advice.... So I changed it to FX and put in Bob's 2 hours (it was like 2.22) in that estimate and will need to make another quote for the actual work to fix the wall... which wi",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2597 - Water damage - 2306 N Weller Ave, Spfld - Hencey, Robert - Robert (417) 869-6190 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.299Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tez3z5999thobz3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.562Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Roger, Susan",
+ "Contact_Notes": "",
+ "Contact_Person": "(630) 863-4193, sanyer.bus@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "28 Frisch Rd, Galena",
+ "Job_Codes": "2596 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 28 Frisch Rd, Galena - Roger, Susan",
+ "Job_Name": "Repairs",
+ "Job_Number": "2596",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2596 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 1:34 PM Beth Cardoza Never heard back. Assuming unawarded---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2596 - Repairs - 28 Frisch Rd, Galena - Roger, Susan - (630) 863-4193, sanyer.bus@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.363Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jtl83nh1mqx2f0c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.673Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Choate, Dana",
+ "Contact_Notes": "",
+ "Contact_Person": "Dana (417) 720-0721",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3560 E Catalpa, Spfld",
+ "Job_Codes": "2595 - Stains, popcorn",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Stains, popcorn - 3560 E Catalpa, Spfld - Choate, Dana",
+ "Job_Name": "Stains, popcorn",
+ "Job_Number": "2595",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2595 - Stains, popcorn",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/29/22 4:10 PM Beth Cardoza Also, this won't be read for us till first week of October---\n07/29/22 4:04 PM Beth Cardoza Next week we are going to discuss how we are going to work with a lived in house, if she can live elsewhere or if we need to work around her and what that entails before sending her a firm quote.---\n07/28/22 11:14 AM Beth Cardoza Foyer 7'8\"x5'\nStairs up 3'10\"x8'\nLiving room 13'x13' 3'x12' 9'x13'\nKitchen and high ceiling 23'x24' 16' to the peak\nLanding 7'9\"x16'\nOffice 12'x6'\nBedroom 12'x10'\nUpstairs bath 5'x6'\nStairs down 3'6\"x12'\nHallway 7'x4' 7'x3'3",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2595 - Stains, popcorn - 3560 E Catalpa, Spfld - Choate, Dana - Dana (417) 720-0721 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.423Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oyltd3ybodnaxts",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.788Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "444 W Woodland, Spfld",
+ "Job_Codes": "2594 - Bath remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath remodel - 444 W Woodland, Spfld - Bateman, Ronnie",
+ "Job_Name": "Bath remodel",
+ "Job_Number": "2594",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2594 - Bath remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/28/22 3:56 PM Beth Cardoza Brief description: Bathroom with 8' ceilings. Deming paneling and tile walls and tile floors and cabinets. Rehanging and finishing with standard textures. Scraping popcorn off of ceiling and retexturing---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2594 - Bath remodel - 444 W Woodland, Spfld - Bateman, Ronnie - Ronnie - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.475Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u595kdfkdnxlxcl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:45.910Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Pleasant View Rd, Highlandville",
+ "Job_Codes": "2593 - Bailey",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bailey - Pleasant View Rd, Highlandville - Essick, Dusty",
+ "Job_Name": "Bailey",
+ "Job_Number": "2593",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2593 - Bailey",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/23 1:57 PM Beth Cardoza CO?: Dave I need three repairs done in highlandville at Bailey’s.\nDusty Essick---\n05/04/23 11:55 AM Beth Cardoza Stock 8,550---\n04/29/23 10:20 AM david cardoza Prehang for the coldwall on this house was approximately six sheets of 54“ x 12‘---\n04/04/23 12:47 PM Beth Cardoza Dave walkthrough notes: \n\nBailey residence \nPonce DeLeon\n\n36°53'42.9\"N 93°20'57.5\"W\n\nSingle level with walkout basement \n\nTwo car garage concrete 9’\n\nMain level, 8’ except for the living room, which is double vaulted up to 1\n04/04/23 1:00 PM Beth Cardoza Dusty confirmed still not finishing the basement---\n04/04/23 11:04 AM Beth Cardoza Estimate needs updating---\n07/22/22 1:09 PM Beth Cardoza option supplying the drywall. Make note the basement DOES NOT get drywall at this time---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2593 - Bailey - Pleasant View Rd, Highlandville - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.535Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q2499a8737t2ztm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.034Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction Co., Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga, 417-887-7134, efriga@sbcglobal.net",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4236 S. Hillcrest Ave., Springfield, MO",
+ "Job_Codes": "2592 - Safespace Company",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Safespace Company - 4236 S. Hillcrest Ave., Springfield, MO - Friga Construction Co., Inc.",
+ "Job_Name": "Safespace Company",
+ "Job_Number": "2592",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2592 - Safespace Company",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2592 - Safespace Company - 4236 S. Hillcrest Ave., Springfield, MO - Friga Construction Co., Inc. - Eric Friga, 417-887-7134, efriga@sbcglobal.net - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.594Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1m4q9rgsb93nims",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.141Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moore Water & Air",
+ "Contact_Notes": "",
+ "Contact_Person": "JR (479) 595-2064, homeowners Dave and Laura Harmon 918-584-9492",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "899 Silver Maple Rd, Highlandville",
+ "Job_Codes": "2591 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 899 Silver Maple Rd, Highlandville - Moore Water & Air",
+ "Job_Name": "Patches",
+ "Job_Number": "2591",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2591 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2591 - Patches - 899 Silver Maple Rd, Highlandville - Moore Water & Air - JR (479) 595-2064, homeowners Dave and Laura Harmon 918-584-9492 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.651Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wrk1mxlkrfjupjs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.260Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt & Associates, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Chris Burke, 417-881-4820, cburke@dewitt-associates.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3530 West Mount Vernon Street, Springfield, MO 65802",
+ "Job_Codes": "2590 - Mercy West Bypass Clinic",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mercy West Bypass Clinic - 3530 West Mount Vernon Street, Springfield, MO 65802 - DeWitt & Associates, Inc.",
+ "Job_Name": "Mercy West Bypass Clinic",
+ "Job_Number": "2590",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2590 - Mercy West Bypass Clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2590 - Mercy West Bypass Clinic - 3530 West Mount Vernon Street, Springfield, MO 65802 - DeWitt & Associates, Inc. - Chris Burke, 417-881-4820, cburke@dewitt-associates.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.702Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ob05jukubc2zrz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.405Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Thamm, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Thamm 417-239-4060",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "265 Hidden Spring Ln., Reeds Spring",
+ "Job_Codes": "2589 - Funk",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Funk - 265 Hidden Spring Ln., Reeds Spring - Thamm, Brandon",
+ "Job_Name": "Funk",
+ "Job_Number": "2589",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2589 - Funk",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 12:51 PM Beth Cardoza Assuming not awarded---\n07/18/22 4:37 PM Beth Cardoza Bid with and without sheets if you would.\nSquare corners\nWood trim in windows.\nTextured cieling, tree bark.\nSmooth walls.\nRoughing in plumbing, electric, hvac now.---\n07/18/22 3:32 PM Beth Cardoza Only finishing main level, stairwell, and garage (page 4).---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2589 - Funk - 265 Hidden Spring Ln., Reeds Spring - Thamm, Brandon - Brandon Thamm 417-239-4060 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.750Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ckgr2dpvakk9cse",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.524Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sundstrom, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "James St, Nixa",
+ "Job_Codes": "2588 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - James St, Nixa - Sundstrom, Brad",
+ "Job_Name": "Bath",
+ "Job_Number": "2588",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2588 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/25/22 4:43 PM Beth Cardoza Probably got someone else. Didn't respond to Rick's voicemail---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2588 - Bath - James St, Nixa - Sundstrom, Brad - Brad - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.803Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u6slihul7t7kypu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.640Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mooneyham, Taylor",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 224-3810",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2459 N FR 51, Bois D'Arc",
+ "Job_Codes": "2587 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2459 N FR 51, Bois D'Arc - Mooneyham, Taylor",
+ "Job_Name": "Remodel",
+ "Job_Number": "2587",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2587 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/25/23 4:00 PM Beth Cardoza This job isn’t starting till like maybe June. I got confused and thought it was starting and sent a new quote based on a REW bill for a different job in Bois D’Arc! So we’ll just need to review again when it’s about to start.\n01/18/23 10:33 AM Beth Cardoza Needs pricing update for board since we bid in August and prices went up.---\n01/18/23 7:30 AM david cardoza Stock 8,504 SQF---\n08/24/22 5:40 PM Beth Cardoza I did give Phil at REW a heads up. He just said \"tell me when\"---\n08/24/22 5:40 PM Beth Cardoza Taylor called yesterday to let us know the job was awarded and that it would probably be ready in about 2 or 3 weeks. His electrician is supposed to start on this Thursday.---\n07/21/22 11:37 AM Beth Cardoza Phil at REW plans to measure next week (has covid this week). Follow up---\n08/23/22 3:53 PM Beth Cardoza REW's count was 8504---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2587 - Remodel - 2459 N FR 51, Bois D'Arc - Mooneyham, Taylor - (417) 224-3810 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.850Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "265xx2fizbdedja",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.761Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cowherd (417) 234-4451",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1112 Cumberland, Republic",
+ "Job_Codes": "2586 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1112 Cumberland, Republic - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2586",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2586 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/21/22 9:43 AM david cardoza Stock 14,258\nNo leftover---\n11/17/22 2:21 PM Beth Cardoza Dave walkthrough notes:\nThree car garage at 10 feet over concrete.\n\nLiving room at 10 foot flat and the rest of the house is basically 8 foot flat except for a double pop-up in the master bedroom up to 10 foot flat and a fron",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2586 - N/A - 1112 Cumberland, Republic - Cowherd - Brandon Cowherd (417) 234-4451 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.907Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a7t6a8nscwnrqls",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:46.869Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cowherd (417) 234-4451",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3931 W Rosebriar",
+ "Job_Codes": "2585 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3931 W Rosebriar - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2585",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2585 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/26/22 9:08 AM david cardoza Stock 8,988\nLeftover \n5-10\n5-12\n5-14\n(720 sq ft left over)\nHang 8,268---\n08/08/22 10:19 AM Beth Cardoza That leftover only equals 720... 200+240+280. Not 920. Total hang 8268---\n08/09/22 7:26 AM david cardoza Ok. Thanks.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2585 - N/A - 3931 W Rosebriar - Cowherd - Brandon Cowherd (417) 234-4451 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:06.958Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "p4t3vsyd2vg81cv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann, 417-429-1417, wyatt@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2240 North Alliance Ave, Springfield, MO",
+ "Job_Codes": "2584 - Kuat Warehouse Expansion",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2584%20Kuat%20Warehouse%20Expansion%20%282240%20North%20Alliance%20Ave%2C%20Springfield%2C%20MO%29%20%28Ross%20Construction%20Group%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kuat Warehouse Expansion - 2240 North Alliance Ave, Springfield, MO - Ross Construction Group",
+ "Job_Name": "Kuat Warehouse Expansion",
+ "Job_Number": "2584",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2584 - Kuat Warehouse Expansion",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2584 - Kuat Warehouse Expansion - 2240 North Alliance Ave, Springfield, MO - Ross Construction Group - Wyatt Gann, 417-429-1417, wyatt@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.006Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hc00v0elbaiwaj6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.173Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey Pyle Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey, 417-887-6177, matt@bpbuilder.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1059 Barton Drive, Fordland, MO 65652",
+ "Job_Codes": "2583 - Fordland Clinic Phase 3 Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fordland Clinic Phase 3 Renovation - 1059 Barton Drive, Fordland, MO 65652 - Bailey Pyle Builders",
+ "Job_Name": "Fordland Clinic Phase 3 Renovation",
+ "Job_Number": "2583",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2583 - Fordland Clinic Phase 3 Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2583 - Fordland Clinic Phase 3 Renovation - 1059 Barton Drive, Fordland, MO 65652 - Bailey Pyle Builders - Matt Bailey, 417-887-6177, matt@bpbuilder.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.054Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pz41qafs0ut2002",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.301Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2582 - James River Church Addition & Renovation",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2582%20James%20River%20Church%20Addition%20%26%20Renovation%20%286100%20N%2E%2019th%20St%2C%20Ozark%2C%20MO%2065721%29%20%28Ross%20Construction%20Group%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "James River Church Addition & Renovation - 6100 N. 19th St, Ozark, MO 65721 - Ross Construction Group",
+ "Job_Name": "James River Church Addition & Renovation",
+ "Job_Number": "2582",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2582FXEX - James River Church Addition & Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (In Progress)",
+ "Job_Type": "FXEX",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2582FXEX - James River Church Addition & Renovation - 6100 N. 19th St, Ozark, MO 65721 - Ross Construction Group - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.114Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4rbhnviu1gq9vzz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.421Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Montileone, Jonna",
+ "Contact_Notes": "",
+ "Contact_Person": "Jonah (417) 849-3703",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5228 S Aviemore, Spfld",
+ "Job_Codes": "2581 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 5228 S Aviemore, Spfld - Montileone, Jonna",
+ "Job_Name": "Patches",
+ "Job_Number": "2581",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2581 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/25/22 4:43 PM Beth Cardoza We took too long. They have someone else lined up.---\n07/15/22 11:06 AM Beth Cardoza Jonah Montileone\n5228 S. Aviemore\nHighland Springs\nJmontileone@yahoo.com\nKyle viewing on Monday---\n07/20/22 1:44 PM Beth Cardoza He has info that he needs to get together and turn in.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2581 - Patches - 5228 S Aviemore, Spfld - Montileone, Jonna - Jonah (417) 849-3703 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.167Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w90nq8f1l7duf4i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.549Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Young, Ronald",
+ "Contact_Notes": "",
+ "Contact_Person": "Ron (417) 920-7333",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "505 S Central Ave, Marionville",
+ "Job_Codes": "2580 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 505 S Central Ave, Marionville - Young, Ronald",
+ "Job_Name": "Remodel",
+ "Job_Number": "2580",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2580 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/28/22 5:19 PM Beth Cardoza He went with someone else---\n07/20/22 1:44 PM Beth Cardoza He is out of town for a couple of weeks so we can't look at it yet.---\n07/14/22 4:08 PM Beth Cardoza Remodel.. will need some kind of drywall work in every room throughout the house. We come highly recommended. Outlaw Construction is who specifically recommended us, but another drywall friend that was too busy also likes us.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2580 - Remodel - 505 S Central Ave, Marionville - Young, Ronald - Ron (417) 920-7333 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.245Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gfrotwrh2verz6q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.653Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kendrick, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike (417) 374-3414 ext 1025",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8276 W FR 168, Republic",
+ "Job_Codes": "2579 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 8276 W FR 168, Republic - Kendrick, Mike",
+ "Job_Name": "N/A",
+ "Job_Number": "2579",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2579 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/22 4:32 PM Beth Cardoza Awarded. Needs scheduling. No deadline, but ready now.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2579 - N/A - 8276 W FR 168, Republic - Kendrick, Mike - Mike (417) 374-3414 ext 1025 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.295Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mbf1klsd4tiro15",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.761Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church South",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Steward",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "keith.steward@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2578 - Hidden Door Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hidden Door Wall - 6100 N. 19th St, Ozark, MO 65721 - James River Church South",
+ "Job_Name": "Hidden Door Wall",
+ "Job_Number": "2578",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2578 - Hidden Door Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175815433",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2578 - Hidden Door Wall - 6100 N. 19th St, Ozark, MO 65721 - James River Church South - Keith Steward - 4175815433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.354Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rmiac79jipu3dcl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.877Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Domerese, Matthew",
+ "Contact_Notes": "",
+ "Contact_Person": "Matthew ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2506 N Allen Dr, Spfld",
+ "Job_Codes": "2577 - Finish remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish remodel - 2506 N Allen Dr, Spfld - Domerese, Matthew",
+ "Job_Name": "Finish remodel",
+ "Job_Number": "2577",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2577 - Finish remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/04/22 11:21 AM Beth Cardoza No response to follow up phone calls and text---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173743414",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2577 - Finish remodel - 2506 N Allen Dr, Spfld - Domerese, Matthew - Matthew - 4173743414",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.410Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r6pse16otbec16f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:47.989Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bowling, Dustin",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "991 S Hedge Dr, Nixa",
+ "Job_Codes": "2576 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 991 S Hedge Dr, Nixa - Bowling, Dustin",
+ "Job_Name": "Patch",
+ "Job_Number": "2576",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2576 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/22 4:38 PM Beth Cardoza Client waiting for schedule---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173743414",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2576 - Patch - 991 S Hedge Dr, Nixa - Bowling, Dustin - - 4173743414",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.471Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9au19xl29f8z4jn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.105Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Frizell, Michael",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4349 S Cardinal Place, Spfld",
+ "Job_Codes": "2575 - Ceiling Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling Patches - 4349 S Cardinal Place, Spfld - Frizell, Michael",
+ "Job_Name": "Ceiling Patches",
+ "Job_Number": "2575",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2575 - Ceiling Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/22 4:39 PM Beth Cardoza On the calendar for Monday the 25th---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175768557",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2575 - Ceiling Patches - 4349 S Cardinal Place, Spfld - Frizell, Michael - - 4175768557",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.531Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "69x0dkr5ru7m0ls",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.209Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church South",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Steward",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "keith.steward@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2574 - Soffit ",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Soffit - 6100 N. 19th St, Ozark, MO 65721 - James River Church South",
+ "Job_Name": "Soffit ",
+ "Job_Number": "2574",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2574 - Soffit ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175815433",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2574 - Soffit - 6100 N. 19th St, Ozark, MO 65721 - James River Church South - Keith Steward - 4175815433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.586Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "21epgldi69ivg71",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.325Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church South",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Steward",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "keith.steward@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2573 - Feature Wall With Pencils Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Feature Wall With Pencils Infill - 6100 N. 19th St, Ozark, MO 65721 - James River Church South",
+ "Job_Name": "Feature Wall With Pencils Infill",
+ "Job_Number": "2573",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2573 - Feature Wall With Pencils Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4175815433",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2573 - Feature Wall With Pencils Infill - 6100 N. 19th St, Ozark, MO 65721 - James River Church South - Keith Steward - 4175815433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.650Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ykkqvx6vz6mx73f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.450Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Roza",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Samson Project Manager ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Black Bear Dr, Sparta",
+ "Job_Codes": "2572 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Black Bear Dr, Sparta - Roza",
+ "Job_Name": "N/A",
+ "Job_Number": "2572",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2572 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/18/22 4:51 PM Beth Cardoza I sent a follow up email in September asking if we would be awarded the job and when it would be ready and didn't get a response. It was estimated to be ready in August---\n07/13/22 11:22 AM Beth Cardoza If you could get a bid back to me by end of this week-first of next please. This particular house is located south of Sparta a few miles off HWY 125. The house should be ready for drywall the second week of Aug. All square c\n07/13/22 9:45 AM Beth Cardoza Please see attached plans and bid drywall hanging and finishing with medium orange peel walls and stomp knock down or tree bark ceilings. All half in drywall. There will be no drywall in the basement mech room. The main level",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177633131",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2572 - N/A - Black Bear Dr, Sparta - Roza - Scott Samson Project Manager - 4177633131",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.698Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0mwwqvmomnshiy9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.569Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2835 E. Jean Street, Springfield, MO 65803",
+ "Job_Codes": "2571 - Uriah Products Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Uriah Products Infill - 2835 E. Jean Street, Springfield, MO 65803 - Ross Construction Group",
+ "Job_Name": "Uriah Products Infill",
+ "Job_Number": "2571",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2571 - Uriah Products Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2571 - Uriah Products Infill - 2835 E. Jean Street, Springfield, MO 65803 - Ross Construction Group - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.768Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "29q11bsjmimz49d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.685Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hunt, Billy",
+ "Contact_Notes": "",
+ "Contact_Person": "Billy",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3015 S Ridge Dr, Spfld",
+ "Job_Codes": "2570 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 3015 S Ridge Dr, Spfld - Hunt, Billy",
+ "Job_Name": "Remodel",
+ "Job_Number": "2570",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2570 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/17/23 12:49 PM Beth Cardoza We are doing the drywall scopes for General contractor, Vangaurd Job 2799---\n08/29/22 10:02 AM Beth Cardoza Call first before going to this job unless otherwise noted---\n08/29/22 10:04 AM Beth Cardoza We do have a garage code, but it is classified information until the job is in progress. So @kiwi854j@gmail.com if it comes time to schedule guys and it’s not posted, contact dad about the code---\n07/13/22 10:04 AM Beth Cardoza Ceiling scrape. Close on the house at the end of this month, won't be able to look at it until early August. He plans to call Rick, but if we don't hear from him around then we should follow up. Acoustic ceiling is painted.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4177732648",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2570 - Remodel - 3015 S Ridge Dr, Spfld - Hunt, Billy - Billy - 4177732648",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.835Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g9z1lc7vih4c6c4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:48.813Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Chism, Andy",
+ "Contact_Notes": "",
+ "Contact_Person": "Andy Chism ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "51 SE 80th Ln, Lamar",
+ "Job_Codes": "2569 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 51 SE 80th Ln, Lamar - Chism, Andy",
+ "Job_Name": "Finish",
+ "Job_Number": "2569",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2569 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4179550679",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2569 - Finish - 51 SE 80th Ln, Lamar - Chism, Andy - Andy Chism - 4179550679",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.890Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f9g6w0vvf9i96q5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "10500 Hwy 160, Merrim Woods",
+ "Job_Codes": "2568 - Bittner",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bittner - 10500 Hwy 160, Merrim Woods - Ozark Mountain Homes",
+ "Job_Name": "Bittner",
+ "Job_Number": "2568",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2568 - Bittner",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/11/22 4:59 PM Beth Cardoza Let's figure 9 foot walls on the main level and 8 foot upstairs. 3 way window wrap with standard textures and square corners. Let me know if you have any questions. This one will probably be 6 months out and is located at1",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4176991303",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2568 - Bittner - 10500 Hwy 160, Merrim Woods - Ozark Mountain Homes - David Herd - 4176991303",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:07.951Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hfjmcj50c65316t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.184Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt & Associates, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Thomlinson",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bthomlinson@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1533 Missouri Drive, Mt. Vernon, MO 65712",
+ "Job_Codes": "2567 - Lawrence Co. Emergency Services 911 Center",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lawrence Co. Emergency Services 911 Center - 1533 Missouri Drive, Mt. Vernon, MO 65712 - DeWitt & Associates, Inc.",
+ "Job_Name": "Lawrence Co. Emergency Services 911 Center",
+ "Job_Number": "2567",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2567 - Lawrence Co. Emergency Services 911 Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178814820",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2567 - Lawrence Co. Emergency Services 911 Center - 1533 Missouri Drive, Mt. Vernon, MO 65712 - DeWitt & Associates, Inc. - Brad Thomlinson - 4178814820",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.011Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "glf5ve07hf0mxtr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.337Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "835 E Powell, Spfld",
+ "Job_Codes": "2566 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 835 E Powell, Spfld - Krueger, Paul",
+ "Job_Name": "Remodel",
+ "Job_Number": "2566",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2566 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/12/22 5:47 PM Beth Cardoza half day or less of wall touchups (nail pops and stuff). They were going to have us do a popcorn scrape but because of time constraints they decided to focus on getting walls ready to paint so they can get their furniture mov",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2566 - Remodel - 835 E Powell, Spfld - Krueger, Paul - Paul - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.063Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gmr1jwuegswxpx8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.453Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4276 E Farm Rd 136, Spfld",
+ "Job_Codes": "2565 - Belz Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Belz Addition - 4276 E Farm Rd 136, Spfld - Burnett Homes",
+ "Job_Name": "Belz Addition",
+ "Job_Number": "2565",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2565 - Belz Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/03/23 5:09 PM Beth Cardoza CO: patches in existing. hang drywall under stairs in bsmt---\n05/17/23 9:21 AM Beth Cardoza Needing to go back and do more sanding on the patches---\n05/03/23 5:09 PM Beth Cardoza Warrant: Fix L5 in addition---\n02/20/23 9:13 AM Beth Cardoza There are some repairs that need to be done inside this addition, as well as inside the existing part of the house. \n\nI don’t think the repairs in the addition are extensive. Probably minor. \n\nInside the house they do have tw\n02/20/23 9:12 AM CCLLC Office 2565.2TM/Phase 2\n - Call back for a couple of skylights and some patches in the addition and in the existing.---\n11/21/22 6:28 AM david cardoza First stock 8,214\nSecond final stock 1,216\nTotal stock 9,430\nNo leftover---\n10/27/22 5:48 PM Beth Cardoza Board prices have gone up since this was quoted. Will need to adjust when it comes up.---\n10/27/22 6:27 PM Beth Cardoza I think REW is still close to what it is at, actually. 2 cents off on the moisture board, but it's like $8 so if it's actually stocking Monday and REW hasn't gone up, I'm going to leave it.---\n08/04/22 11:43 AM Beth Cardoza Dave walk through notes 8/4:\n\n4276 East Farm Rd. 136 \nSpringfield Missouri\n\nLarge addition with a lower level garage. \n\nUpper level is all multi vaulted ceilings and ties into the existing part of the house. \n\n upper level i\n08/04/22 11:44 AM Beth Cardoza On fr 136 are you wanting the window returns wrapped with drywall?\nDave \n\nYes and no. \nThe big windows in the back will be drywall and the windows in the front angle\nGerry burnette---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2565 - Belz Addition - 4276 E Farm Rd 136, Spfld - Burnett Homes - Jerry - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.122Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "03tnl5nio4um3jn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.581Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burnett Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Jerry",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "552 N Farm Rd 199",
+ "Job_Codes": "2564 - Guest house",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Guest house - 552 N Farm Rd 199 - Burnett Homes",
+ "Job_Name": "Guest house",
+ "Job_Number": "2564",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2564 - Guest house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/27/23 6:00 PM Beth Cardoza CO: shower---\n12/21/22 6:26 AM david cardoza stock 5,800---\n10/27/22 5:50 PM Beth Cardoza Board prices went up since we quoted this one---\n09/16/22 4:35 PM Beth Cardoza Waiting on windows---\n08/29/22 12:04 PM Beth Cardoza Dave walk through notes 8/29: 552 N Farm Rd 199\nSpringfield \n\nGerald Burnett guest house is basically a bedroom and bathroom, a main room and another front room like a bedroom connected to a common bathroom,\n and then there\n08/29/22 1:46 PM Beth Cardoza Tree bark ceiling and orange peel walls---\n08/29/22 1:41 PM Beth Cardoza Probably still 2 or 3 weeks out. Waiting on info on what texture he wants and if windows wrap---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "6362991362",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2564 - Guest house - 552 N Farm Rd 199 - Burnett Homes - Jerry - 6362991362",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.171Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "coqno3qx3gkaw4h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "White, Linda",
+ "Contact_Notes": "",
+ "Contact_Person": "Linda White",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "878 E Galway Ct, Nixa",
+ "Job_Codes": "2563 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 878 E Galway Ct, Nixa - White, Linda",
+ "Job_Name": "Patch",
+ "Job_Number": "2563",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2563 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "5017301100",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2563 - Patch - 878 E Galway Ct, Nixa - White, Linda - Linda White - 5017301100",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.222Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6ydb59bco4p5eei",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.849Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "607 Charles Way, Strafford, MO",
+ "Job_Codes": "2562 - Amcon Office Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Amcon Office Infill - 607 Charles Way, Strafford, MO - Rich Kramer Construction",
+ "Job_Name": "Amcon Office Infill",
+ "Job_Number": "2562",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2562 - Amcon Office Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2562 - Amcon Office Infill - 607 Charles Way, Strafford, MO - Rich Kramer Construction - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.275Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1uhysn100fv6lib",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:49.952Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon Cowherd ",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1175 S Cumberland Ave, Republic",
+ "Job_Codes": "2561 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1175 S Cumberland Ave, Republic - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2561",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2561 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/07/22 2:12 PM Beth Cardoza 1175 S Cumberland Ave\nRepublic, MO 65738\n\nOut of the four houses in a row that are framed this house would be the third from the left from the street view\n\nThree car garage at 10 feet over concrete\n\nWalkout basement house.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4172344451",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "2561 - N/A - 1175 S Cumberland Ave, Republic - Cowherd - Brandon Cowherd - 4172344451",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.331Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vl6eunsyp5jiawk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.065Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": true,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nabholz Construction Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryan Miller",
+ "Docs_Uploaded": true,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bryan.miller@nabholz.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": true,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Steve Brewer",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2925 E. Battlefield Rd, Spfld, MO 65804",
+ "Job_Codes": "2560 - Medical Consulting Group",
+ "Job_Division": "C#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2560%20Medical%20Consulting%20Group%20%282925%20E%2E%20Battlefield%20Rd%2C%20Spfld%2C%20MO%2065804%29%20%28Nabholz%20Construction%20Company%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Medical Consulting Group - 2925 E. Battlefield Rd, Spfld, MO 65804 - Nabholz Construction Company",
+ "Job_Name": "Medical Consulting Group",
+ "Job_Number": "2560",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "C#2560 - Medical Consulting Group",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Steve Brewer",
+ "PSwift_Uploaded": true,
+ "Phone_Number": "4174442511",
+ "Project_Manager": "",
+ "QB_Created": true,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": true,
+ "Voxer_Link": "C#2560 - Medical Consulting Group - 2925 E. Battlefield Rd, Spfld, MO 65804 - Nabholz Construction Company - Bryan Miller - 4174442511",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.391Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cvcgju65gobwbg7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.182Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Drury Lane, Republic",
+ "Job_Codes": "2559 - Garton, Lot 4",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2559%20Garton%2C%20Lot%204%20%28Drury%20Lane%2C%20Republic%29%20%28Ross%20Construction%20Group%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Garton, Lot 4 - Drury Lane, Republic - Ross Construction Group",
+ "Job_Name": "Garton, Lot 4",
+ "Job_Number": "2559",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2559 - Garton, Lot 4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2559 - Garton, Lot 4 - Drury Lane, Republic - Ross Construction Group - Julie Wallace - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.447Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ishqo04gr6lq1ow",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.310Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Various",
+ "Job_Codes": "2558 - Misc Projects",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Misc Projects - Various - Weber, Bryon",
+ "Job_Name": "Misc Projects",
+ "Job_Number": "2558",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2558 - Misc Projects",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178302424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2558 - Misc Projects - Various - Weber, Bryon - Bryon - 4178302424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.503Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7081vdozs0e57i5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.421Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Intrinsic Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Maria Cass",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "maria.cass.design@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1779 S Grant Ave Springfield, MO",
+ "Job_Codes": "2557 - Complete Weddings & Events Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Complete Weddings & Events Office - 1779 S Grant Ave Springfield, MO - Intrinsic Homes",
+ "Job_Name": "Complete Weddings & Events Office",
+ "Job_Number": "2557",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2557 - Complete Weddings & Events Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/25/22 11:21 AM Heidi Mahan New Lockbox Code: 5897---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175223716",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2557 - Complete Weddings & Events Office - 1779 S Grant Ave Springfield, MO - Intrinsic Homes - Maria Cass - 4175223716",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.559Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7set9y6qjbmquk5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.534Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Matteson, Dan",
+ "Contact_Notes": "",
+ "Contact_Person": "Dan ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1702 Clearwater Cir, Ozark",
+ "Job_Codes": "2556 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 1702 Clearwater Cir, Ozark - Matteson, Dan",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2556",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2556 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/06/22 11:58 AM Beth Cardoza Beth walking today/Wednesday 3:30 pm---\n06/30/22 1:32 PM Beth Cardoza whole house popcorn has been scraped. Needs finished and textured---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8605759596",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2556 - Ceiling - 1702 Clearwater Cir, Ozark - Matteson, Dan - Dan - 8605759596",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.619Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lh7ks80p1tgrwwt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.653Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fong, Alice",
+ "Contact_Notes": "",
+ "Contact_Person": "Alice ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3133 E Sunset, Spfld",
+ "Job_Codes": "2555 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 3133 E Sunset, Spfld - Fong, Alice",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2555",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2555 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/07/22 12:23 PM Beth Cardoza Info in voxer. No email address. Kyle lives close and can deliver or we can mail it---\n06/30/22 1:28 PM Beth Cardoza Kyle to view tomorrow---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172344899",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2555 - Ceiling - 3133 E Sunset, Spfld - Fong, Alice - Alice - 4172344899",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.671Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h1nehxlhaphh6ei",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.780Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wester, Eric",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "683 Buckskin Ridge, Ozark",
+ "Job_Codes": "2554 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 683 Buckskin Ridge, Ozark - Wester, Eric",
+ "Job_Name": "N/A",
+ "Job_Number": "2554",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2554 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/22 11:55 AM Beth Cardoza Dad told him probably a couple hundred dollars---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172344899",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2554 - N/A - 683 Buckskin Ridge, Ozark - Wester, Eric - Eric - 4172344899",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.739Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hvyppu32yv52i26",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:50.905Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2905 W Heritage Dr, Ozark",
+ "Job_Codes": "2553 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F2553%20Garage%20%282905%20W%20Heritage%20Dr%2C%20Ozark%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Garage - 2905 W Heritage Dr, Ozark - Krueger, Paul",
+ "Job_Name": "Garage",
+ "Job_Number": "2553",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2553 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/22/25 11:55 AM Beth Cardoza On hold until summer---\n07/01/22 2:22 PM Beth Cardoza My standard finish protocol. All ½”. No wraps. Square bead. I provide drywall. - Paul---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173373077",
+ "Project_Manager": "Eddie",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2553 - Garage - 2905 W Heritage Dr, Ozark - Krueger, Paul - Paul - 4173373077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.800Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2yibuvqnfud4t7v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.020Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McElhinney, Christie",
+ "Contact_Notes": "",
+ "Contact_Person": "Christie ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1651 N Old Castle Rd, Nixa",
+ "Job_Codes": "2552 - Screw pops",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Screw pops - 1651 N Old Castle Rd, Nixa - McElhinney, Christie",
+ "Job_Name": "Screw pops",
+ "Job_Number": "2552",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2552 - Screw pops",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174253079",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2552 - Screw pops - 1651 N Old Castle Rd, Nixa - McElhinney, Christie - Christie - 4174253079",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.855Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rj5nymv2s5s8a7h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.136Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Drake, Patrick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rochelle ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "853 W Sole Dr, Nixa",
+ "Job_Codes": "2551 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 853 W Sole Dr, Nixa - Drake, Patrick",
+ "Job_Name": "Patch",
+ "Job_Number": "2551",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2551 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172240787",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2551 - Patch - 853 W Sole Dr, Nixa - Drake, Patrick - Rochelle - 4172240787",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.907Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2egt7hs46glmja3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.249Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Buechler, Geraldine",
+ "Contact_Notes": "",
+ "Contact_Person": "Geraldine ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1611 E Barnes St, Ozark",
+ "Job_Codes": "2550 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1611 E Barnes St, Ozark - Buechler, Geraldine",
+ "Job_Name": "Patches",
+ "Job_Number": "2550",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2550 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/19/23 10:17 AM Beth Cardoza This crack previously was not taped. Crack re-appeared and she called us back. Bob repaired it as warranty work January 11, 2023---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175811463",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2550 - Patches - 1611 E Barnes St, Ozark - Buechler, Geraldine - Geraldine - 4175811463",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:08.967Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0uku9pq9rrh4ggx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.369Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1138 Cumberland, Republic",
+ "Job_Codes": "2549 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1138 Cumberland, Republic - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2549",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2549 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/28/22 9:01 AM Missie Bechard Total Hang: 11,846 - drywall\nTotal Hang - 220 cement board---\n07/26/22 4:32 PM Beth Cardoza CO: hang concrete board---\n07/22/22 2:59 PM david cardoza Original stock per Bill\n11,671 (includes any cement board?)\n\nAngel took 2-12’ from what was leftover from address 1162 Cumberland and brought to this one.\n\nAn additional 200 feet of drywall was delivered today. Also an addit\n07/07/22 2:13 PM Beth Cardoza 1138?? S Cumberland Ave\nRepublic, MO 65738\n\nOut of the four houses in a row that are framed this house would be the second from the left from the street view\n\nThree car garage at 10 feet over concrete\n\nWalkout basement house\n06/28/22 4:11 PM Beth Cardoza Needs estimate. waiting on job walk---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173004001",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2549 - N/A - 1138 Cumberland, Republic - Cowherd - Bill Hoey - 4173004001",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.039Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "914rilfxjdyxta2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.477Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1162 Cumberland, Republic",
+ "Job_Codes": "2548 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1162 Cumberland, Republic - Cowherd",
+ "Job_Name": "N/A",
+ "Job_Number": "2548",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2548 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/19/22 9:29 AM david cardoza Per Angel:\nHe hung 14,082\n( he said that was after subtracting leftover amount of 288)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173004001",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2548 - N/A - 1162 Cumberland, Republic - Cowherd - Bill Hoey - 4173004001",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.091Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hzx84yrwi8xiqbh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.614Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "B, Daniel",
+ "Contact_Notes": "",
+ "Contact_Person": "Daniel ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spld",
+ "Job_Codes": "2547 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - Spld - B, Daniel",
+ "Job_Name": "Patch",
+ "Job_Number": "2547",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2547 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/22 11:57 AM Beth Cardoza Had someone else take care of it---\n06/27/22 3:26 PM Beth Cardoza Hello, Had a plumbing leak several weeks ago and had to cut out a section aprox 4ft X 2ft . Really need this repaired asap. I can send 2 pictures. I didn’t see the texture on your website. It is white and is pointy peaks. I l",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174025922",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2547 - Patch - Spld - B, Daniel - Daniel - 4174025922",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.146Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e9c7rbkjmxu73be",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.728Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Roto Rooter",
+ "Contact_Notes": "",
+ "Contact_Person": "Taylor",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8324 Rolling Hills Drive, Nixa",
+ "Job_Codes": "2546 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 8324 Rolling Hills Drive, Nixa - Roto Rooter",
+ "Job_Name": "Garage",
+ "Job_Number": "2546",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2546 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/27/22 11:41 AM Beth Cardoza Garage ceiling patch 10' x 6' approximately. 10' high ceiling. Texture not stomp. probably a hand texture. Emailing photos---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175595343",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2546 - Garage - 8324 Rolling Hills Drive, Nixa - Roto Rooter - Taylor - 4175595343",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.194Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "74ak4xc1xaohgei",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.828Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Roto Rooter",
+ "Contact_Notes": "",
+ "Contact_Person": "Taylor ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1057 East Edgewood St, Spfld",
+ "Job_Codes": "2545 - Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen - 1057 East Edgewood St, Spfld - Roto Rooter",
+ "Job_Name": "Kitchen",
+ "Job_Number": "2545",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2545 - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/27/22 11:40 AM Beth Cardoza Taylor to send photos. Bottom of a kitchen wall. 4' up by approximately 15'. Cabinets to be installed on this section, so no texture needed. Probably needs firetaped for code I'm guessing.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175595343",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2545 - Kitchen - 1057 East Edgewood St, Spfld - Roto Rooter - Taylor - 4175595343",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.246Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jev31aia7dig9by",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:51.938Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Scott, Kylie",
+ "Contact_Notes": "",
+ "Contact_Person": "Kylie ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "755 Aspen, Marshfield",
+ "Job_Codes": "2544 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 755 Aspen, Marshfield - Scott, Kylie",
+ "Job_Name": "Repair",
+ "Job_Number": "2544",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2544 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/05/22 11:29 AM Beth Cardoza This was not a drywall job! Oops. They needed flooring work. I think Kyle referred them to Temple Remodeling.---\n06/29/22 2:46 PM Beth Cardoza Kyle viewing Thursday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4179885340",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2544 - Repair - 755 Aspen, Marshfield - Scott, Kylie - Kylie - 4179885340",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.312Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hzpt1c99czh10cj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.061Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Stover, Kay",
+ "Contact_Notes": "",
+ "Contact_Person": "Kay ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3437 S Glenhaven Ct, Spfld",
+ "Job_Codes": "2543 - Ceilings",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceilings - 3437 S Glenhaven Ct, Spfld - Stover, Kay",
+ "Job_Name": "Ceilings",
+ "Job_Number": "2543",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2543 - Ceilings",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/14/22 10:10 AM Beth Cardoza Popcorn scrape: \nBedroom 12’x14’\nOffice 10’x13’\nBedroom 15’x12’\nBathroom 5’x8’\nCloset 5’x5’\nBedroom 10’x13’---\n07/14/22 10:13 AM Beth Cardoza Furniture to work around and cover. Was asking for stomp knockdown but Kyle will talk to her about doing something less messy like hand texture. \n\nAlso, want downstairs living room ceiling painted if we can.---\n06/28/22 12:59 PM Beth Cardoza Kyle to view Wednesday (tomorrow) 1 pm---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178619183",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2543 - Ceilings - 3437 S Glenhaven Ct, Spfld - Stover, Kay - Kay - 4178619183",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.363Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nrq4y6c9003p9iu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.185Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Freelove, Kelley",
+ "Contact_Notes": "",
+ "Contact_Person": "Kelly ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4256 W Monterey St, Battlefield",
+ "Job_Codes": "2542 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 4256 W Monterey St, Battlefield - Freelove, Kelley",
+ "Job_Name": "N/A",
+ "Job_Number": "2542",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2542 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/29/22 12:06 PM Beth Cardoza Thank you for your estimate. I am getting quotes and will keep you in mind when I make my final decision.\n\nKind Regards,\n\nKelley Freelove---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173500121",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2542 - N/A - 4256 W Monterey St, Battlefield - Freelove, Kelley - Kelly - 4173500121",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.415Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q4uwf3266t23gc8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.293Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wheatley, Linda",
+ "Contact_Notes": "",
+ "Contact_Person": "Linda ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "429 Richwood Rd, Ozark",
+ "Job_Codes": "2541 - Bath",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath - 429 Richwood Rd, Ozark - Wheatley, Linda",
+ "Job_Name": "Bath",
+ "Job_Number": "2541",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2541 - Bath",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/22 4:42 PM Beth Cardoza Starts tomorrow---\n06/30/22 10:22 AM Beth Cardoza Notes in voxer chat---\n06/27/22 12:07 PM Beth Cardoza Kyle is looking at this on Wednesday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2541 - Bath - 429 Richwood Rd, Ozark - Wheatley, Linda - Linda - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.471Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jq1fjxm0lep5ub5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.409Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McCurry, Sherry",
+ "Contact_Notes": "",
+ "Contact_Person": "Sherry ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4976 Stone Hollow Ln, Rogersville",
+ "Job_Codes": "2540 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 4976 Stone Hollow Ln, Rogersville - McCurry, Sherry",
+ "Job_Name": "Repair",
+ "Job_Number": "2540",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2540 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178278601",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2540 - Repair - 4976 Stone Hollow Ln, Rogersville - McCurry, Sherry - Sherry - 4178278601",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.526Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0vxzn04syqjl4zs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.528Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Killian Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Jeff Julich",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jjulich@killco.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "605 W. Aven Avenue, Nixa, MO 65714",
+ "Job_Codes": "2539 - Oak Star Bank",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Oak Star Bank - 605 W. Aven Avenue, Nixa, MO 65714 - Killian Construction",
+ "Job_Name": "Oak Star Bank",
+ "Job_Number": "2539",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2539 - Oak Star Bank",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175203224",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2539 - Oak Star Bank - 605 W. Aven Avenue, Nixa, MO 65714 - Killian Construction - Jeff Julich - 4175203224",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.574Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0tfutp51s6xga28",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.680Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "L & L Retail Construction, LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Denise Howard",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "denise@llretail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "601 N. Business 60, Mansfield, MO",
+ "Job_Codes": "2538 - Family Dollar",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Family Dollar - 601 N. Business 60, Mansfield, MO - L & L Retail Construction, LLC",
+ "Job_Name": "Family Dollar",
+ "Job_Number": "2538",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2538 - Family Dollar",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4053602775",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2538 - Family Dollar - 601 N. Business 60, Mansfield, MO - L & L Retail Construction, LLC - Denise Howard - 4053602775",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.634Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aejamd64c66z9r2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.805Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Mulhearn-Wilson",
+ "Contact_Notes": "",
+ "Contact_Person": "Haley Garner",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "haley@mulhearn-wilson.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2241 East Bennett Street, Springfield, MO 65804",
+ "Job_Codes": "2537 - Loomis Armored",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Loomis Armored - 2241 East Bennett Street, Springfield, MO 65804 - Mulhearn-Wilson",
+ "Job_Name": "Loomis Armored",
+ "Job_Number": "2537",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2537 - Loomis Armored",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/07/22 9:36 AM Heidi Mahan Code for key box: 2870---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5015516917",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2537 - Loomis Armored - 2241 East Bennett Street, Springfield, MO 65804 - Mulhearn-Wilson - Haley Garner - 5015516917",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.690Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ilrnuau10pamlj1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:52.917Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Victoria Ramsey ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2536 - Wilson",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wilson - - Weber, Bryon",
+ "Job_Name": "Wilson",
+ "Job_Number": "2536",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2536 - Wilson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/24/22 12:01 PM Beth Cardoza The corners will be square bead, there will be trim around the windows and the approx. drywall date would be in November.---\n06/24/22 2:51 PM Beth Cardoza Smooth finish please.---\n06/22/22 9:50 AM Beth Cardoza Attached you will find the plans regarding the new home that we will be building for Kirkman and Haley Wilson. Below are a few notes regarding the bid:\n\nPlease bid per plan\nThe basement\nIs not being finished\nThere will be onl",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175218041",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2536 - Wilson - - Weber, Bryon - Victoria Ramsey - 4175218041",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.738Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4v8apsm81n5il7c",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.049Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wolfe, John",
+ "Contact_Notes": "",
+ "Contact_Person": "John Wolfe",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "263 Briar Ridge, Nixa",
+ "Job_Codes": "2535 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 263 Briar Ridge, Nixa - Wolfe, John",
+ "Job_Name": "Finish",
+ "Job_Number": "2535",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2535 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/08/22 3:25 PM Beth Cardoza CO: patch upstairs in existing part of the house---\n06/30/22 3:25 PM Beth Cardoza CO: Can we add wrapping the two windows with a radius edge, both 48x60 ?\n\nAlso, not shown in the layout is the step on the wall transitioning between the 8\" concrete wall and the 6\" wall that is flush with the exterior. If yo",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2535 - Finish - 263 Briar Ridge, Nixa - Wolfe, John - John Wolfe - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.794Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wnm1rf7z0zeech1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.157Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whitaker, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "828 N Lexington, Spfld",
+ "Job_Codes": "2534 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 828 N Lexington, Spfld - Whitaker, Brandon",
+ "Job_Name": "N/A",
+ "Job_Number": "2534",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2534 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/24/22 8:55 AM david cardoza Stock 6,640\nLeftover 840\nHang 5,800---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175218733",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2534 - N/A - 828 N Lexington, Spfld - Whitaker, Brandon - Brandon - 4175218733",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.851Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kernxdc2eyhxwc9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.276Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whitaker, Brandon",
+ "Contact_Notes": "",
+ "Contact_Person": "Brandon ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "711 N Rogers, Spfld",
+ "Job_Codes": "2533 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 711 N Rogers, Spfld - Whitaker, Brandon",
+ "Job_Name": "N/A",
+ "Job_Number": "2533",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2533 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/24/22 8:54 AM david cardoza Stock 6,736\nLeftover 296\nHang 6440---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175218733",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2533 - N/A - 711 N Rogers, Spfld - Whitaker, Brandon - Brandon - 4175218733",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.910Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "567o6m4gpj2rl60",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.389Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church South",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Steward",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "keith.steward@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2532 - James River Church South T&M",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James River Church South T&M - 6100 N. 19th St, Ozark, MO 65721 - James River Church South",
+ "Job_Name": "James River Church South T&M",
+ "Job_Number": "2532",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2532 - James River Church South T&M",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4175815433",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2532 - James River Church South T&M - 6100 N. 19th St, Ozark, MO 65721 - James River Church South - Keith Steward - 4175815433",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:09.966Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cjk3lw0ntxl7ab1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.521Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Guilliams",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "steve@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6100 N. 19th St, Ozark, MO 65721",
+ "Job_Codes": "2531 - James River Church South T&M",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James River Church South T&M - 6100 N. 19th St, Ozark, MO 65721 - Ross Construction Group",
+ "Job_Name": "James River Church South T&M",
+ "Job_Number": "2531",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2531 - James River Church South T&M",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "In Progress",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "Rick",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2531 - James River Church South T&M - 6100 N. 19th St, Ozark, MO 65721 - Ross Construction Group - Steve Guilliams - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.023Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ko5bhyl0qzb637d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.633Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nienhuser, Paula",
+ "Contact_Notes": "",
+ "Contact_Person": "Paula ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "718 S Mumford Circle, Spfld",
+ "Job_Codes": "2530 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 718 S Mumford Circle, Spfld - Nienhuser, Paula",
+ "Job_Name": "Remodel",
+ "Job_Number": "2530",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2530 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/08/22 10:41 AM Beth Cardoza Co: add 1 hour demo 6 sheets of moisture board---\n07/20/22 4:45 PM Beth Cardoza Start next week?---\n06/23/22 5:13 PM Beth Cardoza Waiting for her to do some more work before Kyle measures it up. After July 1st---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "5735258808",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2530 - Remodel - 718 S Mumford Circle, Spfld - Nienhuser, Paula - Paula - 5735258808",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.078Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6h6vq0hp9sr40ip",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.818Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Base Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody Ritter",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cody@base-cm.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5021 S. National Ave., Spfld, MO 65810",
+ "Job_Codes": "2529 - iTooth Family Dentistry Addition & Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "iTooth Family Dentistry Addition & Renovation - 5021 S. National Ave., Spfld, MO 65810 - Base Construction",
+ "Job_Name": "iTooth Family Dentistry Addition & Renovation",
+ "Job_Number": "2529",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2529 - iTooth Family Dentistry Addition & Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173512380",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2529 - iTooth Family Dentistry Addition & Renovation - 5021 S. National Ave., Spfld, MO 65810 - Base Construction - Cody Ritter - 4173512380",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.138Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "goprc9pia7ecq4t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:53.945Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Springfield Builders, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Tony Hopkins",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tony@springfieldbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "627 N. Glenstone Ave, & 1710 E. Chestnut Expwy, Springfield",
+ "Job_Codes": "2528 - Headquarters Building & Clubhouse for CASA",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Headquarters Building & Clubhouse for CASA - 627 N. Glenstone Ave, & 1710 E. Chestnut Expwy, Springfield - Springfield Builders, Inc.",
+ "Job_Name": "Headquarters Building & Clubhouse for CASA",
+ "Job_Number": "2528",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2528 - Headquarters Building & Clubhouse for CASA",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178656200",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2528 - Headquarters Building & Clubhouse for CASA - 627 N. Glenstone Ave, & 1710 E. Chestnut Expwy, Springfield - Springfield Builders, Inc. - Tony Hopkins - 4178656200",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.190Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "luenqy7ulm9odt0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.061Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Turnkey Solutions, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Blake Goodman",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "blake.goodman@1turnkeysolution.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1041 Branson Hills Prkwy, Branson, MO 65616",
+ "Job_Codes": "2527 - America's Best Contacts and Eyeglasses",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "America's Best Contacts and Eyeglasses - 1041 Branson Hills Prkwy, Branson, MO 65616 - Turnkey Solutions, Inc.",
+ "Job_Name": "America's Best Contacts and Eyeglasses",
+ "Job_Number": "2527",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2527 - America's Best Contacts and Eyeglasses",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/29/22 11:43 AM Heidi Mahan Door Code: 1983---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6363644033",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2527 - America's Best Contacts and Eyeglasses - 1041 Branson Hills Prkwy, Branson, MO 65616 - Turnkey Solutions, Inc. - Blake Goodman - 6363644033",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.243Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tykpnes72zjscw4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.193Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Management Resource Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Tyler Moser",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tmoser@mrs1977.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1429 S. Glenstone Ave., Spfld, MO 65804",
+ "Job_Codes": "2526 - Doordash Tenant Buildout",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Doordash Tenant Buildout - 1429 S. Glenstone Ave., Spfld, MO 65804 - Management Resource Group",
+ "Job_Name": "Doordash Tenant Buildout",
+ "Job_Number": "2526",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2526 - Doordash Tenant Buildout",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "3368211742",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2526 - Doordash Tenant Buildout - 1429 S. Glenstone Ave., Spfld, MO 65804 - Management Resource Group - Tyler Moser - 3368211742",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.295Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vzi9dvbcut26mm5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.338Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McNabb, Roger",
+ "Contact_Notes": "",
+ "Contact_Person": "Roger ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "65803",
+ "Job_Codes": "2525 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 65803 - McNabb, Roger",
+ "Job_Name": "Repair",
+ "Job_Number": "2525",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2525 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/12/22 5:36 PM Beth Cardoza Never was able to get in touch.---\n06/28/22 3:28 PM Beth Cardoza Waiting on more information.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172922568",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2525 - Repair - 65803 - McNabb, Roger - Roger - 4172922568",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.354Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w6mvz1gintm414m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.453Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ayers, Patricia",
+ "Contact_Notes": "",
+ "Contact_Person": "Patricia ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8646 Interlochen Dr, Ozark",
+ "Job_Codes": "2524 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 8646 Interlochen Dr, Ozark - Ayers, Patricia",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2524",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2524 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178185511",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2524 - Ceiling - 8646 Interlochen Dr, Ozark - Ayers, Patricia - Patricia - 4178185511",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.406Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7hwyrv0oodcbxdw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.573Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1625 Delmar, Spfld",
+ "Job_Codes": "2523 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 1625 Delmar, Spfld - McMillin, Allen",
+ "Job_Name": "Repairs",
+ "Job_Number": "2523",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2523 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178392812",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2523 - Repairs - 1625 Delmar, Spfld - McMillin, Allen - Allen - 4178392812",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.550Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xnu152r756rokk8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.701Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "wyatt@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1911 S. National Ave., Spfld, MO 65804",
+ "Job_Codes": "2522 - National Avenue Workplace",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "National Avenue Workplace - 1911 S. National Ave., Spfld, MO 65804 - Ross Construction Group",
+ "Job_Name": "National Avenue Workplace",
+ "Job_Number": "2522",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2522 - National Avenue Workplace",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2522 - National Avenue Workplace - 1911 S. National Ave., Spfld, MO 65804 - Ross Construction Group - Wyatt Gann - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.603Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lft8ieid3kfbslk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.808Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "May, Gary",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3440 S Delaware Ave #157, Spfld",
+ "Job_Codes": "2521 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3440 S Delaware Ave #157, Spfld - May, Gary",
+ "Job_Name": "N/A",
+ "Job_Number": "2521",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2521 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4172241358",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2521 - N/A - 3440 S Delaware Ave #157, Spfld - May, Gary - - 4172241358",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.654Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "sjmxjralj468tnh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:54.917Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cavin, Mariane",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "285 Mariane Ln, Branson West",
+ "Job_Codes": "2520 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 285 Mariane Ln, Branson West - Cavin, Mariane",
+ "Job_Name": "Repair",
+ "Job_Number": "2520",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2520 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/24/22 9:46 AM Beth Cardoza Found someone else---\n06/14/22 11:36 AM Beth Cardoza Basement water damage repair\nAngi lead---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173743414",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2520 - Repair - 285 Mariane Ln, Branson West - Cavin, Mariane - - 4173743414",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.706Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pz48fkfgdquglzq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.044Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JRC Joplin Campus",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1850 S Maiden Lane, Joplin MO 64801",
+ "Job_Codes": "2519 - Sound Proofing Demising Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Sound Proofing Demising Wall - 1850 S Maiden Lane, Joplin MO 64801 - JRC Joplin Campus",
+ "Job_Name": "Sound Proofing Demising Wall",
+ "Job_Number": "2519",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2519 - Sound Proofing Demising Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/14/22 10:38 AM Missie Bechard Local contact\nJustin\n417-437-0014---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2519 - Sound Proofing Demising Wall - 1850 S Maiden Lane, Joplin MO 64801 - JRC Joplin Campus - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.754Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lzyb686v46m7lc8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.157Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "David Trousdale",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "dtrousdale@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "967 E. Evergreen St, Strafford, MO 65757",
+ "Job_Codes": "2518 - FGE Trucking Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "FGE Trucking Infill - 967 E. Evergreen St, Strafford, MO 65757 - Rich Kramer Construction",
+ "Job_Name": "FGE Trucking Infill",
+ "Job_Number": "2518",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2518 - FGE Trucking Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/17/22 12:23 PM Michael Lawson This is being put on the previous FGE as a CO. Job # 1696.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4179204086",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2518 - FGE Trucking Infill - 967 E. Evergreen St, Strafford, MO 65757 - Rich Kramer Construction - David Trousdale - 4179204086",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.807Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zjjztnnpy9t8576",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.291Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "101 W. Jefferson Street, Marshfield, MO 65706",
+ "Job_Codes": "2517 - Renovations For The Seymour Bank - Marshfield",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Renovations For The Seymour Bank - Marshfield - 101 W. Jefferson Street, Marshfield, MO 65706 - Rich Kramer Construction",
+ "Job_Name": "Renovations For The Seymour Bank - Marshfield",
+ "Job_Number": "2517",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2517 - Renovations For The Seymour Bank - Marshfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2517 - Renovations For The Seymour Bank - Marshfield - 101 W. Jefferson Street, Marshfield, MO 65706 - Rich Kramer Construction - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.866Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "m3jjsk4j4idjctw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.409Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "804 N. Highway 5, Mansfield, MO 65704",
+ "Job_Codes": "2516 - Medical Office Expansion & Remodel For Missouri Ozark's Community Health Clinic.",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Medical Office Expansion & Remodel For Missouri Ozark's Community Health Clinic. - 804 N. Highway 5, Mansfield, MO 65704 - Rich Kramer Construction",
+ "Job_Name": "Medical Office Expansion & Remodel For Missouri Ozark's Community Health Clinic.",
+ "Job_Number": "2516",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2516 - Medical Office Expansion & Remodel For Missouri Ozark's Community Health Clinic.",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2516 - Medical Office Expansion & Remodel For Missouri Ozark's Community Health Clinic. - 804 N. Highway 5, Mansfield, MO 65704 - Rich Kramer Construction - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.926Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a867uojg61acure",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.524Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bids@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1836 North Eldon Ave., Spfld, MO",
+ "Job_Codes": "2515 - Pro Machinery Movers",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pro Machinery Movers - 1836 North Eldon Ave., Spfld, MO - Rich Kramer Construction",
+ "Job_Name": "Pro Machinery Movers",
+ "Job_Number": "2515",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2515 - Pro Machinery Movers",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178655959",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2515 - Pro Machinery Movers - 1836 North Eldon Ave., Spfld, MO - Rich Kramer Construction - Cheryl Griffeth - 4178655959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:10.986Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "exc9n09dx60hrly",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.620Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Terry Adams, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Rod Plymale",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rplymale@terryadamsinc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Battlefield Mall, Springfield, MO",
+ "Job_Codes": "2514 - Vans - Battlefield Mall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Vans - Battlefield Mall - Battlefield Mall, Springfield, MO - Terry Adams, Inc.",
+ "Job_Name": "Vans - Battlefield Mall",
+ "Job_Number": "2514",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2514 - Vans - Battlefield Mall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/17/22 12:22 PM Michael Lawson Framing is scheduled to begin 9/12.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "2707690859",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2514 - Vans - Battlefield Mall - Battlefield Mall, Springfield, MO - Terry Adams, Inc. - Rod Plymale - 2707690859",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.051Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l2hcnhlcsh7ifq9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.728Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Infinity Academy",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Doerr",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@infinityacademy.org",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2120 W. Calhoun, Ozark, MO",
+ "Job_Codes": "2513 - Infinity Academy Demising Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Infinity Academy Demising Wall - 2120 W. Calhoun, Ozark, MO - Infinity Academy",
+ "Job_Name": "Infinity Academy Demising Wall",
+ "Job_Number": "2513",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2513 - Infinity Academy Demising Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/14/22 1:15 PM Michael Lawson Lock box on East side of building on gas meter. Code is 2001 one. Door is the one closest to the front of the building on the east side as well.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178618977",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2513 - Infinity Academy Demising Wall - 2120 W. Calhoun, Ozark, MO - Infinity Academy - Julie Doerr - 4178618977",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.110Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "s7bx8wcst7lzjyk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.849Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Dowell, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6107 Piazza Ave, Spfld",
+ "Job_Codes": "2512 - Millwood",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Millwood - 6107 Piazza Ave, Spfld - Dowell, Kyle",
+ "Job_Name": "Millwood",
+ "Job_Number": "2512",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2512 - Millwood",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/28/23 6:57 AM david cardoza Stock 16,088\n tile board 288\n2nd drywall stock 320\nTotal stock for hang 16,696\n(tile board pays the same)\nNo leftover---\n02/16/23 3:01 PM Beth Cardoza 6107 Plazza Ave\nOzark \n\nBasically a three car garage split on an L formation that is about 11 feet over gravel.\n\n Enter the house from garage all 9 foot flat except for the master bedroom on the right which does a pop up to r\n09/16/22 5:57 PM Beth Cardoza Estimate will need updating. Was sent before the last price change.---\n09/16/22 5:51 PM Beth Cardoza Job awarded. \"we are probably 3 months away from drywall. Foundation is sitting, waiting for framers to start in about 2 weeks.\"---\n06/09/22 1:53 PM Beth Cardoza 1. All trash and waste material is to be disposed of in provided dumpsters at the END OF EACH AND\nEVERY DAY. This includes personal trash from lunch breaks, cigarette buts, scrap materials etc. Materials\nthat are still in use\n06/09/22 1:54 PM Beth Cardoza What #1 might mean is that hangers may need to also scrap, or scrappers scrapping same day behind them.---\n06/29/22 12:04 PM Beth Cardoza Honestly I just put that in there because nobody ever cleans up after themselves. lol. Clean up at the end of the hanging and finishing would be fine.Thanks for reading through it though. - Kyle---\n06/10/22 1:30 PM Beth Cardoza Square corners and sometime next week [to get estimate back] would be nice if possible.---\n06/09/22 1:53 PM Beth Cardoza Drywall- Tree bark textured ceiling, light orange peel on the walls. Window wall of dinning room level 5.\nAll windows wrapped on 3 sides with wood sills.---\n06/09/22 1:42 PM Beth Cardoza Emailing plans---\n06/09/22 1:42 PM Beth Cardoza Several in line in SW Springfield. Another 4-5 houses.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178603628",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2512 - Millwood - 6107 Piazza Ave, Spfld - Dowell, Kyle - Kyle - 4178603628",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.163Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uev1ox3w8owi7if",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:55.965Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1524 Millridge Ct, Nixa",
+ "Job_Codes": "2511 - Reed",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Reed - 1524 Millridge Ct, Nixa - King, Brad",
+ "Job_Name": "Reed",
+ "Job_Number": "2511",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2511 - Reed",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/10/22 12:29 PM Beth Cardoza 1524 S Millridge Ct\nNixa, MO 65714\nUnited States\n\nThree car garage at 10 foot over concrete\n\nEntry room from garage is at 11 1/2 feet high. \n\nLaundry room and attached bathroom and bedroom near the garage is at 10‘3“\n\nVery",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178499817",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2511 - Reed - 1524 Millridge Ct, Nixa - King, Brad - Brad - 4178499817",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.218Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9xxqx05qofo70k2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.094Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Larsen, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul McKenzie",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "299 Park Circle, Sparta",
+ "Job_Codes": "2510 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 299 Park Circle, Sparta - Larsen, Steve",
+ "Job_Name": "Patch",
+ "Job_Number": "2510",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2510 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/07/22 2:17 PM Beth Cardoza Still out 1 week from today. Waiting on insurance---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4173163665",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2510 - Patch - 299 Park Circle, Sparta - Larsen, Steve - Paul McKenzie - 4173163665",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.270Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8bma70x1dsga1ly",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.212Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Villegas, Ruben",
+ "Contact_Notes": "",
+ "Contact_Person": "Ruben",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Indian Point Branson",
+ "Job_Codes": "2509 - Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture - Indian Point Branson - Villegas, Ruben",
+ "Job_Name": "Texture",
+ "Job_Number": "2509",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2509 - Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2509 - Texture - Indian Point Branson - Villegas, Ruben - Ruben - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.330Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hhmua4culldpj6p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.305Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Wyatt Gann",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "wyatt@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "521 N. Boonville, Springfield, MO",
+ "Job_Codes": "2508 - Dake Wells Office Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Dake Wells Office Renovation - 521 N. Boonville, Springfield, MO - Ross Construction Group",
+ "Job_Name": "Dake Wells Office Renovation",
+ "Job_Number": "2508",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2508 - Dake Wells Office Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4174291417",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2508 - Dake Wells Office Renovation - 521 N. Boonville, Springfield, MO - Ross Construction Group - Wyatt Gann - 4174291417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.390Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "14ojyls7yjolm6y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.405Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Metcalf, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Metcalf ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3620 E Delmar, Spfld",
+ "Job_Codes": "2507 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 3620 E Delmar, Spfld - Metcalf, Scott",
+ "Job_Name": "Repair",
+ "Job_Number": "2507",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2507 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/17/22 6:38 PM Beth Cardoza Time and material job---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178186275",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2507 - Repair - 3620 E Delmar, Spfld - Metcalf, Scott - Scott Metcalf - 4178186275",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.447Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4ahkepbck6ieb3t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.525Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Beer Room",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Lake of the Ozarks",
+ "Job_Codes": "2506 - Beer Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Beer Room - Lake of the Ozarks - Beer Room",
+ "Job_Name": "Beer Room",
+ "Job_Number": "2506",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2506 - Beer Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8169185359",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2506 - Beer Room - Lake of the Ozarks - Beer Room - - 8169185359",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.498Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tvb2vwaxoci2eap",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.634Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McAvoy, Nick",
+ "Contact_Notes": "",
+ "Contact_Person": "Nick ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "883 W Heather Glen, Nixa",
+ "Job_Codes": "2505 - Bathroom",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bathroom - 883 W Heather Glen, Nixa - McAvoy, Nick",
+ "Job_Name": "Bathroom",
+ "Job_Number": "2505",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2505 - Bathroom",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/22 4:46 PM Beth Cardoza Start on Friday 22nd---\n07/07/22 2:14 PM Beth Cardoza Still Out 2 more weeks. Waiting on permit and plumber---\n06/07/22 10:19 AM Beth Cardoza Bathroom remodel. \nnickred88@gmail.com\nI’m meeting him on the 20th after he closes on the house. This is an Angi lead - Kyle---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "3039180012",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2505 - Bathroom - 883 W Heather Glen, Nixa - McAvoy, Nick - Nick - 3039180012",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.558Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lgt3ojih9fazlfj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.757Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DeWitt & Associates, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Thomlinson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "bthomlinson@dewitt-associates.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1123 Spokane Rd., Spokane, MO 65754",
+ "Job_Codes": "2504 - New Spokane AG Science Center",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "New Spokane AG Science Center - 1123 Spokane Rd., Spokane, MO 65754 - DeWitt & Associates, Inc.",
+ "Job_Name": "New Spokane AG Science Center",
+ "Job_Number": "2504",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2504 - New Spokane AG Science Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178814820",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2504 - New Spokane AG Science Center - 1123 Spokane Rd., Spokane, MO 65754 - DeWitt & Associates, Inc. - Brad Thomlinson - 4178814820",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.619Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e2ig0z5sdkvznln",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.849Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "JBG Services LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Jake Gullett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jakegullett@jbg-services.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "13367 MO-13, Kimberling City, MO 65686",
+ "Job_Codes": "2503 - Table Rock Boats Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Table Rock Boats Renovation - 13367 MO-13, Kimberling City, MO 65686 - JBG Services LLC",
+ "Job_Name": "Table Rock Boats Renovation",
+ "Job_Number": "2503",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2503 - Table Rock Boats Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178254919",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2503 - Table Rock Boats Renovation - 13367 MO-13, Kimberling City, MO 65686 - JBG Services LLC - Jake Gullett - 4178254919",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.678Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hksd4t53cr1sx0i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:56.962Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Weston Rogers",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "wrogers@hcrogers.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5955 S. Farm Road 163, Springfield, MO ",
+ "Job_Codes": "2502 - Villas at Anthony Park Clubhouse",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Villas at Anthony Park Clubhouse - 5955 S. Farm Road 163, Springfield, MO - HC Rogers Construction Group",
+ "Job_Name": "Villas at Anthony Park Clubhouse",
+ "Job_Number": "2502",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2502 - Villas at Anthony Park Clubhouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "8167240127",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2502 - Villas at Anthony Park Clubhouse - 5955 S. Farm Road 163, Springfield, MO - HC Rogers Construction Group - Weston Rogers - 8167240127",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.735Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u78cpfsqaijvoo8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.145Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jonat LLC",
+ "Contact_Notes": "",
+ "Contact_Person": "Adam Felts",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "adamjfelts@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "106 S. Business 65, Branson, MO 65616",
+ "Job_Codes": "2501 - New Building/Old Fudge Shop",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "New Building/Old Fudge Shop - 106 S. Business 65, Branson, MO 65616 - Jonat LLC",
+ "Job_Name": "New Building/Old Fudge Shop",
+ "Job_Number": "2501",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2501 - New Building/Old Fudge Shop",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "6786213338",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2501 - New Building/Old Fudge Shop - 106 S. Business 65, Branson, MO 65616 - Jonat LLC - Adam Felts - 6786213338",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.782Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "17xq7dkdp0u2via",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.249Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Barrett, Evan",
+ "Contact_Notes": "",
+ "Contact_Person": "Evan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2625 W Heritage Dr., Ozark",
+ "Job_Codes": "2500 - Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture - 2625 W Heritage Dr., Ozark - Barrett, Evan",
+ "Job_Name": "Texture",
+ "Job_Number": "2500",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2500 - Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/02/22 11:03 AM Beth Cardoza 20x20 out building with approximately 500 square feet of wall space\n\nEvan would like a quote for spray texture including all of the masking, knockdown, and clean up.",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "4178446029",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2500 - Texture - 2625 W Heritage Dr., Ozark - Barrett, Evan - Evan - 4178446029",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.838Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "a36shw032idjzx7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.350Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Jennings, Brianna",
+ "Contact_Notes": "",
+ "Contact_Person": "Brianna (925) 381-3845",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4325 S 82nd Rd, Bolivar",
+ "Job_Codes": "2499 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 4325 S 82nd Rd, Bolivar - Jennings, Brianna",
+ "Job_Name": "Remodel",
+ "Job_Number": "2499",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2499 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2499 - Remodel - 4325 S 82nd Rd, Bolivar - Jennings, Brianna - Brianna (925) 381-3845 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.886Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5eot5q0erqa598f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.449Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2498 - Fireplace #5",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplace #5 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplace #5",
+ "Job_Number": "2498",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2498 - Fireplace #5",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/03/22 12:19 PM Beth Cardoza This one doesn't exist yet.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2498 - Fireplace #5 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:11.946Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5kztp7x0zph9knb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.562Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2497 - Fireplaces Bld #9",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplaces Bld #9 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplaces Bld #9",
+ "Job_Number": "2497",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2497 - Fireplaces Bld #9",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2497 - Fireplaces Bld #9 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.095Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mzmzvxznjn7d8cv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.662Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2496 - Fireplaces Bld #6",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplaces Bld #6 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplaces Bld #6",
+ "Job_Number": "2496",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2496 - Fireplaces Bld #6",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2496 - Fireplaces Bld #6 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.187Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2prn2axeuwrxa2w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2495 - Fireplaces Bld #3",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplaces Bld #3 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplaces Bld #3",
+ "Job_Number": "2495",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2495 - Fireplaces Bld #3",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2495 - Fireplaces Bld #3 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.261Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uj4ma5std000o3x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.890Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Serenity Shores",
+ "Job_Codes": "2494 - Fireplaces Bld #11",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fireplaces Bld #11 - Serenity Shores - King, Brad",
+ "Job_Name": "Fireplaces Bld #11",
+ "Job_Number": "2494",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2494 - Fireplaces Bld #11",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2494 - Fireplaces Bld #11 - Serenity Shores - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.315Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gevbgcs6nys5y7g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:57.995Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Marvin",
+ "Contact_Notes": "",
+ "Contact_Person": "Marvin 417-861-7844",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5927 S Dollison, Spfld",
+ "Job_Codes": "2493 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5927 S Dollison, Spfld - Marvin",
+ "Job_Name": "N/A",
+ "Job_Number": "2493",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2493 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/08/22 11:36 AM david cardoza Stock 13,492 \nLeft over at Marvin house 486\nHang 13,006---\n05/31/22 12:43 PM Beth Cardoza 5927 So Dollison \nSpringfield, Mo\n\nSingle level home in Anthony Park.\n\n3 car garage at 10 foot over gravel\n\nMost of the floor is 9 foot flat except for the main living room which is 11 foot flat. \n\n two of the bedroom ceili",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2493 - N/A - 5927 S Dollison, Spfld - Marvin - Marvin 417-861-7844 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.383Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "96j3pb594ywyw69",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.102Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "15 Downing St, Hollister",
+ "Job_Codes": "2492 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F2492%2E3%20Remodel%20%2815%20Downing%20St%2C%20Hollister%29%20%28Krueger%2C%20Paul%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Remodel - 15 Downing St, Hollister - Krueger, Paul",
+ "Job_Name": "Remodel",
+ "Job_Number": "2492",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2492 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/04/24 12:31 PM Beth Cardoza 15 downing st\n\nGo around to the front side to the far left door and there is a lock box attached to the door\nUse the code 7703 to get into it---\n05/06/24 9:46 AM Beth Cardoza Job 2492.3 with address 15 Downing St. will not be ready for us to hang until beginning of next week---\n02/29/24 4:44 PM Beth Cardoza Start in April now?---\n02/06/24 12:13 PM Beth Cardoza Tentative start date 2/27---\n01/29/24 11:04 AM Beth Cardoza Phase 3 being looked at/getting ready to start---\n11/30/23 7:34 AM david cardoza Stock 1504\nNo leftover---\n11/28/23 9:20 AM Beth Cardoza Phase 2 in progress---\n10/11/23 1:28 PM david cardoza Phase I stock:\n2,496\nLeftover 1,008\nHang 1,488---\n10/06/23 1:28 PM Beth Cardoza Call to get in\n\n7703 code---\n08/30/23 1:07 PM Beth Cardoza Phase 1 - New estimate per Dave wallkthrough 8/29/23. Needs this scope done asap. May be more later.---\n06/06/22 11:47 AM Beth Cardoza Dave going over his notes. I have something together based on the videos and info I have, just waiting for reviews.---\n05/31/22 10:49 AM Beth Cardoza To look at sometime this week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2492 - Remodel - 15 Downing St, Hollister - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.442Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8tu5yzis0qzphu1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.217Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Still, Mark",
+ "Contact_Notes": "",
+ "Contact_Person": "417-294-0057",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "200 Ingalls Ln, Hollister",
+ "Job_Codes": "2491 - #34BC",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "#34BC - 200 Ingalls Ln, Hollister - Still, Mark",
+ "Job_Name": "#34BC",
+ "Job_Number": "2491",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2491 - #34BC",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/22 11:51 AM Beth Cardoza building 34 they had to slide each elevator door opening over about 10 inches so we will have to hang a piece of sheet rock roughly 10 inches by the height of the door. Inside and out. Three doors. I assume he can probably p\n06/13/22 11:52 AM Beth Cardoza this is in addition to other patches I think. Nothing was done at this job the last couple of weeks.---\n06/14/22 1:40 PM Beth Cardoza See main Branson Cove voxer for description of work and photos from Dave---\n05/31/22 10:18 AM Beth Cardoza Repairs only. Did not do original job. Need info for estimate.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2491 - #34BC - 200 Ingalls Ln, Hollister - Still, Mark - 417-294-0057 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.495Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nbd1enaiewbmc6y",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.321Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Omni Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Josh Reich, 417-655-2693, josh@buildwithomni.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7163 State Highway 173, Cape Fair, Missouri 65624",
+ "Job_Codes": "2490 - Cape Fair Church",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cape Fair Church - 7163 State Highway 173, Cape Fair, Missouri 65624 - Omni Construction",
+ "Job_Name": "Cape Fair Church",
+ "Job_Number": "2490",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2490 - Cape Fair Church",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2490 - Cape Fair Church - 7163 State Highway 173, Cape Fair, Missouri 65624 - Omni Construction - Josh Reich, 417-655-2693, josh@buildwithomni.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.566Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f3xvgqj5qhgilez",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.438Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Harris, Donald",
+ "Contact_Notes": "",
+ "Contact_Person": "Donald (417) 849-3784",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1711 W Whiteside, Spfld",
+ "Job_Codes": "2489 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 1711 W Whiteside, Spfld - Harris, Donald",
+ "Job_Name": "Repair",
+ "Job_Number": "2489",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2489 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/23/22 11:30 AM Beth Cardoza Went with someone else---\n06/08/22 12:37 PM Kyle Robertson followed up June 8th waiting on insurance to get back with him. its assumed awarded---\n05/27/22 5:12 PM Beth Cardoza Rick said we can bid painting next week.---\n05/26/22 6:57 PM Beth Cardoza Voxer has info from Kyle's walkthrough---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2489 - Repair - 1711 W Whiteside, Spfld - Harris, Donald - Donald (417) 849-3784 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.634Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mcsi2cs03uwlnv7",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.554Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rehagen, Naoma",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 883-9080",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2263 W Buena Vista, Spfld",
+ "Job_Codes": "2488 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2263 W Buena Vista, Spfld - Rehagen, Naoma",
+ "Job_Name": "Patch",
+ "Job_Number": "2488",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2488 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/25/22 3:38 PM Beth Cardoza Insurance agent with Shelter Insurance: Ben Byrd 891-5833, if we need it.---\n05/25/22 3:34 PM Beth Cardoza 94 year old lady. No text, no email. Insurance is paying for it. 2' patch near water heater. smooth wall. Roto-Rooter referred us because the original guy she expected today wasn't available for a week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2488 - Patch - 2263 W Buena Vista, Spfld - Rehagen, Naoma - (417) 883-9080 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.692Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "03chk1kv0bnaln4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.662Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Presley, Larry",
+ "Contact_Notes": "",
+ "Contact_Person": "Lisa dawnboyts99@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "9636 W Farm Road 76, Willard",
+ "Job_Codes": "2487 - Room",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Room - 9636 W Farm Road 76, Willard - Presley, Larry",
+ "Job_Name": "Room",
+ "Job_Number": "2487",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2487 - Room",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/08/22 12:35 PM Kyle Robertson followed up June 8th assumed awarded . they will call me back later today to confirm---\n05/25/22 5:20 PM Beth Cardoza wrap all 4 sides of window---\n05/25/22 1:44 PM Beth Cardoza Stomp knockdown is fine for the ceilings. Its at the back of the house, which doesn't have an outdoor access. But there's really close back door just off the room. When I get home this afternoon I will send you some pics---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2487 - Room - 9636 W Farm Road 76, Willard - Presley, Larry - Lisa dawnboyts99@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.761Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "53rh6lh7ygb3cur",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.793Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cowherd",
+ "Contact_Notes": "",
+ "Contact_Person": "Bill Hoey (417) 300-4001",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3502 S Welwood Ave, Spfld",
+ "Job_Codes": "2486 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 3502 S Welwood Ave, Spfld - Cowherd",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2486",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2486 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/24/22 5:18 PM Beth Cardoza Bill is emailing photos, address, etc. 1400 sqft popcorn scrape. Rick gave him a ball park verbal of $2-$3 per sqft---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2486 - Popcorn scrape - 3502 S Welwood Ave, Spfld - Cowherd - Bill Hoey (417) 300-4001 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.820Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "222des43mo5v5kq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:58.898Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug Pitts, 417-840-5759, doug@dougpittsconstruction.net",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Same as Job #1813",
+ "Job_Codes": "2485 - Saddlebrook Exterior Columns",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Saddlebrook Exterior Columns - Same as Job #1813 - Pitts, Doug",
+ "Job_Name": "Saddlebrook Exterior Columns",
+ "Job_Number": "2485",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2485 - Saddlebrook Exterior Columns",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2485 - Saddlebrook Exterior Columns - Same as Job #1813 - Pitts, Doug - Doug Pitts, 417-840-5759, doug@dougpittsconstruction.net - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.880Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d167blwyeeeqdaj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.042Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "9227 E FR 116, Strafford",
+ "Job_Codes": "2484 - Pool house",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pool house - 9227 E FR 116, Strafford - Essick, Dusty",
+ "Job_Name": "Pool house",
+ "Job_Number": "2484",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2484 - Pool house",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2484 - Pool house - 9227 E FR 116, Strafford - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:12.954Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "g5kpkqkfmvnmmsg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.146Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "For His Glory Properties ",
+ "Contact_Notes": "",
+ "Contact_Person": "Kevin DeMera 417-689-9464",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1239 N Prospect Ave., Spfld",
+ "Job_Codes": "2483 - Rehab",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Rehab - 1239 N Prospect Ave., Spfld - For His Glory Properties ",
+ "Job_Name": "Rehab",
+ "Job_Number": "2483",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2483 - Rehab",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/07/22 6:26 PM Beth Cardoza CO 9 Windows (frame in lower) and widen 2 doors---\n07/26/22 10:39 AM Beth Cardoza Clay starting tomorrow 7/27---\n06/24/22 12:59 PM Beth Cardoza Awarded. Probably 8 weeks out. He may have some framing for us to do hourly sooner than that, but he won't know for 2 or 3 weeks when he finishes demo work.---\n06/09/22 4:34 PM Beth Cardoza 6-7 weeks or so out still---\n06/09/22 4:33 PM Beth Cardoza Notes from phone conversation between Rick and Kevin: All the cabinets, trim and flooring will be out. All walls will be demoed down to the studs and nails removed. Tap angle, we'll do whatever is most cost efficient. Probabl\n06/09/22 4:34 PM Beth Cardoza Framing windows will probably be T&M, but guess would be $100 per window, but if widening the windows then $200 each.---\n06/06/22 9:46 AM Beth Cardoza Info on voxer chat---\n05/24/22 9:53 AM Beth Cardoza I am interested in having someone come out and give me an estimate for complete drywall replacement on a house. Please call or email me. Thank you! Kevin DeMera ForHis Glory Properties 417-689-9464---\n05/24/22 9:53 AM Beth Cardoza I've responded asking for more information---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2483 - Rehab - 1239 N Prospect Ave., Spfld - For His Glory Properties - Kevin DeMera 417-689-9464 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.012Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uyry97p0panh5xq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.270Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kjar, Roger",
+ "Contact_Notes": "",
+ "Contact_Person": "Roger Kjar, Taco Bell Buffalo MO",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1210 South Ash, Buffalo, MO 65622",
+ "Job_Codes": "2482 - Taco Bell FRP T&M",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Taco Bell FRP T&M - 1210 South Ash, Buffalo, MO 65622 - Kjar, Roger",
+ "Job_Name": "Taco Bell FRP T&M",
+ "Job_Number": "2482",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2482 - Taco Bell FRP T&M",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/06/22 3:22 PM Michael Lawson Jacob and Manny got everything installed that the customer had on hand. They ordered more FRP and it was due in on Friday. I text Brad Hobbs to make sure he got it picked up. No response yet.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2482 - Taco Bell FRP T&M - 1210 South Ash, Buffalo, MO 65622 - Kjar, Roger - Roger Kjar, Taco Bell Buffalo MO - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.093Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qx940kxxrg451k4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.385Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4270 W. Kearney St., Springfield, MO 65803",
+ "Job_Codes": "2481 - Westgate Warehouse",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Westgate Warehouse - 4270 W. Kearney St., Springfield, MO 65803 - Rich Kramer Construction",
+ "Job_Name": "Westgate Warehouse",
+ "Job_Number": "2481",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2481 - Westgate Warehouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2481 - Westgate Warehouse - 4270 W. Kearney St., Springfield, MO 65803 - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.162Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lufikncq162tzb5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.506Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pickens, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "189 Corbin Way, Branson",
+ "Job_Codes": "2480 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 189 Corbin Way, Branson - Pickens, Scott",
+ "Job_Name": "Repairs",
+ "Job_Number": "2480",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2480 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/23/22 1:40 PM Beth Cardoza Referral from Steve Pickens. It is his son.\n\nSingle level ranch style house is being moved out of and will be vacant\n\nGeneral mainly cosmetic repairs throughout the house.Some water damage. Stress cracks.\nThe ceiling is a pai",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2480 - Repairs - 189 Corbin Way, Branson - Pickens, Scott - Scott - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.210Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rfxpandy2yx7euf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.617Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Pinacle Shores, Lampe Lot 39",
+ "Job_Codes": "2479 - Phillips",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F2479%20Phillips%20%28Pinacle%20Shores%2C%20Lampe%20Lot%2039%29%20%28Pitts%2C%20Doug%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Phillips - Pinacle Shores, Lampe Lot 39 - Pitts, Doug",
+ "Job_Name": "Phillips",
+ "Job_Number": "2479",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2479 - Phillips",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/31/23 12:59 PM Beth Cardoza On hold - Pitts---\n07/01/25 2:09 PM Beth Cardoza On hold till kids get out of college. So, it may very well be a different job by then so I'm archiving it as not awarded. If/when it comes up again we'll get fresh plans and everything.---\n05/24/22 9:33 AM Beth Cardoza Next week is fine [for estimate]\nMight need drywall early fall.\nThis is Old World so figure hand textures on main level important areas then light spray knock down everywhere else.\nNo window wraps.\nRound corners.---\n05/23/22 12:56 PM Beth Cardoza Subdivision just North of Lampe off of Hwy 13. Look up Pinnacle Shores Dr, Lampe.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2479 - Phillips - Pinacle Shores, Lampe Lot 39 - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.264Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "miogylmhlli1ik2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.730Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Herring, Donna",
+ "Contact_Notes": "",
+ "Contact_Person": "Donna blondetiger84@aol.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "502 N Lone Pine Ave, Spfld",
+ "Job_Codes": "2478 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 502 N Lone Pine Ave, Spfld - Herring, Donna",
+ "Job_Name": "Patch",
+ "Job_Number": "2478",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2478 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2478 - Patch - 502 N Lone Pine Ave, Spfld - Herring, Donna - Donna blondetiger84@aol.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.344Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "arowb6rqefq0o1b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.842Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Minor, Jacob",
+ "Contact_Notes": "",
+ "Contact_Person": "Jacob 417-521-7382",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "228 Black Walnut Ln. Marshfield",
+ "Job_Codes": "2477 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F6%20Not%20Awarded%20Jobs%202024%2F2477%20%20%28228%20Black%20Walnut%20Ln%2E%20Marshfield%29%20%28Minor%2C%20Jacob%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - 228 Black Walnut Ln. Marshfield - Minor, Jacob",
+ "Job_Name": "N/A",
+ "Job_Number": "2477",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2477 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/21/25 3:12 PM Beth Cardoza No response from follow up in May. Assumed not awarded---\n05/24/22 4:07 PM Beth Cardoza Estimate in the next week or two would be awesome if that's possible. Really I'm just trying to finalize my build estimate to my bank as quick as possible. -Jacob---\n05/20/22 6:40 PM Beth Cardoza Seems like it might have a high vault. Emailed about that. Waiting for response.---\n05/23/22 11:48 AM Beth Cardoza Yeah, those are some of the issues I have run into with my architect not fully thinking things through and labeling things. I know the ceiling in the living room is vaulted and I think it matches the roof pitch of 8:12. Howe\n05/20/22 5:31 PM Beth Cardoza We plan to have 9 ft. ceilings for both floors. For all your other questions, I've tried to list our answers below.\n\nLocation and Billing Address: \n228 Black Walnut Ln. Marshfield, MO 65706\n\nPhone: 417-521-7382\n\nFinish(es): I\n05/20/22 5:45 PM Beth Cardoza Let's start with the standard option (Stomp knockdown/OP) and we may change things later down the road---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2477 - N/A - 228 Black Walnut Ln. Marshfield - Minor, Jacob - Jacob 417-521-7382 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.402Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hao9xum29z1bi7u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:03:59.946Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pinnacle Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Erickson, 712-527-1385, briane@pinconstr.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2825 S. Glenstone Ave., Springfield, MO",
+ "Job_Codes": "2476 - Whataburger - Springfield",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Whataburger - Springfield - 2825 S. Glenstone Ave., Springfield, MO - Pinnacle Construction",
+ "Job_Name": "Whataburger - Springfield",
+ "Job_Number": "2476",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2476 - Whataburger - Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2476 - Whataburger - Springfield - 2825 S. Glenstone Ave., Springfield, MO - Pinnacle Construction - Brian Erickson, 712-527-1385, briane@pinconstr.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.445Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cr3uxnolxankfsq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.066Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace, 417-429-1417 x103, julie@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "245 Cove Crest, Kimberling City, MO",
+ "Job_Codes": "2475 - Point 7",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Point 7 - 245 Cove Crest, Kimberling City, MO - Ross Construction Group",
+ "Job_Name": "Point 7",
+ "Job_Number": "2475",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2475 - Point 7",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2475 - Point 7 - 245 Cove Crest, Kimberling City, MO - Ross Construction Group - Julie Wallace, 417-429-1417 x103, julie@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ayms1ey16c36p1e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.185Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Metcalf, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Metcalf (417) 818-6275",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2620 E Delmar, Spfld",
+ "Job_Codes": "2474 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2620 E Delmar, Spfld - Metcalf, Scott",
+ "Job_Name": "Patch",
+ "Job_Number": "2474",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2474 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2474 - Patch - 2620 E Delmar, Spfld - Metcalf, Scott - Scott Metcalf (417) 818-6275 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.562Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tnjbhk4ode1nix6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.310Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos Chan, 417-522-3600. cchan@hcrogers.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2601 N. Cresthaven, Springfield, MO 65803",
+ "Job_Codes": "2473 - Orchard Park Apartments",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Orchard Park Apartments - 2601 N. Cresthaven, Springfield, MO 65803 - HC Rogers Construction Group",
+ "Job_Name": "Orchard Park Apartments",
+ "Job_Number": "2473",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2473 - Orchard Park Apartments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2473 - Orchard Park Apartments - 2601 N. Cresthaven, Springfield, MO 65803 - HC Rogers Construction Group - Carlos Chan, 417-522-3600. cchan@hcrogers.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.625Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fc3cafn6owxpxro",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "DEI",
+ "Contact_Notes": "",
+ "Contact_Person": "David Scheffel, 513-699-4709, dscheffel@dei-corp.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2450 E. Sunshine Street, Springfield, MO 65804",
+ "Job_Codes": "2472 - First Midwest Bank - Springfield, MO #2952",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "First Midwest Bank - Springfield, MO #2952 - 2450 E. Sunshine Street, Springfield, MO 65804 - DEI",
+ "Job_Name": "First Midwest Bank - Springfield, MO #2952",
+ "Job_Number": "2472",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2472 - First Midwest Bank - Springfield, MO #2952",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2472 - First Midwest Bank - Springfield, MO #2952 - 2450 E. Sunshine Street, Springfield, MO 65804 - DEI - David Scheffel, 513-699-4709, dscheffel@dei-corp.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.711Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9116yp8vf72fdlh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.534Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construction One",
+ "Contact_Notes": "",
+ "Contact_Person": "Este Moraleja, 614-961-1114, emoraleja@constructionone.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "502 West Walnut Street, Springfield, MO 65806",
+ "Job_Codes": "2471 - Crash Champions - Springfield, MO",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Crash Champions - Springfield, MO - 502 West Walnut Street, Springfield, MO 65806 - Construction One",
+ "Job_Name": "Crash Champions - Springfield, MO",
+ "Job_Number": "2471",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2471 - Crash Champions - Springfield, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2471 - Crash Champions - Springfield, MO - 502 West Walnut Street, Springfield, MO 65806 - Construction One - Este Moraleja, 614-961-1114, emoraleja@constructionone.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.792Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vju8tzaa8dnfbei",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.638Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Thomlinson, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad 417.633.4232",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3586 E Farm Road 26, Fair Grove",
+ "Job_Codes": "2470 - Thomlinson",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Thomlinson - 3586 E Farm Road 26, Fair Grove - Thomlinson, Brad",
+ "Job_Name": "Thomlinson",
+ "Job_Number": "2470",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2470 - Thomlinson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/03/23 4:50 PM Beth Cardoza There's a couple of cracks, however he wanted to paint this weekend and might just caulk them. We'll see if he calls us to go take care of it. It's minor.---\n01/17/23 10:15 AM Beth Cardoza CO: Also, he is wanting the arched front door finished with some kind of drywall bead, mud, etc. I guess there’s no trim.? Seems strange. \n Julio can figure it out. He’s thinking some kind of a flat trim piece that he will\n01/04/23 8:32 AM david cardoza Not 100% certain but it looks like there were five sheets of 12 foot drywall left over I am assuming from the coldwall hang but not 100% certain. Looks like they hung five sheets of 12 foot drywall for the coldwall.\n\nMain st\n12/15/22 4:42 PM Beth Cardoza CO: Ok Beth, hopefully this is the last change… I have had a misunderstanding with my lumber supplier and they did not include that ship lap on the main floor. Can you add that back into the pricing? Also, There is a little\n12/08/22 1:30 PM Beth Cardoza Eddie walk through:\n\nHouse with full basement, garage is 12ft flat, 2 bay garage, all main level is 10ft, great room is 20 ft vault , plank in over stairs to basement, basement, 4 bedroom 10 ft tall and 2 closets, ther\n11/14/22 11:17 AM Beth Cardoza NOTE: Eddie suggests delivery truck for drywall back down driveway because there is nowhere to turn around! Need to let REW know that when we request the stock.---\n11/09/22 11:37 AM Beth Cardoza I asked if he decided on finish and he replied \"standard texture\"---\n11/09/22 11:01 AM Beth Cardoza Good morning Beth… We are finally getting close to being ready for drywall. The electrician is roughing in now and he should be complete in a couple weeks. The insulators will move in next and will take 5 to 7 days. Can y\n11/09/22 11:02 AM Beth Cardoza COs: see revised plans---\n09/28/22 10:30 AM Beth Cardoza I spoke with Brad Thomlinson this morning and they are at least two months , best guess, out. M. and I is doing the framing and they were having a real problem with manpower and that is why he is switching over to us for th\n09/16/22 1:57 PM Beth Cardoza On 8/15 it was still 2 months out, so probably mid or end of October---\n05/18/22 4:47 PM Beth Cardoza Address is 3586 E Farm Road 26, Fair Grove, MO 65648 and we are probably 3 months out for drywall.---\n05/18/22 4:46 PM Beth Cardoza I want all walls and ceilings bid as drywall, as the plans may show ship lap in places. All of the ceilings will be 10’ and they will be flat, except the great room up stairs is cathedral. We are removing all other raised ce",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2470 - Thomlinson - 3586 E Farm Road 26, Fair Grove - Thomlinson, Brad - Brad 417.633.4232 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.850Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "useuztsamxllg43",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Brady, Colin",
+ "Contact_Notes": "",
+ "Contact_Person": "Colin (417) 830-8656",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4146 S Bellhurst, Spfld",
+ "Job_Codes": "2469 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 4146 S Bellhurst, Spfld - Brady, Colin",
+ "Job_Name": "Patch",
+ "Job_Number": "2469",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2469 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/29/22 4:01 PM Beth Cardoza Went with someone else. We were too high---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2469 - Patch - 4146 S Bellhurst, Spfld - Brady, Colin - Colin (417) 830-8656 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.903Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qkbyno79imik43u",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.862Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ladd, Dustin",
+ "Contact_Notes": "",
+ "Contact_Person": "Dustin (573) 625-1412, Jennifer (417) 241-1764",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "8199 W Farm Rd 106, Willard",
+ "Job_Codes": "2468 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 8199 W Farm Rd 106, Willard - Ladd, Dustin",
+ "Job_Name": "N/A",
+ "Job_Number": "2468",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2468 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/18/22 5:00 PM Beth Cardoza Ready now job. Need to give number asap and see if we can get someone on it this week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2468 - N/A - 8199 W Farm Rd 106, Willard - Ladd, Dustin - Dustin (573) 625-1412, Jennifer (417) 241-1764 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:13.961Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wqluna5sj1hdt8t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:00.966Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hollister",
+ "Job_Codes": "2467 - Malwitz",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Malwitz - Hollister - Essick, Dusty",
+ "Job_Name": "Malwitz",
+ "Job_Number": "2467",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2467 - Malwitz",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2467 - Malwitz - Hollister - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.020Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wk6l2dfylpkbqbq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Moore, Shelby",
+ "Contact_Notes": "",
+ "Contact_Person": "Shelby (405)694-8693",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3809 Springhill Rd, Rogersville",
+ "Job_Codes": "2466 - Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ceiling - 3809 Springhill Rd, Rogersville - Moore, Shelby",
+ "Job_Name": "Ceiling",
+ "Job_Number": "2466",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2466 - Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/26/22 7:03 PM Beth Cardoza CO: Some wall patches, etc. See email/voxer---\n06/06/22 11:25 AM Beth Cardoza canceled. Doing ceiling only---\n05/17/22 1:17 PM Beth Cardoza They are demoing a drop tile ceiling and need us to hang and finish the ceilings with drywall. 2 rooms. Looking at having it completed by June 20th---\n05/17/22 1:20 PM Beth Cardoza Kyle looking at it on Saturday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2466 - Ceiling - 3809 Springhill Rd, Rogersville - Moore, Shelby - Shelby (405)694-8693 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.084Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cx93pq2rps95xla",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.193Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "264 Sunrise Cove Ln, Lampe",
+ "Job_Codes": "2465 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 264 Sunrise Cove Ln, Lampe - Pitts, Doug",
+ "Job_Name": "N/A",
+ "Job_Number": "2465",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2465 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/31/23 12:58 PM Beth Cardoza Decided not to build---\n05/18/22 10:58 AM Beth Cardoza I want square corners. Windows and doors will all be trimmed in wood. Texture is a huge question. I want either smooth or something unique. I DO NOT want orange peel or knock down. I'll try to find a photo. - Jacque Pit\n05/18/22 11:02 AM Beth Cardoza I told her if she doesn't pick a finish before I get an estimate together I would give her a quote for smooth and that typically single procedure hand textures are the same or less in price as L5 smooth.---\n05/17/22 1:08 PM Beth Cardoza Not broken ground yet so don't know when at this time---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2465 - N/A - 264 Sunrise Cove Ln, Lampe - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.154Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1kt4khrlefgc5p2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.310Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Christenson, Deborah",
+ "Contact_Notes": "",
+ "Contact_Person": "Deborah 417-343-6843",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2223 N Lexington, Spfld",
+ "Job_Codes": "2464 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2223 N Lexington, Spfld - Christenson, Deborah",
+ "Job_Name": "Remodel",
+ "Job_Number": "2464",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2464 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/27/22 5:17 PM Beth Cardoza Also wants price to texture living room walls and the lower half of the kitchen walls where they removed the paneling. There was a patch by the door, but they are handling that---\n05/27/22 5:18 PM Beth Cardoza In case it comes back, I quoted $80 for the wall patch by the door.---\n05/19/22 2:50 PM Beth Cardoza Optional room 1008 sqft---\n05/19/22 2:48 PM Beth Cardoza bedroom and bathroom remodel with option of another bedroom.---\n05/19/22 2:50 PM Beth Cardoza (23) 1/2” 8’s\n(13) 1/2” 8’s stretch board\n(3) 1/2” 8’s green board\n(3) 1/2” 8’s cement board\n(3) 1/2” 12’s\n(3) 1/2” 12’s stretch board---\n05/19/22 2:50 PM Beth Cardoza =1702 sqft---\n05/17/22 10:35 AM Beth Cardoza Kyle meeting on Thursday---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2464 - Remodel - 2223 N Lexington, Spfld - Christenson, Deborah - Deborah 417-343-6843 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.223Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i73466rtupxt6q3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.437Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "CR Drywall",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1041 E Delmar, Spfld",
+ "Job_Codes": "2463 - Texture",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Texture - 1041 E Delmar, Spfld - CR Drywall",
+ "Job_Name": "Texture",
+ "Job_Number": "2463",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2463 - Texture",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2463 - Texture - 1041 E Delmar, Spfld - CR Drywall - Carlos - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.330Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qsekzr1eyl3n3ng",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.546Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson, 417-830-6726, estimator@nesbittconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6021 W US Hwy 60, Republic, MO.",
+ "Job_Codes": "2462 - Great Escape Brewery",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Great Escape Brewery - 6021 W US Hwy 60, Republic, MO. - Nesbitt Construction",
+ "Job_Name": "Great Escape Brewery",
+ "Job_Number": "2462",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2462 - Great Escape Brewery",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2462 - Great Escape Brewery - 6021 W US Hwy 60, Republic, MO. - Nesbitt Construction - Joe Jackson, 417-830-6726, estimator@nesbittconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.394Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "xyurgz8gk13yk0q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.674Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Joe Bald Rd, Kim City",
+ "Job_Codes": "2461 - Herchenroeder",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Herchenroeder - Joe Bald Rd, Kim City - McMillin, Allen",
+ "Job_Name": "Herchenroeder",
+ "Job_Number": "2461",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2461 - Herchenroeder",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/23/22 3:55 PM Beth Cardoza Job canceled per Dave---\n05/16/22 9:39 AM Beth Cardoza Please figure as shown. Square corners, no wrap on windows. This job is down Joe Bald Rd. at Table Rock Lake. Should be ready in about 3 months---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2461 - Herchenroeder - Joe Bald Rd, Kim City - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.464Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vyzrzyk16pn0wkb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.781Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction Co., Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga, 417-887-7134, efriga@sbcglobal.net",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "750 Arnold Ave, Whiteman AFB, MO 65305",
+ "Job_Codes": "2460 - Renovate Restrooms & Showers Whiteman AFB Readiness Center",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Renovate Restrooms & Showers Whiteman AFB Readiness Center - 750 Arnold Ave, Whiteman AFB, MO 65305 - Friga Construction Co., Inc.",
+ "Job_Name": "Renovate Restrooms & Showers Whiteman AFB Readiness Center",
+ "Job_Number": "2460",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2460 - Renovate Restrooms & Showers Whiteman AFB Readiness Center",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2460 - Renovate Restrooms & Showers Whiteman AFB Readiness Center - 750 Arnold Ave, Whiteman AFB, MO 65305 - Friga Construction Co., Inc. - Eric Friga, 417-887-7134, efriga@sbcglobal.net - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.533Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q72euauugwus4l5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:01.909Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "C3 Structures",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Cardoza, 417-844-7094, c3@msystems.tech",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield, MO",
+ "Job_Codes": "2459 - Pizza Ranch T&M",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pizza Ranch T&M - Springfield, MO - C3 Structures",
+ "Job_Name": "Pizza Ranch T&M",
+ "Job_Number": "2459",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2459 - Pizza Ranch T&M",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2459 - Pizza Ranch T&M - Springfield, MO - C3 Structures - Jason Cardoza, 417-844-7094, c3@msystems.tech - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.581Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "l6k1yzd2q7pc26k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.038Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2525 N. General Aviation Ave., Springfield",
+ "Job_Codes": "2458 - OzAir Hanger 2",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "OzAir Hanger 2 - 2525 N. General Aviation Ave., Springfield - Rich Kramer Construction",
+ "Job_Name": "OzAir Hanger 2",
+ "Job_Number": "2458",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2458 - OzAir Hanger 2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2458 - OzAir Hanger 2 - 2525 N. General Aviation Ave., Springfield - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.645Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dba953776ttlcmf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.162Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bauer, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Bauer, 417-719-9203, jason@jbauercpa.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5349 N. 22nd St., Suite 5, Ozark, MO",
+ "Job_Codes": "2457 - Office Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office Remodel - 5349 N. 22nd St., Suite 5, Ozark, MO - Bauer, Jason",
+ "Job_Name": "Office Remodel",
+ "Job_Number": "2457",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2457 - Office Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2457 - Office Remodel - 5349 N. 22nd St., Suite 5, Ozark, MO - Bauer, Jason - Jason Bauer, 417-719-9203, jason@jbauercpa.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.704Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lanjxgbp4suxs68",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.268Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Pebble Beach Rd, Branson",
+ "Job_Codes": "2456 - Howard/Robinson",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Howard/Robinson - Pebble Beach Rd, Branson - Ozark Mountain Homes",
+ "Job_Name": "Howard/Robinson",
+ "Job_Number": "2456",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2456 - Howard/Robinson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/10/22 4:48 PM Beth Cardoza Standard Textures and square corners with 3 way window wrap please. This is on Pebble Beach Rd in Branson Hills subdivision in Branson. If all goes well, we would be sheetrocking in 3-4 months.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2456 - Howard/Robinson - Pebble Beach Rd, Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.762Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fnlyc2nrtsswpp1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.373Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Intrinsic Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Maria",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1794 E Lafayette Ct, Spfd",
+ "Job_Codes": "2455 - Schulke bathrooms",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Schulke bathrooms - 1794 E Lafayette Ct, Spfd - Intrinsic Homes",
+ "Job_Name": "Schulke bathrooms",
+ "Job_Number": "2455",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2455 - Schulke bathrooms",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/20/22 4:19 PM Beth Cardoza We are doing this job T&M. Probably start week of August 1st (or after tile installed if necessary, week of August 8th). Should get some photos around Tuesday July 26th-ish after demo.---\n05/11/22 11:44 AM Beth Cardoza Waiting on info---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2455 - Schulke bathrooms - 1794 E Lafayette Ct, Spfd - Intrinsic Homes - Maria - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.820Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6jchezcrdhkjz9v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.478Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "C3 Structures",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Cardoza, 417-844-7094, c3@msystems.tech",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "209 Rosewood Drive, Branson, 65616",
+ "Job_Codes": "2454 - DSC Branson",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "DSC Branson - 209 Rosewood Drive, Branson, 65616 - C3 Structures",
+ "Job_Name": "DSC Branson",
+ "Job_Number": "2454",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2454 - DSC Branson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2454 - DSC Branson - 209 Rosewood Drive, Branson, 65616 - C3 Structures - Jason Cardoza, 417-844-7094, c3@msystems.tech - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.864Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "41p77zdrlzn6nq8",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.586Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "5 Star Express Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex, 916-420-5168, billing@5starexpressinc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1101 Wyoming Drive, Ozark, MO 65721",
+ "Job_Codes": "2453 - Drop Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Drop Ceiling - 1101 Wyoming Drive, Ozark, MO 65721 - 5 Star Express Inc.",
+ "Job_Name": "Drop Ceiling",
+ "Job_Number": "2453",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2453 - Drop Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2453 - Drop Ceiling - 1101 Wyoming Drive, Ozark, MO 65721 - 5 Star Express Inc. - Alex, 916-420-5168, billing@5starexpressinc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.922Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z29ith71ehcpvda",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fedral Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Sheena Jones",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark",
+ "Job_Codes": "2452 - Duplex",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Duplex - Ozark - Fedral Construction",
+ "Job_Name": "Duplex",
+ "Job_Number": "2452",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2452 - Duplex",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/10/22 12:34 PM Beth Cardoza Not actually in Ozark. It's in Alley Spring or Van Buren! Told them it was out of our area.---\n05/09/22 11:54 AM Beth Cardoza Called asking if we could bid. It's a job for the Federal Government. Something to do with woman owned small businesses. Federal is out of New Jersey and they were looking for local contractors. They would take care of the e",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2452 - Duplex - Ozark - Fedral Construction - Sheena Jones - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:14.991Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w6sxrabe2amnx9q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.830Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King Built Properties",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad King, 417-849-9817, kingbuilt.brad@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4825 E. Kearney, Spfld, MO",
+ "Job_Codes": "2451 - Springfield Sign and Neon Room Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Springfield Sign and Neon Room Addition - 4825 E. Kearney, Spfld, MO - King Built Properties",
+ "Job_Name": "Springfield Sign and Neon Room Addition",
+ "Job_Number": "2451",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2451 - Springfield Sign and Neon Room Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2451 - Springfield Sign and Neon Room Addition - 4825 E. Kearney, Spfld, MO - King Built Properties - Brad King, 417-849-9817, kingbuilt.brad@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.054Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0bua5ahrypxrv2g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:02.941Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Intrinsic Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Maria",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "200 N Blarney Ct, Nixa",
+ "Job_Codes": "2450 - Spec",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Spec - 200 N Blarney Ct, Nixa - Intrinsic Homes",
+ "Job_Name": "Spec",
+ "Job_Number": "2450",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2450 - Spec",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/02/23 4:34 PM Beth Cardoza CO Re: job 2450\nBlarney Ct\n\n“We had a few more things we need to get ready for you to Sheetrock when you come to touch up could we do maybe first of next week to have it all ready for you?\nMaria \n( intrinsic)\n\nDo we need to b\n04/28/23 12:52 PM Beth Cardoza CO: some various touch ups and changes---\n04/11/23 5:31 PM Beth Cardoza another billable plumbing patch in basement by the stairs---\n03/20/23 10:16 AM Beth Cardoza CO (for additional mobilization if nothing else): \n\n200 n blarney ct We have the door ready to Sheetrock it can’t be hung until after Sheetrock is on also we had to frame in a closet door at small bedroom that needs addition\n01/30/23 1:09 PM Beth Cardoza CO: fireplace. See below---\n01/30/23 1:10 PM Beth Cardoza Also a hidden door to come back to.---\n01/30/23 2:04 PM Beth Cardoza Finish fireplace with tear away by Jose. Give him $100 for that.\n\nFigure diego time to pick up material, shiny 90 , framing screws, etc plus fix framing and hang 3 hours labor. \n Figure 2 pcs shiny 90---\n01/30/23 2:09 PM Beth Cardoza Also radius wall in hallway(radius was already figured I think) and working around tracks---\n01/24/23 9:38 AM Beth Cardoza CO: Work around loose fireplace: Diego and Dave = 4 hours, Jose $50.\nAlso Diego hung a couple other areas yesterday that were something they added?---\n12/22/22 12:10 PM david cardoza Stock 17,964\nSecond stock 1,152\nTotal stock 19,116---\n12/08/22 1:27 PM Beth Cardoza Dave walk through notes 12/7/22\n\n200 No. Blarney Ct. \nnixa, Mo. \n\nWalkout basement house with three car garage at 11 feet over concrete. \n\nCeilings are 2 foot on center. \n\nabout half of the main level is 9 foot flat\n\nThe rest\n09/01/22 5:43 PM Beth Cardoza We are looking right now if all stays on schedule around the First or second week of October for Sheetrock. We are busting through framing.---\n05/20/22 5:19 PM Beth Cardoza Ready approximately October---\n05/19/22 11:12 AM Beth Cardoza If you want to do a bid when you have a chance but no rush.\n\nLight Orange peel walls and ceiling\n\n4 way sheet rock wrap at windows\n\nRound corners\n\n \n\nI will be on vacation from May 20th -28th with limited access to email. I\n05/10/22 1:31 PM Beth Cardoza French73 Custom/Spec in Irish Hills, Nixa---\n05/11/22 11:44 AM Beth Cardoza Waiting on her response about what finish(es) to bid---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2450 - Spec - 200 N Blarney Ct, Nixa - Intrinsic Homes - Maria - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.114Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "96aq953170lv53k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.057Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Trendsetter",
+ "Contact_Notes": "",
+ "Contact_Person": "Kevin Hanson (Estimator) 417-306-5030",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Cheyanne Valley",
+ "Job_Codes": "2449 - Hampton",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hampton - Cheyanne Valley - Trendsetter",
+ "Job_Name": "Hampton",
+ "Job_Number": "2449",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2449 - Hampton",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/01/22 5:14 PM Beth Cardoza Hi Beth,\nThank you for following up. I appreciate the time and effort you put into the Hampton bid. While your quality and professionalism are top notch, we are unable to accept the quote at this time. If you would like to t\n05/06/22 5:09 PM Beth Cardoza Hampton plan has replaced the Venice plan. They are no longer using the Venice plan. These plans are being used both at Cheyanne Valley in Nixa and Birch Pointe in Republic. Kevin is also asking for prices for options for th",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2449 - Hampton - Cheyanne Valley - Trendsetter - Kevin Hanson (Estimator) 417-306-5030 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.264Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8pc8oxcau7qwhdb",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.158Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Laird, Eric",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric (417) 365-4513",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "103 Little Memory Ln, Branson West",
+ "Job_Codes": "2448 - Bsmt ",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bsmt - 103 Little Memory Ln, Branson West - Laird, Eric",
+ "Job_Name": "Bsmt ",
+ "Job_Number": "2448",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2448 - Bsmt ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/27/23 2:37 PM Beth Cardoza Basement ready for drywall now! I don't know if it's changed so need to get a count again.---\n07/13/22 3:20 PM Beth Cardoza Changing things, probably work to do upstairs too, but it'll be a while so he will call back when they are ready and know what they want us to bid. Said to take off our list for now.---\n06/08/22 1:06 PM Kyle Robertson called back , he wants me to follow up wiyh him in 2 months---\n06/08/22 12:34 PM Kyle Robertson followed up june 8th left message---\n05/24/22 11:49 AM Beth Cardoza A few additional notes for this updated quote, after looking at the notes on your previous one:\n\nWill you use screws to attach all drywall? I'd very much prefer screws to nails.\n\nI can supply a trailer for trash\n\nCorners wo\n05/23/22 4:36 PM Beth Cardoza Wants a price just for one room and hall in front of it---\n05/16/22 2:27 PM Beth Cardoza Op knockdown everywhere. about 1/2 8' ceilings and the other 1/2 is 10' ceilings. A little cut up with soffits. Ceilings are 5/8\" drywall---\n05/16/22 2:25 PM Beth Cardoza Kyle board count 4792 (Rick coached on counting)---\n05/16/22 2:25 PM Beth Cardoza Friend of Swain Loftis---\n05/09/22 10:36 AM Beth Cardoza Kyle says: I’m meeting Eric on Thursday---\n05/06/22 4:14 PM Beth Cardoza Eric works from home and available about anytime for quote.\n6/1/22 deadline for quote\n7/1/22 - guestimate when to start, but open \nApproximately 1200 Sqft floor space in basement remodel job. 3 rooms, 3\nclosets, Living room,",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2448 - Bsmt - 103 Little Memory Ln, Branson West - Laird, Eric - Eric (417) 365-4513 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.327Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qd18bpxpvxqr8k1",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.278Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Concept2Completion",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim Schwenke",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6020 W FR Rd 178, Brookline",
+ "Job_Codes": "2447 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 6020 W FR Rd 178, Brookline - Concept2Completion",
+ "Job_Name": "N/A",
+ "Job_Number": "2447",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2447 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/22 3:44 PM Beth Cardoza Try to cut down on cost if we can---\n05/31/22 11:13 AM Beth Cardoza Waiting for Dave to view before finalizing and sending estimate.---\n05/11/22 5:05 PM Beth Cardoza Bid as stomp knock down ceiling and light orange peel all walls.\nHouse is all 9 ft ceiling.\nBreezeway 9ft\nGarage is 10ft ceiling---\n05/06/22 1:08 PM Beth Cardoza Dave put this on the board 6020 W Fr Rd 178 Brookline Mo \n2000 sqft 1 level and 30x36 garage \nMid June \nTim Schwenke \n( concept to completion)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2447 - N/A - 6020 W FR Rd 178, Brookline - Concept2Completion - Tim Schwenke - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.392Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d2z4gkgelmu8flg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.397Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Chaney, Heidi",
+ "Contact_Notes": "",
+ "Contact_Person": "Heidi (417) 234-2737",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "24538 Lawrence 2205, Marionville",
+ "Job_Codes": "2446 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 24538 Lawrence 2205, Marionville - Chaney, Heidi",
+ "Job_Name": "N/A",
+ "Job_Number": "2446",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2446 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/22 9:49 AM Beth Cardoza It [job] is delayed at the moment. Waiting for one more estimate.---\n07/05/22 10:17 AM Beth Cardoza Clarification- we are still waiting on est for siding, not drywall. I have to get that uo before I can proceed with the insulation and drywall.---\n05/05/22 4:43 PM Beth Cardoza Probably stomp knockdown/Orange peel texture (they might like to look at samples.). Square bead, 3 way window wraps. all 9' flat except Great room vaults. They didn't know how high or pitch, but he will try to get a measureme\n05/05/22 4:43 PM Beth Cardoza emailing floor plans---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2446 - N/A - 24538 Lawrence 2205, Marionville - Chaney, Heidi - Heidi (417) 234-2737 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.446Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2hs2o57n24p5ven",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.522Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4052 Joe Bald Rd, Kimberling City",
+ "Job_Codes": "2445 - Modular",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Modular - 4052 Joe Bald Rd, Kimberling City - Krueger, Paul",
+ "Job_Name": "Modular",
+ "Job_Number": "2445",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2445 - Modular",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2445 - Modular - 4052 Joe Bald Rd, Kimberling City - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hw9hf0p36ul5z81",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.642Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schuble, Sue",
+ "Contact_Notes": "",
+ "Contact_Person": "Sue 417-619-3060 Sschuble@hotmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4708 S. FR 137, Spfld",
+ "Job_Codes": "2444 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 4708 S. FR 137, Spfld - Schuble, Sue",
+ "Job_Name": "Repair",
+ "Job_Number": "2444",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2444 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/09/22 1:19 PM Beth Cardoza She wants quote to include re-texturing the whole ceiling. Waiting to find out dimensions so I can edit the quote---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2444 - Repair - 4708 S. FR 137, Spfld - Schuble, Sue - Sue 417-619-3060 Sschuble@hotmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.574Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "hvi36vss2l0llxl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.746Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pickens, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 336-8007 bhstation@suddenlink.net",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "925 Parkview Dr, Hollister",
+ "Job_Codes": "2443 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 925 Parkview Dr, Hollister - Pickens, Steve",
+ "Job_Name": "N/A",
+ "Job_Number": "2443",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2443 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/11/22 8:51 AM david cardoza Hang was 12,728---\n05/03/22 3:49 PM Beth Cardoza 925 Parkview Dr., Hollister, MO\n\nbhstation@suddenlink.net\n\nTwo car garage with an attached shop room. All nearly 10 foot over concrete\n\nSingle level house almost all 9 foot flat except for the main room is double vaulted to a\n05/03/22 3:48 PM Beth Cardoza David Herd reference (his good friend).---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2443 - N/A - 925 Parkview Dr, Hollister - Pickens, Steve - (417) 336-8007 bhstation@suddenlink.net - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.642Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3spofyr3r306m3l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.842Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hostetler Sales and Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Lyndal Hostetler, 417-345-7418, hscoffice@hostetlergroup.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "El Dorado Springs MO",
+ "Job_Codes": "2442 - ACT Suspended Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "ACT Suspended Ceiling - El Dorado Springs MO - Hostetler Sales and Construction",
+ "Job_Name": "ACT Suspended Ceiling",
+ "Job_Number": "2442",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2442 - ACT Suspended Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2442 - ACT Suspended Ceiling - El Dorado Springs MO - Hostetler Sales and Construction - Lyndal Hostetler, 417-345-7418, hscoffice@hostetlergroup.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.723Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o9rh182mf1yv9cq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:03.950Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Elite Retail Services",
+ "Contact_Notes": "",
+ "Contact_Person": "Vivian Tran, 979-285-0712, vtran@elite-construction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3450 S. Stewart Ave., Suite B8, Springfield, MO 65804",
+ "Job_Codes": "2441 - Bath and Body Works #2696 Primrose Marketplace",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bath and Body Works #2696 Primrose Marketplace - 3450 S. Stewart Ave., Suite B8, Springfield, MO 65804 - Elite Retail Services",
+ "Job_Name": "Bath and Body Works #2696 Primrose Marketplace",
+ "Job_Number": "2441",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2441 - Bath and Body Works #2696 Primrose Marketplace",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2441 - Bath and Body Works #2696 Primrose Marketplace - 3450 S. Stewart Ave., Suite B8, Springfield, MO 65804 - Elite Retail Services - Vivian Tran, 979-285-0712, vtran@elite-construction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.792Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "e2hoqy722emx4r0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad Graves, 417-818-1071, bradgnci@outlook.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "401 S. Kimbrough, Springfield, MO",
+ "Job_Codes": "2440 - Supercuts",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Supercuts - 401 S. Kimbrough, Springfield, MO - Nesbitt Construction",
+ "Job_Name": "Supercuts",
+ "Job_Number": "2440",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2440 - Supercuts",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2440 - Supercuts - 401 S. Kimbrough, Springfield, MO - Nesbitt Construction - Brad Graves, 417-818-1071, bradgnci@outlook.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.856Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fgx9xrqjmgqjzni",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.181Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6820 W. Kings Street, Republic, MO 65802",
+ "Job_Codes": "2439 - Everything Kitchen Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Everything Kitchen Addition - 6820 W. Kings Street, Republic, MO 65802 - Rich Kramer Construction",
+ "Job_Name": "Everything Kitchen Addition",
+ "Job_Number": "2439",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2439 - Everything Kitchen Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2439 - Everything Kitchen Addition - 6820 W. Kings Street, Republic, MO 65802 - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.925Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rycarcb305tioe4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.282Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Springfield, MO",
+ "Job_Codes": "2438 - Motor Alley ( Budget Only )",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Motor Alley ( Budget Only ) - Springfield, MO - Rich Kramer Construction",
+ "Job_Name": "Motor Alley ( Budget Only )",
+ "Job_Number": "2438",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2438 - Motor Alley ( Budget Only )",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2438 - Motor Alley ( Budget Only ) - Springfield, MO - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:15.995Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tqggmp5smdk19n6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.418Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kids Inn Child Care Center",
+ "Contact_Notes": "",
+ "Contact_Person": "Christina Ford, 708-860-3927, cawhit3@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1511 East Lark St., Springfield, MO 65804",
+ "Job_Codes": "2437 - Kids Inn T&M",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kids Inn T&M - 1511 East Lark St., Springfield, MO 65804 - Kids Inn Child Care Center",
+ "Job_Name": "Kids Inn T&M",
+ "Job_Number": "2437",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2437 - Kids Inn T&M",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2437 - Kids Inn T&M - 1511 East Lark St., Springfield, MO 65804 - Kids Inn Child Care Center - Christina Ford, 708-860-3927, cawhit3@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.063Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "38yysagecvlg8bt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.538Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty(417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6500 W Twelve Oaks Ln, Willard",
+ "Job_Codes": "2436 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 6500 W Twelve Oaks Ln, Willard - Essick, Dusty",
+ "Job_Name": "Patch",
+ "Job_Number": "2436",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2436 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2436 - Patch - 6500 W Twelve Oaks Ln, Willard - Essick, Dusty - Dusty(417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.122Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "52lgh11bv1yy7mm",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.682Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Speaker, Rick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick (417) 693-1806 rick_speaker@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5884 N FR 171, Spfld",
+ "Job_Codes": "2435 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5884 N FR 171, Spfld - Speaker, Rick",
+ "Job_Name": "N/A",
+ "Job_Number": "2435",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2435 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/25/22 1:30 PM Beth Cardoza No response. Kyle tried to reach several times---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2435 - N/A - 5884 N FR 171, Spfld - Speaker, Rick - Rick (417) 693-1806 rick_speaker@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.166Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "h7t7rvt9bhwvr36",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.802Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Speaker, Rick",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick (417) 693-1806 rick_speaker@yahoo.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3378 E Hailie St, Republic",
+ "Job_Codes": "2434 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 3378 E Hailie St, Republic - Speaker, Rick",
+ "Job_Name": "N/A",
+ "Job_Number": "2434",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2434 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/22 9:47 AM Beth Cardoza No response---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2434 - N/A - 3378 E Hailie St, Republic - Speaker, Rick - Rick (417) 693-1806 rick_speaker@yahoo.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.235Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "aghebhkkwf8lu7h",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:04.898Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ragain, Mike",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike (417) 551-3712",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3708 N 12th St, Ozark",
+ "Job_Codes": "2433 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 3708 N 12th St, Ozark - Ragain, Mike",
+ "Job_Name": "Repair",
+ "Job_Number": "2433",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2433 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/16/22 2:38 PM Beth Cardoza 14' peak. 10 linear ft? cracking along at vault walls---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2433 - Repair - 3708 N 12th St, Ozark - Ragain, Mike - Mike (417) 551-3712 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.304Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t4sy1a2mrdpwefw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.022Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Heritage Construction Company, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob VanOmmeren, 417-443-4333, heritageconstruction@hotmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4102 North 20th Street, Ozark, MO, USA",
+ "Job_Codes": "2432 - New Shell Building TAB Investments",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "New Shell Building TAB Investments - 4102 North 20th Street, Ozark, MO, USA - Heritage Construction Company, Inc.",
+ "Job_Name": "New Shell Building TAB Investments",
+ "Job_Number": "2432",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2432 - New Shell Building TAB Investments",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2432 - New Shell Building TAB Investments - 4102 North 20th Street, Ozark, MO, USA - Heritage Construction Company, Inc. - Bob VanOmmeren, 417-443-4333, heritageconstruction@hotmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.362Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r8mnzplsfp0lggu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.138Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Kim",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim (417) 848-2979",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6304 S. Weatherwood Trl, Spfld",
+ "Job_Codes": "2431 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 6304 S. Weatherwood Trl, Spfld - Bateman, Kim",
+ "Job_Name": "Cracks",
+ "Job_Number": "2431",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2431 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/29/22 5:35 PM Beth Cardoza In Rivercut---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2431 - Cracks - 6304 S. Weatherwood Trl, Spfld - Bateman, Kim - Kim (417) 848-2979 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.422Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9rj5v254m2gbiw5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.246Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "101 Silver Oak Way, Reeds Spring",
+ "Job_Codes": "2430 - Stiff",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Stiff - 101 Silver Oak Way, Reeds Spring - Ozark Mountain Homes",
+ "Job_Name": "Stiff",
+ "Job_Number": "2430",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2430 - Stiff",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---12/04/23 2:36 PM Beth Cardoza for the record, we are re-doing repairs right now because we messed them up when we did them last month. Mrs Stiff tried to contact us direct through the website but we are in communication with our client, OMH.---\n08/31/23 5:52 PM Beth Cardoza There's a wall they want for wall paper so we have to sand texture off of it. Dave's best guess is 2 hours. They want a bill... if it hasn't been completed by Tuesday, probably should just make a 2 hour change order.---\n07/12/23 7:06 AM david cardoza Stock main 11,312\nStock Basement 6,584\nTotal Stock \nLeftover 368\nHang 17,688---\n07/19/23 4:10 PM Beth Cardoza Basement stock was only 6584 sqft according to the bill. also there was 5 sheets from FBM for some reason---\n07/19/23 4:13 PM Beth Cardoza REFIGURED HANG TOTAL: 17,688---\n07/03/23 4:10 PM Beth Cardoza CO?: have to hand pack drywall to basement $250 or $300 charge---\n06/13/23 9:07 AM Beth Cardoza Possible COs: Don’t hang fireplace \nThere is a cold wall in garage \nMechanical room area, under stairs etc no drywall. \nSquare bead\nNo window wraps---\n05/15/23 3:47 PM Beth Cardoza Dave walkthrough notes 5/15/23 \nSilver oak Way Reed Spring, Missouri\n\nThree car garage currently over course gravel very uneven. I assume it will be poured before we start.\n\nThis house has a walkout basement level.\n\nThe kitch\n05/15/23 3:46 PM Beth Cardoza Possible CO: Master bedroom pops up to 12' and both the bedroom and hall between bedroom and bathroom have a soffit/shelf thing all around. This was not detailed in the plans (it did say \"ceiling detail, see owner\"). Also the\n02/14/23 5:36 PM Beth Cardoza Figuring this job to start in March---\n06/20/22 5:09 PM Beth Cardoza New, smaller plans to do take off on---\n04/29/22 1:46 PM Beth Cardoza new ICF house to estimate. I think the details are on the plan. We would like standard textures and 3 way window wrap. This house is located in Stonebridge. This could be ready for drywall in 3 months---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2430 - Stiff - 101 Silver Oak Way, Reeds Spring - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.474Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "01f4hrok78gqb8a",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Buttram, Kyle",
+ "Contact_Notes": "",
+ "Contact_Person": "Kyle (501) 920-5861 kbuttram3@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1049 W Stonehill Rd, Ozark",
+ "Job_Codes": "2429 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 1049 W Stonehill Rd, Ozark - Buttram, Kyle",
+ "Job_Name": "Remodel",
+ "Job_Number": "2429",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2429 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/03/22 12:02 PM Beth Cardoza Dave posted videos on Voxer. Waiting on detailed written info include footages to create an estimate.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2429 - Remodel - 1049 W Stonehill Rd, Ozark - Buttram, Kyle - Kyle (501) 920-5861 kbuttram3@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.543Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "flmvhghbm598kxt",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.474Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McCurry, Sherry",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 827-8601",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4976 Stone Hollow Ln, Rogersville",
+ "Job_Codes": "2428 - Finish",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Finish - 4976 Stone Hollow Ln, Rogersville - McCurry, Sherry",
+ "Job_Name": "Finish",
+ "Job_Number": "2428",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2428 - Finish",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2428 - Finish - 4976 Stone Hollow Ln, Rogersville - McCurry, Sherry - (417) 827-8601 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.591Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bb875qtxjft3ffh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.581Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cash, Tara",
+ "Contact_Notes": "",
+ "Contact_Person": "Tara",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "6820 E FR 132, Spfld",
+ "Job_Codes": "2427 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 6820 E FR 132, Spfld - Cash, Tara",
+ "Job_Name": "Repair",
+ "Job_Number": "2427",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2427 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2427 - Repair - 6820 E FR 132, Spfld - Cash, Tara - Tara - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.660Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7lotk4m166iw2cf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.694Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RLKC",
+ "Contact_Notes": "",
+ "Contact_Person": "Rick Cardoza",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "41 Falling Rock, Elkland",
+ "Job_Codes": "2426 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 41 Falling Rock, Elkland - RLKC",
+ "Job_Name": "Patches",
+ "Job_Number": "2426",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2426 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/26/22 3:08 PM Beth Cardoza Drywall repairs: approx 6-8 sheets of drywall, maybe 15 patches and some hand texture---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2426 - Patches - 41 Falling Rock, Elkland - RLKC - Rick Cardoza - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.730Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8ipdhyf25zbq0wo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.838Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug 417-840-5759",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "7385 E Cinnabar Ln, Strafford",
+ "Job_Codes": "2425 - Effinger",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Effinger - 7385 E Cinnabar Ln, Strafford - Pitts, Doug",
+ "Job_Name": "Effinger",
+ "Job_Number": "2425",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2425 - Effinger",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---01/29/24 10:13 AM Beth Cardoza CO?: repairs---\n02/02/24 12:40 PM Beth Cardoza Warranty per Dave---\n08/14/23 7:56 AM david cardoza Original coldwall stock---\n\nMain Stock 23,584\n+Additional stock of 1/4\" and MR board=1,640\n\nLeftover from coldwall stock 432\n\nTotal stock including leftover from coldwall 25,656\n\nFinal leftover 1,240\n\nFootage to Angel\n25,656\n08/04/23 11:50 AM david cardoza This house will require about 260 feet of tear away bead.\n Also, all the beams are now installed and they have one coat of stain and from my understanding they will not get a sealer coat at least not before we start so it\n08/09/23 2:37 PM Beth Cardoza We may want to consider a CO for \"pre-masking\" finished beams. We do have masking figured, but they have to be masked extra well and before hang and may even need to be checked/fixed again before tape. So depending on how we \n08/04/23 11:36 AM david cardoza 9-12’ leftover from cold wall stock---\n07/17/23 12:00 PM Beth Cardoza CO?: 440' of beams instead of the 278 we had figured. not sure if we can charge more for that since we just updated last month after Dave's walkthrough. (he didn't report anything about beams. Maybe they weren't installed y\n06/19/23 4:21 PM Beth Cardoza Gate code 0711---\n06/13/23 10:44 AM Beth Cardoza Possible COs per Dave walkthrough: \n-Barrell ceilings are 15' high instead of 14' high. -Bedroom 1 was vaulted to 12' instead of pop up (main issue is more xcrack)\n-Told to hang stairway in garage not shown on plans\n\nA coupl\n06/13/23 10:39 AM Beth Cardoza Dave walkthrough notes 6/13\nFour car garage at 10 1/2 feet high over concrete. \n\nSingle level house. Probably about 25% of it is 10 foot flat. \n\nLarge kitchen dining area is 12 foot flat \n\nMan cave room with a sharp radius c\n06/08/23 2:39 PM Beth Cardoza Dave. \n\nWe are starting rough in at effinger on 125\n\nEffinger\n7385 E Cinnabar Lane\nStrafford, Mo\n\nGate code 3273\n\nShould be ready in about 5 to 6 weeks. \n\nWe will need cold wall pre hung. It’s ready.\nDoug pitts---\n06/08/23 6:42 AM Beth Cardoza Wants to know ballpark price change for doing 5/8” on ceiling---\n04/27/22 3:01 PM Beth Cardoza All walls light orange peel\n\nSquare corners\n\nNo window wraps\n\nYes on barrel vaults and they will be framed out. No detail drawings. Assume 14’ to top of barrel.---\n04/26/22 2:20 PM Beth Cardoza Sent out an email asking for details on finishes and window wraps and also asking if barrel ceilings get drywall/if we should bid framing them out.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2425 - Effinger - 7385 E Cinnabar Ln, Strafford - Pitts, Doug - Doug 417-840-5759 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.795Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9q1x5vmqxjs1zr4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:05.962Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Whiting-Turner Contracting Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Matthew Moore, 417-353-1948, matthew.moore@whiting-turner.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "530 N. Booneville Avenue, Springfield, MO 65806",
+ "Job_Codes": "2424 - Jordan Valley Innovation Center - Building 6",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Jordan Valley Innovation Center - Building 6 - 530 N. Booneville Avenue, Springfield, MO 65806 - Whiting-Turner Contracting Company",
+ "Job_Name": "Jordan Valley Innovation Center - Building 6",
+ "Job_Number": "2424",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2424 - Jordan Valley Innovation Center - Building 6",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2424 - Jordan Valley Innovation Center - Building 6 - 530 N. Booneville Avenue, Springfield, MO 65806 - Whiting-Turner Contracting Company - Matthew Moore, 417-353-1948, matthew.moore@whiting-turner.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.853Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ua46kp6nutabi42",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.098Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey Pyle Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey, 417-887-6177, matt@bpbuilder.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "616 E. Madison St., Suite #120, Springfield, MO 65806",
+ "Job_Codes": "2423 - Catrina's Mexican Restaurant Infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Catrina's Mexican Restaurant Infill - 616 E. Madison St., Suite #120, Springfield, MO 65806 - Bailey Pyle Builders",
+ "Job_Name": "Catrina's Mexican Restaurant Infill",
+ "Job_Number": "2423",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2423 - Catrina's Mexican Restaurant Infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2423 - Catrina's Mexican Restaurant Infill - 616 E. Madison St., Suite #120, Springfield, MO 65806 - Bailey Pyle Builders - Matt Bailey, 417-887-6177, matt@bpbuilder.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.921Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t16amlmtd24s30z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.226Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Horizon",
+ "Contact_Notes": "",
+ "Contact_Person": "Chuck (417) 294-3480",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "84 Forrest Dr, Galena",
+ "Job_Codes": "2422 - Drop Ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Drop Ceiling - 84 Forrest Dr, Galena - Horizon",
+ "Job_Name": "Drop Ceiling",
+ "Job_Number": "2422",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2422 - Drop Ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/14/22 9:41 AM Beth Cardoza CO? move furniture---\n06/15/22 5:59 PM Beth Cardoza Clay thinks it took him about an extra 4 hours.---\n06/17/22 6:22 PM Beth Cardoza Apparently he had talked to Rick about furniture being there and he replied to the estimate mentioning that as well so that it was in writing that there would be furniture to work around. So can't bill for it.---\n06/06/22 3:16 PM Michael Lawson Spoke with Chuck on 5/23 about ceiling install. He said then that he was roughly 1-1/2 to 2 weeks out from being ready. I called back today and got a voicemail box that was full. Text him to ask if he was ready.---\n04/25/22 11:46 AM Beth Cardoza Basement ceiling. Was already a drop ceiling. It was torn out to do some re-wiring and stuff. To drop 3 1/2\". Kind of tile unknown/yet to be decided. Call to arrange to view. Chuck plans to be there the next couple of days s",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2422 - Drop Ceiling - 84 Forrest Dr, Galena - Horizon - Chuck (417) 294-3480 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:16.965Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v1d53czzyvt8kcx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "King, Brad",
+ "Contact_Notes": "",
+ "Contact_Person": "Brad (417) 849-9817",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1352 S Wilder Trail, Republic",
+ "Job_Codes": "2421 - St Jude",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "St Jude - 1352 S Wilder Trail, Republic - King, Brad",
+ "Job_Name": "St Jude",
+ "Job_Number": "2421",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2421 - St Jude",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/17/22 4:00 PM david cardoza First stock 14,760.\nSecond stock 1,422.\nTotal stock 16,182.\nLeftover 112.\nHang 16,070 \n(note: still areas that need to be hung when builder finalizes corrections.)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2421 - St Jude - 1352 S Wilder Trail, Republic - King, Brad - Brad (417) 849-9817 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.023Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6q50qd3ka3wpfyu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.478Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Caliber 1 Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Scott Eubanks, 770-456-9660, seubanks@caliber1construction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2817 N. Kansas Expressway, Springfield, MO",
+ "Job_Codes": "2420 - Starbucks - Springfield, MO",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Starbucks - Springfield, MO - 2817 N. Kansas Expressway, Springfield, MO - Caliber 1 Construction",
+ "Job_Name": "Starbucks - Springfield, MO",
+ "Job_Number": "2420",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2420 - Starbucks - Springfield, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2420 - Starbucks - Springfield, MO - 2817 N. Kansas Expressway, Springfield, MO - Caliber 1 Construction - Scott Eubanks, 770-456-9660, seubanks@caliber1construction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.088Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mwuik4y07el6adc",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.582Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Wellington Pkwy, Kirbyville",
+ "Job_Codes": "2419 - Mejia",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mejia - Wellington Pkwy, Kirbyville - Ozark Mountain Homes",
+ "Job_Name": "Mejia",
+ "Job_Number": "2419",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2419 - Mejia",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/20/22 10:46 AM Beth Cardoza I believe the ceilings are flat. Standard finish with 3 way window wrap. I would figure 9’ just to be safe on the walls.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2419 - Mejia - Wellington Pkwy, Kirbyville - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.157Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k44qajnlrda7lm0",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.706Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Martinez, Henry",
+ "Contact_Notes": "",
+ "Contact_Person": "Henry (970) 568-6366",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "15417 West State Highway 76, Ava 65608",
+ "Job_Codes": "2418 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 15417 West State Highway 76, Ava 65608 - Martinez, Henry",
+ "Job_Name": "N/A",
+ "Job_Number": "2418",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2418 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/05/22 10:15 AM Missie Bechard Per meeting with Dave:\nRusso doing finish next Monday---\n04/28/22 4:40 PM Missie Bechard Per meeting with Dave:\nhang is done, finish to be done next Tuesday---\n04/20/22 5:25 PM Beth Cardoza He called to give measurements and talk about schedule. Sounds like he's good with moving forward! So I went ahead and asked Kerry to schedule and got an estimate ready to go out as soon as approved. Will be fully stocked as \n04/20/22 2:40 PM Beth Cardoza Gave him a 9-10K verbal price and asked if that was in his range before we create an exact estimate.---\n04/20/22 4:35 PM Beth Cardoza For reference in case I create a quote Dad was thinking .19 hang/ .21 tape---\n04/19/22 12:28 PM Beth Cardoza Drywall partially hung in half of house. Needs hung, tape and texture.\n2500 sq ft\nFlat ceilings 10 and 12ft heigh.\nSpray texture---\n04/19/22 12:12 PM Beth Cardoza About an hour away from the office. My guess is you'll want to use google maps and NOT iphone maps.---\n04/19/22 12:12 PM Beth Cardoza Job has been partially hung in half the house (see photos in job folder), needs finish hang, tape and texture asap. Mud provided by owner.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2418 - N/A - 15417 West State Highway 76, Ava 65608 - Martinez, Henry - Henry (970) 568-6366 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.222Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vbo2fgh9adawh6w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.837Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bateman, Ronnie",
+ "Contact_Notes": "",
+ "Contact_Person": "Ronnie",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "106 Elm View Drive, Ozark",
+ "Job_Codes": "2417 - Bathroom remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bathroom remodel - 106 Elm View Drive, Ozark - Bateman, Ronnie",
+ "Job_Name": "Bathroom remodel",
+ "Job_Number": "2417",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2417 - Bathroom remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2417 - Bathroom remodel - 106 Elm View Drive, Ozark - Bateman, Ronnie - Ronnie - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.291Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o8jxugln89c2c8i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:06.949Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Castellano, Alex",
+ "Contact_Notes": "",
+ "Contact_Person": "Alex (female) 414-503-1614",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "130 Royal Vista Unit 601",
+ "Job_Codes": "2416 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 130 Royal Vista Unit 601 - Castellano, Alex",
+ "Job_Name": "Patches",
+ "Job_Number": "2416",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2416 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2416 - Patches - 130 Royal Vista Unit 601 - Castellano, Alex - Alex (female) 414-503-1614 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.355Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7op1wp92pyyc5yn",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.053Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2417 Cedar Brooke, Spfld",
+ "Job_Codes": "2415 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 2417 Cedar Brooke, Spfld - McMillin, Allen",
+ "Job_Name": "N/A",
+ "Job_Number": "2415",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2415 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/05/22 10:16 AM Missie Bechard Per meeting with Dave:\nwork is being done---\n04/22/22 2:13 PM Beth Cardoza Job #2415 McMillen 2417 Cedarbrooke Springfied\n\nSingle level ranch style 2 bedroom house maybe 1800 sq ft in Southern Hills\n\nIts plaster on top of ⅜” drywall. About an inch thick.\n\nThis house is mostly smooth walls and ceilin\n04/21/22 6:17 PM Beth Cardoza Dave has videos in voxer chat. Waiting for measurements/patch counts, etc.---\n04/18/22 11:24 AM Beth Cardoza He wants Dave to go look at this one.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2415 - N/A - 2417 Cedar Brooke, Spfld - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.424Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fwvrzhhlxji7q5m",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.178Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Federal Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Estimating Department, 417-862-0622, estimating@federalconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3145 E. Pythian St., Spfld, MO",
+ "Job_Codes": "2414 - Ryan Lawn and Tree - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ryan Lawn and Tree - Garage - 3145 E. Pythian St., Spfld, MO - Federal Construction",
+ "Job_Name": "Ryan Lawn and Tree - Garage",
+ "Job_Number": "2414",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2414 - Ryan Lawn and Tree - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2414 - Ryan Lawn and Tree - Garage - 3145 E. Pythian St., Spfld, MO - Federal Construction - Estimating Department, 417-862-0622, estimating@federalconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.482Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "59ybxcnalcf162p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.298Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "J.E. Foster Building Company",
+ "Contact_Notes": "",
+ "Contact_Person": "Joshua Foster, 314-842-3300, jfoster@jefoster.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3628 S. Campbell Ave., Springfield, MO 65807",
+ "Job_Codes": "2413 - Starbucks Campbell & Cowden Major Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Starbucks Campbell & Cowden Major Renovation - 3628 S. Campbell Ave., Springfield, MO 65807 - J.E. Foster Building Company",
+ "Job_Name": "Starbucks Campbell & Cowden Major Renovation",
+ "Job_Number": "2413",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2413 - Starbucks Campbell & Cowden Major Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2413 - Starbucks Campbell & Cowden Major Renovation - 3628 S. Campbell Ave., Springfield, MO 65807 - J.E. Foster Building Company - Joshua Foster, 314-842-3300, jfoster@jefoster.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.551Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dvsvt03ycpvce4i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.402Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Base Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody Ritter, 417-351-2380, cody@base-cm.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4103 S. National Ave, Spfld, MO 65807",
+ "Job_Codes": "2412 - Bibi Office Complex",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Bibi Office Complex - 4103 S. National Ave, Spfld, MO 65807 - Base Construction",
+ "Job_Name": "Bibi Office Complex",
+ "Job_Number": "2412",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2412 - Bibi Office Complex",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2412 - Bibi Office Complex - 4103 S. National Ave, Spfld, MO 65807 - Base Construction - Cody Ritter, 417-351-2380, cody@base-cm.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.605Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qrmyo1s5xzqy391",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.518Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "C3",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason 417-844-7094",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "253 Nebraska Dr, Ozark",
+ "Job_Codes": "2411 - Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office - 253 Nebraska Dr, Ozark - C3",
+ "Job_Name": "Office",
+ "Job_Number": "2411",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2411 - Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/18/22 3:06 PM Beth Cardoza Estimate sent---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2411 - Office - 253 Nebraska Dr, Ozark - C3 - Jason 417-844-7094 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.684Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5lmw9k1vb3pltxv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.634Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hansen Company Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Lee Hollatz, 515-270-1117, leeh@hansencompany.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "412 Mill Street, Rogersville, MO ",
+ "Job_Codes": "2410 - Kum & Go 2403 Rogersville",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202024%2F2410%20Kum%20%26%20Go%202403%20Rogersville%20%28412%20Mill%20Street%2C%20Rogersville%2C%20MO%20%29%20%28Hansen%20Company%20Inc%2E%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Kum & Go 2403 Rogersville - 412 Mill Street, Rogersville, MO - Hansen Company Inc.",
+ "Job_Name": "Kum & Go 2403 Rogersville",
+ "Job_Number": "2410",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2410 - Kum & Go 2403 Rogersville",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/29/22 11:46 AM Heidi Mahan Code: 2403---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2410 - Kum & Go 2403 Rogersville - 412 Mill Street, Rogersville, MO - Hansen Company Inc. - Lee Hollatz, 515-270-1117, leeh@hansencompany.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.754Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nwjb9467z00xwli",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.762Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Feemster, Courtney",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 894-7458, ceseverson42@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4520 N Lanier Ln, Spfld",
+ "Job_Codes": "2409 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 4520 N Lanier Ln, Spfld - Feemster, Courtney",
+ "Job_Name": "Addition",
+ "Job_Number": "2409",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2409 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/20/22 5:27 PM Beth Cardoza Probably going with their regular contractor, but we did send an estimate anyway.---\n04/11/22 4:34 PM Beth Cardoza an addition being done on their house in north Springfield. Approximately 14x35. Kyle to look at. Spelling of the name uncertain---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2409 - Addition - 4520 N Lanier Ln, Spfld - Feemster, Courtney - (417) 894-7458, ceseverson42@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.803Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7p0ypis8752vjgs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:07.890Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construct",
+ "Contact_Notes": "",
+ "Contact_Person": "Johanna 417 298-4455",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Nixa",
+ "Job_Codes": "2408 - Addotta",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addotta - Nixa - Construct",
+ "Job_Name": "Addotta",
+ "Job_Number": "2408",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2408 - Addotta",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/15/22 11:44 AM Beth Cardoza Not happening---\n04/21/22 10:20 AM Beth Cardoza I accidentally missed the deadline! Johanna says today will be fine though!---\n04/11/22 10:16 AM Beth Cardoza Needing numbers back by April 18th, basement is unfinished. Needing numbers for a level 4 finish, additional cost for level 5 listed separately, and additional cost for 5/8” drywall listed separately. Time frame to start is\n04/11/22 10:25 AM Beth Cardoza I would plan for windows to be wrapped and square corners since it’s a farm house style.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2408 - Addotta - Nixa - Construct - Johanna 417 298-4455 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.872Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u0ce3j8vjw11y9g",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.018Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Masterpiece",
+ "Contact_Notes": "",
+ "Contact_Person": "Tom Caruso",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "51 Tall Tree Rd, Blue Eye",
+ "Job_Codes": "2407 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 51 Tall Tree Rd, Blue Eye - Masterpiece",
+ "Job_Name": "N/A",
+ "Job_Number": "2407",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2407 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/18/22 9:54 AM Beth Cardoza May need to charge extra for 5/8\" board on ceilings---\n05/17/22 4:27 PM david cardoza Stock 16,628\nSecond stock1,080.\nTotal stock 17,708\nLeftover 216\nHang 17,492---\n05/05/22 10:16 AM Missie Bechard Per meeting with Dave:\nstock on 5/13 maybe---\n04/11/22 4:21 PM Beth Cardoza I threw something together, but they might send plans so I might re-do it. Also, they are usually unit price, but we did supply board last time... but with board prices changing anytime now and it being unit price, I don't kn\n04/11/22 9:47 AM Beth Cardoza Ready in a month. Dave viewing today hopefully.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2407 - N/A - 51 Tall Tree Rd, Blue Eye - Masterpiece - Tom Caruso - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.930Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qmbq1kkyxnb2rjw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.125Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2406 - Cole",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cole - - Ozark Mountain Homes",
+ "Job_Name": "Cole",
+ "Job_Number": "2406",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2406 - Cole",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/08/22 2:02 PM Beth Cardoza Let’s figure 18 feet walls in main area, 9 foot lower and 8 foot upper. Standard texture with 3 way window wraps and all square corners. Vaulted garage 7:12 pitch from the 18 foot exterior wall height. This house doesn’t have",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2406 - Cole - - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:17.995Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u80tkfvfqv9lnwg",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.233Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2930E Linwood, Spfld",
+ "Job_Codes": "2405 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 2930E Linwood, Spfld - McMillin, Allen",
+ "Job_Name": "Patches",
+ "Job_Number": "2405",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2405 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2405 - Patches - 2930E Linwood, Spfld - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.052Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "srzrv9pcl3ym98t",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.354Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Wood, Kim",
+ "Contact_Notes": "",
+ "Contact_Person": "Kim (417) 224-7416",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3810 E Cherry, House #18, Spfld",
+ "Job_Codes": "2404 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 3810 E Cherry, House #18, Spfld - Wood, Kim",
+ "Job_Name": "Patches",
+ "Job_Number": "2404",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2404 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/08/22 2:02 PM Beth Cardoza Kyle to view---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2404 - Patches - 3810 E Cherry, House #18, Spfld - Wood, Kim - Kim (417) 224-7416 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.106Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qu6peotlm81gly9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.489Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Discher, Edward",
+ "Contact_Notes": "",
+ "Contact_Person": "Ed 863-535-7704",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Fordland",
+ "Job_Codes": "2403 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - Fordland - Discher, Edward",
+ "Job_Name": "Addition",
+ "Job_Number": "2403",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2403 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/21/24 2:12 PM Beth Cardoza Assumed not awarded---\n04/06/22 3:34 PM Beth Cardoza See plans in planswift Job #1978---\n04/06/22 3:26 PM Beth Cardoza Adding on to house we did work on last Fall. Hang, finish and hand texture (smooth plaster with holes. They are calling Tuscan style. Eddie did it last time and they liked how it turned out). It is the Office, mudroom, 1/2 ba",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2403 - Addition - Fordland - Discher, Edward - Ed 863-535-7704 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.166Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3uyeaik3lysx33p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.597Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "812 Lillian Drive, Strafford, MO",
+ "Job_Codes": "2402 - Lot 10 Lillian Drive",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lot 10 Lillian Drive - 812 Lillian Drive, Strafford, MO - Rich Kramer Construction",
+ "Job_Name": "Lot 10 Lillian Drive",
+ "Job_Number": "2402",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2402 - Lot 10 Lillian Drive",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2402 - Lot 10 Lillian Drive - 812 Lillian Drive, Strafford, MO - Rich Kramer Construction - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.234Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iesvpezelibrnr9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.705Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco Enterprises, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "RaeLei Farmer, 417-451-5250, rfarmer@branco.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3020 S. Lone Pine Ave., Spfld, MO",
+ "Job_Codes": "2401 - Lone Pine Lift Station Retrofit",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lone Pine Lift Station Retrofit - 3020 S. Lone Pine Ave., Spfld, MO - Branco Enterprises, Inc.",
+ "Job_Name": "Lone Pine Lift Station Retrofit",
+ "Job_Number": "2401",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2401 - Lone Pine Lift Station Retrofit",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2401 - Lone Pine Lift Station Retrofit - 3020 S. Lone Pine Ave., Spfld, MO - Branco Enterprises, Inc. - RaeLei Farmer, 417-451-5250, rfarmer@branco.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.282Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r6g5bqv0qo8zkpl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.826Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Max Alley Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Lee anne Small, ls@maxalleyllc.com, 903-223-8000",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "211 W. Battlefield Rd, Spfld, MO",
+ "Job_Codes": "2400 - GX9 - Battlefield",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "GX9 - Battlefield - 211 W. Battlefield Rd, Spfld, MO - Max Alley Construction",
+ "Job_Name": "GX9 - Battlefield",
+ "Job_Number": "2400",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2400 - GX9 - Battlefield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2400 - GX9 - Battlefield - 211 W. Battlefield Rd, Spfld, MO - Max Alley Construction - Lee anne Small, ls@maxalleyllc.com, 903-223-8000 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.341Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5thw76qngg7b65p",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:08.942Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Friga Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Eric Friga, 417-887-7134, efriga@sbcglobal.net",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2706 W. Chestnut Expwy, Spfld, MO",
+ "Job_Codes": "2399 - My Mover Moving and Storage Building Infill Springfield, MO",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "My Mover Moving and Storage Building Infill Springfield, MO - 2706 W. Chestnut Expwy, Spfld, MO - Friga Construction",
+ "Job_Name": "My Mover Moving and Storage Building Infill Springfield, MO",
+ "Job_Number": "2399",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2399 - My Mover Moving and Storage Building Infill Springfield, MO",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2399 - My Mover Moving and Storage Building Infill Springfield, MO - 2706 W. Chestnut Expwy, Spfld, MO - Friga Construction - Eric Friga, 417-887-7134, efriga@sbcglobal.net - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.385Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "tuhjofujnvuklco",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.078Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Nesbitt Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Joe Jackson, 417-830-6726, estimator@nesbittconstruction.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3167 E. Sunshine St., Springfield, MO",
+ "Job_Codes": "2398 - Baron Restaurant/Office",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Baron Restaurant/Office - 3167 E. Sunshine St., Springfield, MO - Nesbitt Construction",
+ "Job_Name": "Baron Restaurant/Office",
+ "Job_Number": "2398",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2398 - Baron Restaurant/Office",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2398 - Baron Restaurant/Office - 3167 E. Sunshine St., Springfield, MO - Nesbitt Construction - Joe Jackson, 417-830-6726, estimator@nesbittconstruction.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.443Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jx6wpirbyak75gv",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.189Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Commerce Bank",
+ "Contact_Notes": "",
+ "Contact_Person": "Trenton Blair, 417-826-4033, Trenton.Blair@commercebank.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1345 E. Battlefield Rd., Springfield MO",
+ "Job_Codes": "2397 - Office Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Office Remodel - 1345 E. Battlefield Rd., Springfield MO - Commerce Bank",
+ "Job_Name": "Office Remodel",
+ "Job_Number": "2397",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2397 - Office Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/12/22 10:08 PM Kyle Robertson awarded start date set for 18th---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2397 - Office Remodel - 1345 E. Battlefield Rd., Springfield MO - Commerce Bank - Trenton Blair, 417-826-4033, Trenton.Blair@commercebank.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.501Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vwxzq0412iae2ce",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.298Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ramsey, James",
+ "Contact_Notes": "",
+ "Contact_Person": "James",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "520 W Bell St, Spfld",
+ "Job_Codes": "2396 - Step thru",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Step thru - 520 W Bell St, Spfld - Ramsey, James",
+ "Job_Name": "Step thru",
+ "Job_Number": "2396",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2396 - Step thru",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/05/22 1:57 PM Michael Lawson Ended up doing it outside or Cardoza Construction.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2396 - Step thru - 520 W Bell St, Spfld - Ramsey, James - James - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.555Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ovpyzo745yl4uin",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.410Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "VanDyne, Phil",
+ "Contact_Notes": "",
+ "Contact_Person": "Phil",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Logfellow Dr, Ozark",
+ "Job_Codes": "2395 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - Logfellow Dr, Ozark - VanDyne, Phil",
+ "Job_Name": "Repairs",
+ "Job_Number": "2395",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2395 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2395 - Repairs - Logfellow Dr, Ozark - VanDyne, Phil - Phil - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.624Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lke9sgt735qylyi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.518Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Custom Homes by Stew Mea",
+ "Contact_Notes": "",
+ "Contact_Person": "Angie Stewart (417) 343-7257 or Chris Stewart (417) 719-8240",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Meadowview, Saddlebrooke",
+ "Job_Codes": "2394 - Lot 19",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lot 19 - Meadowview, Saddlebrooke - Custom Homes by Stew Mea",
+ "Job_Name": "Lot 19",
+ "Job_Number": "2394",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2394 - Lot 19",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/29/22 3:14 PM Beth Cardoza Quote was too high for them---\n04/04/22 11:21 AM Beth Cardoza - When do you expect this project might be ready for drywall? Approximately July 2022\n - What finish(es) would you like? \nI think it’s called light knockdown for walls and tree bark for ceilings. \n04/01/22 2:27 PM Beth Cardoza waiting on response about finishes etc---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2394 - Lot 19 - Meadowview, Saddlebrooke - Custom Homes by Stew Mea - Angie Stewart (417) 343-7257 or Chris Stewart (417) 719-8240 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.692Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "phft1mxjwv1o0n4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.634Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul 417-337-3077",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "134 Twin Rivers Loop, Kim City",
+ "Job_Codes": "2393 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 134 Twin Rivers Loop, Kim City - Krueger, Paul",
+ "Job_Name": "N/A",
+ "Job_Number": "2393",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2393 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/17/22 10:54 AM Beth Cardoza plan to do patches on Monday 11/21---\n11/15/22 12:36 PM Beth Cardoza CO: I also need to schedule a few small patch repairs down at 134 twin Rivers loop when somebody like Eddie who is good with the smooth Wall level 5 stuff\nPaul Kruegar---\n07/06/22 2:47 PM david cardoza Stock 15,518\n1788 leftover ( yes, a lot)\nHang 13,730---\n06/08/22 3:13 PM Beth Cardoza COs: deduct drywall from garage walls and upgrade everything to L5 smooth---\n05/05/22 10:15 AM Missie Bechard Per meeting with Dave:\nOut a couple of weeks---\n04/28/22 4:40 PM Missie Bechard Per meeting with Dave:\nstill not started yet---\n04/21/22 11:54 AM Missie Bechard Per meeting with Dave\nWe might not be doing---\n04/05/22 10:07 AM Beth Cardoza All 9ft except vault over living room that goes up to about 20ft---\n04/01/22 12:47 PM Beth Cardoza Standard OP walls, stomp KD ceiling\n\nNo window wraps\n\nSquare bead\n\nNo drywall on vaulted ceiling (doing box car siding)\n\nYes cold wall in advance---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2393 - N/A - 134 Twin Rivers Loop, Kim City - Krueger, Paul - Paul 417-337-3077 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.751Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vq73z8o13e3poq9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.758Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ava Church",
+ "Contact_Notes": "",
+ "Contact_Person": "Daniel Sims",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ava",
+ "Job_Codes": "2392 - Hang",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Hang - Ava - Ava Church",
+ "Job_Name": "Hang",
+ "Job_Number": "2392",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2392 - Hang",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/05/22 10:15 AM Missie Bechard Per meeting with Dave:\nMoved to Complete (In Progress)---\n04/21/22 11:54 AM Missie Bechard Per meeting with Dave\nMaurico has two more days to hang - they are paying him directly---\n03/31/22 1:55 PM Beth Cardoza I believe Maricio is working for them direct and Rick might be going out there to look at it as a favor---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2392 - Hang - Ava - Ava Church - Daniel Sims - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.864Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "4ic3xb1jd2qiaih",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.881Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construction, Base",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody Ritter, 417-351-2380, cody@base-cm.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1815 E. Seminole St, Spfld, MO",
+ "Job_Codes": "2391 - James Tillman Mercantile Building Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James Tillman Mercantile Building Remodel - 1815 E. Seminole St, Spfld, MO - Construction, Base",
+ "Job_Name": "James Tillman Mercantile Building Remodel",
+ "Job_Number": "2391",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2391 - James Tillman Mercantile Building Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2391 - James Tillman Mercantile Building Remodel - 1815 E. Seminole St, Spfld, MO - Construction, Base - Cody Ritter, 417-351-2380, cody@base-cm.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.933Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d5t87qrybs8ntvu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:09.993Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construction, Base",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody Ritter, 417-351-2380, cody@base-cm.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1827 E. Seminole St, Spfld, MO",
+ "Job_Codes": "2390 - James Tillman Carpet Shoppe Facade Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James Tillman Carpet Shoppe Facade Remodel - 1827 E. Seminole St, Spfld, MO - Construction, Base",
+ "Job_Name": "James Tillman Carpet Shoppe Facade Remodel",
+ "Job_Number": "2390",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2390 - James Tillman Carpet Shoppe Facade Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2390 - James Tillman Carpet Shoppe Facade Remodel - 1827 E. Seminole St, Spfld, MO - Construction, Base - Cody Ritter, 417-351-2380, cody@base-cm.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:18.981Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "09496uyix3luxp2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.134Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construction, Rich Kramer",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth, 417-865-5959, bids@richkramer.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "606 Charles Way, Strafford, MO",
+ "Job_Codes": "2389 - KB4",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "KB4 - 606 Charles Way, Strafford, MO - Construction, Rich Kramer",
+ "Job_Name": "KB4",
+ "Job_Number": "2389",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2389 - KB4",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2389 - KB4 - 606 Charles Way, Strafford, MO - Construction, Rich Kramer - Cheryl Griffeth, 417-865-5959, bids@richkramer.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.044Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7trlbsll386ws99",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.275Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Malenowsky, Trish",
+ "Contact_Notes": "",
+ "Contact_Person": "Trish (417) 872-9373",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3368 N FR 125, Spfld",
+ "Job_Codes": "2388 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 3368 N FR 125, Spfld - Malenowsky, Trish",
+ "Job_Name": "Repairs",
+ "Job_Number": "2388",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2388 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/05/22 4:11 PM Beth Cardoza Not awarded---\n03/29/22 3:55 PM Beth Cardoza New estimate needed---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2388 - Repairs - 3368 N FR 125, Spfld - Malenowsky, Trish - Trish (417) 872-9373 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.115Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "be4z0lfh9ilb2td",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.389Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cornelison, Chet",
+ "Contact_Notes": "",
+ "Contact_Person": "Chet Cornelison, 417-547-3800, chet.cornelison.uuci@statefarm.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "306 E. Jackson, Willard, MO 65781",
+ "Job_Codes": "2387 - Cornelison State Farm",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cornelison State Farm - 306 E. Jackson, Willard, MO 65781 - Cornelison, Chet",
+ "Job_Name": "Cornelison State Farm",
+ "Job_Number": "2387",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2387 - Cornelison State Farm",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2387 - Cornelison State Farm - 306 E. Jackson, Willard, MO 65781 - Cornelison, Chet - Chet Cornelison, 417-547-3800, chet.cornelison.uuci@statefarm.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.162Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "stsjjhxcqn3gx98",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.490Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812 scott Sparkman 417-300-5468",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "640 Cooper Ridge Ln, Nixa",
+ "Job_Codes": "2386 - Cracks",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cracks - 640 Cooper Ridge Ln, Nixa - McMillin, Allen",
+ "Job_Name": "Cracks",
+ "Job_Number": "2386",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2386 - Cracks",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/07/22 8:23 AM Kyle Robertson completed after 2 visits armondo left unfinished the 1st trip butch finished 2nd trip---\n03/31/22 1:42 PM Beth Cardoza Ready to start anytime next week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2386 - Cracks - 640 Cooper Ridge Ln, Nixa - McMillin, Allen - Allen (417) 839-2812 scott Sparkman 417-300-5468 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.232Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qokdekv1h6samuw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.601Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Eat Gather Love",
+ "Contact_Notes": "",
+ "Contact_Person": "Laura Stevens 417-241-2025",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "240 Pedelo Ln Rogersville",
+ "Job_Codes": "2385 - Figueroa",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Figueroa - 240 Pedelo Ln Rogersville - Eat Gather Love",
+ "Job_Name": "Figueroa",
+ "Job_Number": "2385",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2385 - Figueroa",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/22 4:18 PM Beth Cardoza Email with partial info from Laura---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2385 - Figueroa - 240 Pedelo Ln Rogersville - Eat Gather Love - Laura Stevens 417-241-2025 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.300Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "kpy15c752tl96ae",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.718Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen (417) 839-2812",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "State Hwy FF, Spfld",
+ "Job_Codes": "2384 - Green",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Green - State Hwy FF, Spfld - McMillin, Allen",
+ "Job_Name": "Green",
+ "Job_Number": "2384",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2384 - Green",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/28/22 4:12 PM Beth Cardoza No window wraps it will have wood trim.---\n03/24/22 12:26 PM Beth Cardoza He sent it twice about 4 minutes apart. 1st time he wrote: \n\nPlease figure dry wall material and labor light texture on walls, stomp knock down on ceiling, square corners. Nothing in basement. No address yet the job is 2 mil\n03/24/22 12:22 PM Beth Cardoza Please figure labor and materials. Square corners, light orange peel walls, NO ROCK IN BASEMENT. No address yet Job is about 1 mile south of Battlefield on State highway FF. Should be ready in 5 months---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2384 - Green - State Hwy FF, Spfld - McMillin, Allen - Allen (417) 839-2812 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.343Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2xcpc2cbgudjkow",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.837Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Construction one",
+ "Contact_Notes": "",
+ "Contact_Person": "Este Moraleja, 614-961-1114",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1322 E. Battlefield Rd. Springfield, MO 65804",
+ "Job_Codes": "2383 - Chicken salad chick",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Chicken salad chick - 1322 E. Battlefield Rd. Springfield, MO 65804 - Construction one",
+ "Job_Name": "Chicken salad chick",
+ "Job_Number": "2383",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2383 - Chicken salad chick",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/23/22 2:12 PM Pedro Chan Construction one\nEste Moraleja, 614-961-1114\nChicken salad chick.\n1322 E. Battlefield Rd. Springfield, MO 65804\nBid Date 03/30/2022 05:00 PM EST\nThis project calls for the Tenant Build-Out of an existing 3,000 SF Restaurant.\nPr",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2383 - Chicken salad chick - 1322 E. Battlefield Rd. Springfield, MO 65804 - Construction one - Este Moraleja, 614-961-1114 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.435Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "drep6hmq994qwer",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:10.958Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Commercial Builders - GC",
+ "Contact_Notes": "",
+ "Contact_Person": "Jason Schenk, 417-245-2600, jschenk@cb-gc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2425 E. Kearney street, Springfield MO. 65803",
+ "Job_Codes": "2382 - Bass pro shops family health clinic",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F5%20Closed%20Jobs%202025%2F2382%20Bass%20Pro%20Shops%20Family%20Health%20Clinic%20%282425%20E%2E%20Kearney%20St%2C%20Spfld%20MO%2E%2065803%29%20%28Nabholz%20%26%20Comm%2E%20Bldrs%20%2D%20GC%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "Bass pro shops family health clinic - 2425 E. Kearney street, Springfield MO. 65803 - Commercial Builders - GC",
+ "Job_Name": "Bass pro shops family health clinic",
+ "Job_Number": "2382",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2382 - Bass pro shops family health clinic",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/23/22 2:12 PM Pedro Chan Nabholz Construction Corporation\nJarret Sims\n 417-450-6018 \njarrett.sims@nabholz.com\nBass pro shops family health clinic \n2425 E. Kearney street, Springfield MO. 65803\nscope of work includes light guage metal framing, drywall,",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2382 - Bass pro shops family health clinic - 2425 E. Kearney street, Springfield MO. 65803 - Commercial Builders - GC - Jason Schenk, 417-245-2600, jschenk@cb-gc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.504Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "220ig6oho3pvoq2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.065Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Machnicki, Dan",
+ "Contact_Notes": "",
+ "Contact_Person": "Dan (417) 343-8015",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Off Hwy Y, Galena",
+ "Job_Codes": "2381 - Schneider",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Schneider - Off Hwy Y, Galena - Machnicki, Dan",
+ "Job_Name": "Schneider",
+ "Job_Number": "2381",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2381 - Schneider",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/29/22 3:45 PM Beth Cardoza Went with someone else that was substantially cheaper---\n03/23/22 3:25 PM Beth Cardoza Orange peel\n\nDrywall returns on three sides.\n\nWindow base will be wood---\n03/23/22 12:23 PM Beth Cardoza Off hwy y near Branson West. probably 3 months out.---\n03/23/22 12:26 PM Beth Cardoza I'm going to figure 42 minutes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2381 - Schneider - Off Hwy Y, Galena - Machnicki, Dan - Dan (417) 343-8015 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.563Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "w0aeyhxv3n5blj2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.218Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Heritage Associate Reformed Presbyterian church",
+ "Contact_Notes": "",
+ "Contact_Person": "Aaron R.",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4806 E Farm Rd 136, Springfield, MO 65809",
+ "Job_Codes": "2380 - Heritage church patch work",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Heritage church patch work - 4806 E Farm Rd 136, Springfield, MO 65809 - Heritage Associate Reformed Presbyterian church",
+ "Job_Name": "Heritage church patch work",
+ "Job_Number": "2380",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2380 - Heritage church patch work",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/07/22 6:00 PM Kyle Robertson he is ready to start the repairs---\n03/23/22 8:34 AM Pedro Chan Heritage associate reformed presbyterian church \n4806 E Farm Rd 136, Springfield, MO 65809\nHeritage church patch work---",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2380 - Heritage church patch work - 4806 E Farm Rd 136, Springfield, MO 65809 - Heritage Associate Reformed Presbyterian church - Aaron R. - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.621Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1er5ln83v9dbvlz",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.334Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Beinke, Lynn",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 225-8907 lybeinke2@hotmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2565 S York, Spfld",
+ "Job_Codes": "2379 - Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repair - 2565 S York, Spfld - Beinke, Lynn",
+ "Job_Name": "Repair",
+ "Job_Number": "2379",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2379 - Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/12/22 9:18 PM Kyle Robertson she is waiting on another bid will let us know by 4-23-22---\n03/22/22 4:24 PM Beth Cardoza See Voxer for info---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2379 - Repair - 2565 S York, Spfld - Beinke, Lynn - (417) 225-8907 lybeinke2@hotmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.674Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9jl66eb5hgqkdns",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.433Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rookstool, Scott",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 251-5695",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "180 Hampshire Pointe Royale, Branson",
+ "Job_Codes": "2378 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 180 Hampshire Pointe Royale, Branson - Rookstool, Scott",
+ "Job_Name": "Remodel",
+ "Job_Number": "2378",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2378 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/20/22 9:51 AM Beth Cardoza He gave it to Mike Clark, a friend of his---\n04/07/22 11:43 AM Beth Cardoza See Voxer for info---\n03/23/22 6:04 PM Beth Cardoza I put something together with the info I had, but Dave plans to look at it to confirm scope. Just wanted to get on our schedule for April 18th.---\n03/22/22 10:43 AM Beth Cardoza Tim Schwenke's best friend---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2378 - Remodel - 180 Hampshire Pointe Royale, Branson - Rookstool, Scott - (417) 251-5695 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.755Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dykbpn89uwoxtjs",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.554Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "RK Builders, Inc - St. Louis",
+ "Contact_Notes": "",
+ "Contact_Person": "Keith Robertson, 314-223-5570, krobertson@rk-builders.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1441 South Farm Road, Springfield, MO 65807",
+ "Job_Codes": "2377 - American Momin Park",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "American Momin Park - 1441 South Farm Road, Springfield, MO 65807 - RK Builders, Inc - St. Louis",
+ "Job_Name": "American Momin Park",
+ "Job_Number": "2377",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2377 - American Momin Park",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2377 - American Momin Park - 1441 South Farm Road, Springfield, MO 65807 - RK Builders, Inc - St. Louis - Keith Robertson, 314-223-5570, krobertson@rk-builders.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.825Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "imb1phyumperme6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.662Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Reece Commercial",
+ "Contact_Notes": "",
+ "Contact_Person": "Ron Tappen, rontappan@reececommercial.com, 417.880.6996",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1254 E Republic Rd, Springfield, MO 65804",
+ "Job_Codes": "2376 - Fleet Feet",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Fleet Feet - 1254 E Republic Rd, Springfield, MO 65804 - Reece Commercial",
+ "Job_Name": "Fleet Feet",
+ "Job_Number": "2376",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2376 - Fleet Feet",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/22 1:02 PM Kyle Robertson starting tomorrow the 3-25-22 Thomas Sawyer scheduled for 10am. Ron Tappen is notifying the owner---\n03/21/22 2:38 PM Pedro Chan Reece Commercial \nRon Tappen\nrontappan@reececommercial.com\n417.880.6996\nFleet Feet\n1254 E Republic Rd, Springfield, MO 65804\nscope of work include patchwork---",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2376 - Fleet Feet - 1254 E Republic Rd, Springfield, MO 65804 - Reece Commercial - Ron Tappen, rontappan@reececommercial.com, 417.880.6996 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.888Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "i4s6v5ob6wnaga9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.790Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon (417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4441 E Cherry St, Spfld",
+ "Job_Codes": "2375 - Reidy",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Reidy - 4441 E Cherry St, Spfld - Weber, Bryon",
+ "Job_Name": "Reidy",
+ "Job_Number": "2375",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2375 - Reidy",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/22 4:17 PM Beth Cardoza Waiting on more information and may need help reading plans. Ceiling heights are not obvious/difficult to figure out.---\n03/22/22 4:15 PM Beth Cardoza Every bathroom will have a specialty drywall vent. See photos---\n03/22/22 4:25 PM Beth Cardoza Look at page A111 it has them all labeled---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2375 - Reidy - 4441 E Cherry St, Spfld - Weber, Bryon - Bryon (417) 830-2424 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:19.962Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zkb73lvz38ptmwe",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:11.902Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Osage contractors & Northstar Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryan Reed, 816-382-9735, bryan@osagecontractors.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "690 West Mount Vernon Street, Nixa, MO 65714",
+ "Job_Codes": "2374 - Pizza hut ACT/Tbar",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pizza hut ACT/Tbar - 690 West Mount Vernon Street, Nixa, MO 65714 - Osage contractors & Northstar Builders",
+ "Job_Name": "Pizza hut ACT/Tbar",
+ "Job_Number": "2374",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2374 - Pizza hut ACT/Tbar",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/18/22 11:09 AM Pedro Chan Osage contractors \nBryan Reed\n816-382-9735\n bryan@osagecontractors.com\nPizza hut ACT/Tbar\n690 West Mount Vernon Street, Nixa, MO 65714\nBID DATE: 4/6/2022---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2374 - Pizza hut ACT/Tbar - 690 West Mount Vernon Street, Nixa, MO 65714 - Osage contractors & Northstar Builders - Bryan Reed, 816-382-9735, bryan@osagecontractors.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.020Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b8sqppukh8rakpa",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.094Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rick shipman construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Ryan Mcgee, 573-624-5065.",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1320 S. Glenstone Ave",
+ "Job_Codes": "2373 - Walmart- SPRB-R #5693",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Walmart- SPRB-R #5693 - 1320 S. Glenstone Ave - Rick shipman construction",
+ "Job_Name": "Walmart- SPRB-R #5693",
+ "Job_Number": "2373",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2373 - Walmart- SPRB-R #5693",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/17/22 3:45 PM Pedro Chan Renovation of existing walmart---\n03/17/22 3:45 PM Pedro Chan Rick shipman construction \nRyan Mcgee, 573-624-5065.\nWalmart- SPRB-R #5693\n1320 S. Glenstone Ave---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2373 - Walmart- SPRB-R #5693 - 1320 S. Glenstone Ave - Rick shipman construction - Ryan Mcgee, 573-624-5065. - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.079Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "bw4lexefmmh23mk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.213Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon 9417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Crescent Ridge Dr, Spfld",
+ "Job_Codes": "2372 - Thompson",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Thompson - Crescent Ridge Dr, Spfld - Weber, Bryon",
+ "Job_Name": "Thompson",
+ "Job_Number": "2372",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2372 - Thompson",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/22 4:15 PM Beth Cardoza Waiting on Andy to get with me on this---\n03/16/22 6:43 PM Beth Cardoza Smooth wall everywhere, square bead, no window wraps---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2372 - Thompson - Crescent Ridge Dr, Spfld - Weber, Bryon - Bryon 9417) 830-2424 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.133Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mskoxf1r1t35crl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.318Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bakesz, Kay",
+ "Contact_Notes": "",
+ "Contact_Person": "Kay (417) 693-2402",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "776 Mulberry Rd, Highlandville",
+ "Job_Codes": "2371 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 776 Mulberry Rd, Highlandville - Bakesz, Kay",
+ "Job_Name": "Addition",
+ "Job_Number": "2371",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2371 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/07/22 9:19 AM Kyle Robertson david and Clay hung it in 1 day, Armondo is currently there taping and 2 coat---\n03/23/22 4:38 PM Beth Cardoza John McElroy reference---\n03/16/22 5:00 PM Beth Cardoza Added a bedroom to the back of the house. There is a door they cut out into a bathroom to do work around the doorway and also they need a hallway walled off. Needs to be looked at/measured. Smooth finish. Ready now.---\n03/21/22 1:40 PM Beth Cardoza Figure L4 smooth---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2371 - Addition - 776 Mulberry Rd, Highlandville - Bakesz, Kay - Kay (417) 693-2402 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.191Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jdff0hvbevqti2d",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.422Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon 9417) 830-2424",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1735 N Raeley Ln",
+ "Job_Codes": "2370 - Whitlock Garage & Patio",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Whitlock Garage & Patio - 1735 N Raeley Ln - Weber, Bryon",
+ "Job_Name": "Whitlock Garage & Patio",
+ "Job_Number": "2370",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2370 - Whitlock Garage & Patio",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/28/22 1:14 PM Beth Cardoza We are still working on numbers but hope to start soon. I would guess ready for you in late June. \nThe patio is a timber frame exterior porch. No drywall. The dry wall goes in the garage.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2370 - Whitlock Garage & Patio - 1735 N Raeley Ln - Weber, Bryon - Bryon 9417) 830-2424 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.251Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c9kqwh2jufh8jl6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.542Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ozark Mountain Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "David Herd 417-699-1303",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson",
+ "Job_Codes": "2369 - Courtway",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Courtway - Branson - Ozark Mountain Homes",
+ "Job_Name": "Courtway",
+ "Job_Number": "2369",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2369 - Courtway",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/16/22 4:22 PM Beth Cardoza It is 8 foot exterior walls with any treatments marked. Standard textures, square corners, 3 way window wrap. This home is located near the intersection of 376 and 265 just outside of Branson. It will probably be 4-6 month",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2369 - Courtway - Branson - Ozark Mountain Homes - David Herd 417-699-1303 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.321Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2wfhfqt7igqru85",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.653Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace, (417) 429-1417, julie@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "west bypass and west sunshine",
+ "Job_Codes": "2368 - Springfield plaza 3 and infill",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Springfield plaza 3 and infill - west bypass and west sunshine - Ross Construction",
+ "Job_Name": "Springfield plaza 3 and infill",
+ "Job_Number": "2368",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2368 - Springfield plaza 3 and infill",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/17/22 8:46 AM Pedro Chan Ross Construction \nJulie Wallace\n(417) 429-1417\n julie@rosscgllc.com\nSpringfield plaza 3 and infill\nwest bypass and west sunshine---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2368 - Springfield plaza 3 and infill - west bypass and west sunshine - Ross Construction - Julie Wallace, (417) 429-1417, julie@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.384Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fu018gik7yccpxd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.749Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Cox, Chuck",
+ "Contact_Notes": "",
+ "Contact_Person": "(417) 894-0187",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4273 E Sherwood Cir, Spfld",
+ "Job_Codes": "2367 - Repairs",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Repairs - 4273 E Sherwood Cir, Spfld - Cox, Chuck",
+ "Job_Name": "Repairs",
+ "Job_Number": "2367",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2367 - Repairs",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/30/22 9:51 AM Beth Cardoza I have awarded the work to another business. - Chuck---\n03/24/22 4:15 PM Beth Cardoza Waiting on Andy to review/revise---\n03/21/22 1:49 PM Beth Cardoza See voxer for notes---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2367 - Repairs - 4273 E Sherwood Cir, Spfld - Cox, Chuck - (417) 894-0187 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.453Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c4kwzns6z0x921j",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.850Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Petrak, Jane",
+ "Contact_Notes": "",
+ "Contact_Person": "Jane (417) 719-4359 or Mark (417) 380-9111 mapetrak@gmail.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1328 E. Nora St. Springfield 65803",
+ "Job_Codes": "2366 - Popcorn scrape",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Popcorn scrape - 1328 E. Nora St. Springfield 65803 - Petrak, Jane",
+ "Job_Name": "Popcorn scrape",
+ "Job_Number": "2366",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2366 - Popcorn scrape",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/12/22 9:17 PM Kyle Robertson schedule a date. they are a retired couple. any day after 8 am---\n03/15/22 5:22 PM Beth Cardoza Just got a call from Jane Petrak (she and her husband are old friends of Rick & Lori). They need the popcorn ceilings in entryway and bathroom in their home scraped. She isn't sure of the ceiling heights but she did say the t\n03/15/22 5:23 PM Beth Cardoza Maybe Gaylen can paint it.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2366 - Popcorn scrape - 1328 E. Nora St. Springfield 65803 - Petrak, Jane - Jane (417) 719-4359 or Mark (417) 380-9111 mapetrak@gmail.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.517Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "13yhlvngyqjg2ki",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:12.978Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Sorrell, Andrea",
+ "Contact_Notes": "",
+ "Contact_Person": "Andrea 479-655-2103",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2459 S Pembrook",
+ "Job_Codes": "2365 - Outlet Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Outlet Patches - 2459 S Pembrook - Sorrell, Andrea",
+ "Job_Name": "Outlet Patches",
+ "Job_Number": "2365",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2365 - Outlet Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2365 - Outlet Patches - 2459 S Pembrook - Sorrell, Andrea - Andrea 479-655-2103 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.603Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "2v4y6rw34a3j3hq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.086Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Schmude, Dean",
+ "Contact_Notes": "",
+ "Contact_Person": "417-250-0571",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "128 Cottonwood Cir, Branson",
+ "Job_Codes": "2364 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 128 Cottonwood Cir, Branson - Schmude, Dean",
+ "Job_Name": "N/A",
+ "Job_Number": "2364",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2364 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/04/22 11:07 AM Beth Cardoza He never answered my questions and hasn't pursued an estimate from us so I'm assuming he went with someone else---\n03/16/22 2:43 PM Beth Cardoza Branson Missouri. It will be Orange peel texter finish, please review pdf plans and let me know what you think.\n( all exterior walls are insulated concrete forms (icf)---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2364 - N/A - 128 Cottonwood Cir, Branson - Schmude, Dean - 417-250-0571 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.660Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "jgyc2pkp60hfyw6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.202Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Burman Companies",
+ "Contact_Notes": "",
+ "Contact_Person": "Ellen Hensley",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1018 W. Kingsley St.",
+ "Job_Codes": "2363 - Gerber Collision and glass",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Gerber Collision and glass - 1018 W. Kingsley St. - Burman Companies",
+ "Job_Name": "Gerber Collision and glass",
+ "Job_Number": "2363",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2363 - Gerber Collision and glass",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/10/22 1:38 PM Pedro Chan Burman Companies \nLoren Olinger \nGerber Collision and glass\n1018 W. Kingsley St.\nscope of work includes installing Gyp and finishing \nCreation Date 03/10/2022 @ 09:43 AM\nBid Date 04/05/2022 02:00 PM CST\nProject Type New Constr",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2363 - Gerber Collision and glass - 1018 W. Kingsley St. - Burman Companies - Ellen Hensley - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.725Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "oxe0y4z0m1rh2d4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.306Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Osage contractors",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Curd, 816-841-4179, brian@osagecontractors.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2623 North Kansas Expressway",
+ "Job_Codes": "2362 - Pizza hut",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Pizza hut - 2623 North Kansas Expressway - Osage contractors",
+ "Job_Name": "Pizza hut",
+ "Job_Number": "2362",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2362 - Pizza hut",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/09/22 8:12 AM Pedro Chan Pizza Hut - Springfield, MO #4083\n2623 N. Kansas Expwy.\nSpringfield, MO 65803\n\nCreation Date 03/01/2022 @ 10:00 AM\nBid Date 03/16/2022 12:00 PM CST\nThis project calls for the Renovation/Remodel/Repair of an existing Restauran",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2362 - Pizza hut - 2623 North Kansas Expressway - Osage contractors - Brian Curd, 816-841-4179, brian@osagecontractors.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.784Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6id4oswfx2zybqf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace, (417) 429-1417, julie@rosscgllc.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1411 E. Cherry st",
+ "Job_Codes": "2361 - Cherry & Pickwick building D",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Cherry & Pickwick building D - 1411 E. Cherry st - Ross Construction",
+ "Job_Name": "Cherry & Pickwick building D",
+ "Job_Number": "2361",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2361 - Cherry & Pickwick building D",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/22 4:36 PM Pedro Chan Ross Construction \nJulie Wallace\n(417) 429-1417\n julie@rosscgllc.com\nCherry & Pickwick building D\n1411 E. Cherry st\nscope of work includes metal framing, drywall, insulation\nMetal framing to start sept 15th 2022---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2361 - Cherry & Pickwick building D - 1411 E. Cherry st - Ross Construction - Julie Wallace, (417) 429-1417, julie@rosscgllc.com - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.852Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "x75ytsvde3bi9ih",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.531Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Joiner, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "(704) 491-2708",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2360 - Water damage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Water damage - - Joiner, Jason",
+ "Job_Name": "Water damage",
+ "Job_Number": "2360",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2360 - Water damage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/21/22 1:41 PM Beth Cardoza Gave verbal of $1,200-$1,800 and he declined---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2360 - Water damage - - Joiner, Jason - (704) 491-2708 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.912Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nhh1qwdcb8mqyoj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.642Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Essick, Dusty",
+ "Contact_Notes": "",
+ "Contact_Person": "Dusty (417) 860-1127",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Kirbyville",
+ "Job_Codes": "2359 - McBroom",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "McBroom - Kirbyville - Essick, Dusty",
+ "Job_Name": "McBroom",
+ "Job_Number": "2359",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2359 - McBroom",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/10/22 9:17 PM Beth Cardoza Stomp ceiling orange peel walls, bullnose, 4 way window wraps.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2359 - McBroom - Kirbyville - Essick, Dusty - Dusty (417) 860-1127 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:20.980Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rsfy31d0x6417vx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.742Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Commerce Bank",
+ "Contact_Notes": "",
+ "Contact_Person": "Trenton Blair, Trenton.Blair@commercebank.com, 417-626-4033",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Republic Mo at 605 US Hwy 60 East",
+ "Job_Codes": "2358 - Commerce Bank patch work",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Commerce Bank patch work - Republic Mo at 605 US Hwy 60 East - Commerce Bank",
+ "Job_Name": "Commerce Bank patch work",
+ "Job_Number": "2358",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2358 - Commerce Bank patch work",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/10/22 12:03 PM Kyle Robertson I met Butch & Trenton this morning with materials for Butch to complete the job---\n03/09/22 10:41 AM Pedro Chan Trenton is in the process of getting our estimate approved, he has asked we are able to do it. will hopefully have someone scheduled out there for tomorrow morning. Having trouble getting the job to show up on clockshark---\n03/07/22 3:24 PM Pedro Chan Commerce Bank \nTrenton Blair\nTrenton.Blair@commercebank.com\n417-626-4033\nRepublic Mo at 605 US Hwy 60 East\nflood damage, replacing drywall---",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2358 - Commerce Bank patch work - Republic Mo at 605 US Hwy 60 East - Commerce Bank - Trenton Blair, Trenton.Blair@commercebank.com, 417-626-4033 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.034Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6viaj3lg2dsbd5v",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.858Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber home and land",
+ "Contact_Notes": "",
+ "Contact_Person": "Weber home and land, 417-830-9834, bryon@weberhomeandland.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5538 S. FR 181, rogersville,MO 65742",
+ "Job_Codes": "2357 - Larry Oreilly add on",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Larry Oreilly add on - 5538 S. FR 181, rogersville,MO 65742 - Weber home and land",
+ "Job_Name": "Larry Oreilly add on",
+ "Job_Number": "2357",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2357 - Larry Oreilly add on",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/07/22 12:19 PM Pedro Chan 5538 S. FR 181, rogersville,MO 65742---\n03/07/22 12:13 PM Pedro Chan Weber home and land \n417-830-9834\nbryon@weberhomeandland.com\nKitchen add on---",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.830.9834",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2357 - Larry Oreilly add on - 5538 S. FR 181, rogersville,MO 65742 - Weber home and land - Weber home and land, 417-830-9834, bryon@weberhomeandland.com - 417.830.9834",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.119Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z99l5e7k9tw38rr",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:13.974Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Base Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cody Ritter, 417-351-2380, cody@base-cm.com",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "203 E. mount vernon street, Nixa, MO.",
+ "Job_Codes": "2356 - 14 Mill Market",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "14 Mill Market - 203 E. mount vernon street, Nixa, MO. - Base Construction",
+ "Job_Name": "14 Mill Market",
+ "Job_Number": "2356",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2356 - 14 Mill Market",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.351.2180",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2356 - 14 Mill Market - 203 E. mount vernon street, Nixa, MO. - Base Construction - Cody Ritter, 417-351-2380, cody@base-cm.com - 417.351.2180",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.184Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "fz8nzsj0pxcocra",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.090Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Ozark, MO",
+ "Job_Codes": "2355 - Little sunshines playhouse",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Little sunshines playhouse - Ozark, MO - Ross Construction Group",
+ "Job_Name": "Little sunshines playhouse",
+ "Job_Number": "2355",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2355 - Little sunshines playhouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.429.1417",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2355 - Little sunshines playhouse - Ozark, MO - Ross Construction Group - Julie Wallace - 417.429.1417",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.252Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "6qzccstxn0qzxw3",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.222Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fairbairn, Matt",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Spfld",
+ "Job_Codes": "2354 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - Spfld - Fairbairn, Matt",
+ "Job_Name": "Patches",
+ "Job_Number": "2354",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2354 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/22 8:45 PM Kyle Robertson Matt found someone that could do the work the day he called them for an estimate. he said we were to exspensive---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "618.580.0095",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2354 - Patches - Spfld - Fairbairn, Matt - Matt - 618.580.0095",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.322Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "cbjmw48f6f998u2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.322Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Parsley, Tami",
+ "Contact_Notes": "",
+ "Contact_Person": "Tami",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "tparsley@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1398 E Indian Valley Dr.\nOzark",
+ "Job_Codes": "2353 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1398 E Indian Valley Dr.\nOzark - Parsley, Tami",
+ "Job_Name": "Patches",
+ "Job_Number": "2353",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2353 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/23/22 2:34 PM Kyle Robertson Jeremy started the repairs on Monday and finished on Tuesday. followed up with Tami and she is happy with the job.---\n03/08/22 9:17 PM Kyle Robertson left voice and text message.. no response---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.425.2121",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2353 - Patches - 1398 E Indian Valley Dr.\nOzark - Parsley, Tami - Tami - 417.425.2121",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.370Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d5puq2a4gxzw114",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.426Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Glasgow, Vicki",
+ "Contact_Notes": "",
+ "Contact_Person": "Vicki ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Calnvick@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "211 Whispering Ln, Ozark",
+ "Job_Codes": "2352 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 211 Whispering Ln, Ozark - Glasgow, Vicki",
+ "Job_Name": "Patches",
+ "Job_Number": "2352",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2352 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/31/22 8:51 AM Kyle Robertson need someone to go back and fix a spot under the counter and prime a spot on the ceiling---\n03/15/22 4:43 PM Beth Cardoza Awarded. On vacation until 24th so, wanting to get on the schedule for 28th---\n03/08/22 8:48 PM Kyle Robertson followed up no answer .. left voice and text message.. will follow up again---\n03/02/22 5:50 PM Beth Cardoza Client of Dusty Essick. 2 medium sized patches. Random roll and maybe smooth plaster? The ceiling one almost looks like it's just stained... but maybe it's damaged.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.872.7319",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2352 - Patches - 211 Whispering Ln, Ozark - Glasgow, Vicki - Vicki - 417.872.7319",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.435Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gba5lmzx45obcjl",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.538Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Branco",
+ "Contact_Notes": "",
+ "Contact_Person": "RaeLei Farmer",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1720 W. Grand street",
+ "Job_Codes": "2351 - Jordan Valley ASC PH2",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Jordan Valley ASC PH2 - 1720 W. Grand street - Branco",
+ "Job_Name": "Jordan Valley ASC PH2",
+ "Job_Number": "2351",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2351 - Jordan Valley ASC PH2",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2351 - Jordan Valley ASC PH2 - 1720 W. Grand street - Branco - RaeLei Farmer - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.481Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "25fjbm4rmjprv9l",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.642Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cgriffeth@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4420 E. mustard way",
+ "Job_Codes": "2350 - ABEC office addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "ABEC office addition - 4420 E. mustard way - Rich Kramer construction",
+ "Job_Name": "ABEC office addition",
+ "Job_Number": "2350",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2350 - ABEC office addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.865.5959",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2350 - ABEC office addition - 4420 E. mustard way - Rich Kramer construction - Cheryl Griffeth - 417.865.5959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.545Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u62w9jgg293k7q6",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ron Tappen",
+ "Contact_Notes": "",
+ "Contact_Person": "Ron Tappen",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "rontappan@reececommercial.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1250 E. Republic, RD",
+ "Job_Codes": "2349 - Taj Majal Patch and repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Taj Majal Patch and repair - 1250 E. Republic, RD - Ron Tappen",
+ "Job_Name": "Taj Majal Patch and repair",
+ "Job_Number": "2349",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2349 - Taj Majal Patch and repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/22 9:53 PM Kyle Robertson action needed ready to bill---\n03/08/22 9:51 PM Kyle Robertson ready to be billed for drywall patch.---\n03/08/22 9:49 PM Kyle Robertson made drywall repair, talked to ron about the pipe that froze and let him know it shouldnt freeze now that yhe patch is finished. it was a patch out to the awning letting in cold air. he wanted the pipe wrapped but decided w",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.880.6996",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2349 - Taj Majal Patch and repair - 1250 E. Republic, RD - Ron Tappen - Ron Tappen - 417.880.6996",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.611Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8lu4lfbpbjglis2",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.873Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Al Vorst",
+ "Contact_Notes": "",
+ "Contact_Person": "Al Vorst",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "alvorst@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5540 N Farmer Branch Rd, Ozark, MO 65721",
+ "Job_Codes": "2348 - Lawrence Ozark Pharmacy",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lawrence Ozark Pharmacy - 5540 N Farmer Branch Rd, Ozark, MO 65721 - Al Vorst",
+ "Job_Name": "Lawrence Ozark Pharmacy",
+ "Job_Number": "2348",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2348 - Lawrence Ozark Pharmacy",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/28/22 2:25 PM Pedro Chan Someone tried breaking into the pharmacy and tore out a good chunk of a fireplace that needed to be patched.---\n02/28/22 2:24 PM Pedro Chan Al Vorst \n417-299-1235, alvorst@yahoo.com\nLawrence Ozark Pharmacy \n5540 N Farmer Branch Rd, Ozark, MO 65721---",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.299.1235",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2348 - Lawrence Ozark Pharmacy - 5540 N Farmer Branch Rd, Ozark, MO 65721 - Al Vorst - Al Vorst - 417.299.1235",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.674Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "v7b8a4z20qk8sdf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:14.989Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2347 - Duplicate",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Duplicate - - ",
+ "Job_Name": "Duplicate",
+ "Job_Number": "2347",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2347 - Duplicate",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2347 - Duplicate - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.732Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rcrsw07urvuztkf",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.094Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Trendsetter",
+ "Contact_Notes": "",
+ "Contact_Person": "?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1002 E Daisy Falls, Nixa",
+ "Job_Codes": "2346 - SM48",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SM48 - 1002 E Daisy Falls, Nixa - Trendsetter",
+ "Job_Name": "SM48",
+ "Job_Number": "2346",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2346 - SM48",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---05/05/22 10:14 AM Missie Bechard Per meeting with Dave:\nmoved to Complete (In Progress)---\n04/28/22 4:39 PM Missie Bechard Per meeting with Dave:\ntexture being done this week---\n04/21/22 11:53 AM Missie Bechard Per meeting with Dave\nRusso doing finish this week---\n04/13/22 1:40 PM david cardoza Stock 11,935\nLeftover 404.\nHang 11,531---\n04/07/22 4:00 PM Missie Bechard Per meeting with Dave:\nstocks tomorrow---\n03/31/22 1:38 PM Missie Bechard Per meeting with Dave\nNot started yet---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2346 - SM48 - 1002 E Daisy Falls, Nixa - Trendsetter - ? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.803Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "rw26gxet67naw3x",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.198Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Trendsetter",
+ "Contact_Notes": "",
+ "Contact_Person": "?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1021 E Daisy Falls, Nixa",
+ "Job_Codes": "2345 - SM47",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SM47 - 1021 E Daisy Falls, Nixa - Trendsetter",
+ "Job_Name": "SM47",
+ "Job_Number": "2345",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2345 - SM47",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/21/22 11:53 AM Missie Bechard Per meeting with Dave\nWT being done this week---\n04/08/22 8:56 AM Missie Bechard PRICING CORRECTION FOR Mud from FBM - total credit $25.17---\n04/07/22 4:00 PM Missie Bechard Per meeting with Dave:\nFinish starts today---\n04/04/22 12:47 PM david cardoza Stock 11,935\n136 Leftover \nHang 11,799---\n03/31/22 1:37 PM Missie Bechard Per meeting with Dave\nHang is being done today---\n03/24/22 4:32 PM Missie Bechard Per meeting with Dave:\nNot started, hopefully around the 1st of April---\n03/17/22 11:35 AM Missie Bechard Per meeting with Dave\nnot started - stocks tomorrow---\n03/10/22 11:07 AM Missie Bechard Per meeting with Dave\ntwo weeks out---\n03/03/22 8:25 PM Missie Bechard Per meeting with Dave:\nnot started - stocks 3/18---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2345 - SM47 - 1021 E Daisy Falls, Nixa - Trendsetter - ? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.871Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "9ti1r9c89te6t5w",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.306Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Trendsetter",
+ "Contact_Notes": "",
+ "Contact_Person": "?",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1051 E Daisy Falls, Nixa",
+ "Job_Codes": "2344 - SM46",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "SM46 - 1051 E Daisy Falls, Nixa - Trendsetter",
+ "Job_Name": "SM46",
+ "Job_Number": "2344",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2344 - SM46",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/24/22 4:31 PM Missie Bechard Per meeting with Dave:\nTexture being done this week---\n03/22/22 10:24 AM Beth Cardoza Note: open-able windows on front/south side of the house are leaking.---\n03/17/22 11:34 AM Missie Bechard Per meeting with Dave\nfinish happening this week---\n03/15/22 3:48 PM david cardoza Stock 11,935\nLeftover 96\nHang 11,839---\n03/10/22 11:07 AM Missie Bechard Per meeting with Dave\nHanging starting on Saturday---\n03/03/22 8:25 PM Missie Bechard Per meeting with Dave:\nstocks 3/9---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2344 - SM46 - 1051 E Daisy Falls, Nixa - Trendsetter - ? - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:21.924Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "5itla5e5stagzo5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.450Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4914 S Ashford, Spfld",
+ "Job_Codes": "2343 - Addition",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Addition - 4914 S Ashford, Spfld - Krueger, Paul",
+ "Job_Name": "Addition",
+ "Job_Number": "2343",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2343 - Addition",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/29/22 6:08 PM Kyle Robertson Today I cut back the drywall that was in the way of finishing the brick work in the gable and the window. I asked the homeowner if there was anything else that she would like us to do. We are finished. job complete---\n03/23/22 2:32 PM Kyle Robertson after textured needs a repair. ive let scheduling know---\n03/11/22 8:39 AM Beth Cardoza Hanging took twice as long as I would have figured. I'm assuming because not production hangers. The quote is high due to this.---\n03/10/22 12:09 PM Kyle Robertson I asked to have Armando scheduled for Monday to start taping---\n03/10/22 12:08 PM Kyle Robertson Paul Krueger is supplying a trailer by tomorrow for scrap and paper---\n03/10/22 12:07 PM Kyle Robertson After hanging all the board that was delivered. We had to deliver 25 more 10’ 1/2” sheets and hanging should be finished by end of day. Hangers are Chris and Tim Sutter and David Ferrel---\n03/08/22 8:36 AM Missie Bechard Per meeting with Kyle:\nmoved to In Progress(In Progress) and moved Kyle to PM. Starts hanging today.---\n03/04/22 12:21 PM Beth Cardoza There are some questions: wall at one end of vault inset from brick over certain height... that going to get furred out? will it be flush with brick? will it need tear away? Also there will be a lot of places where drywall \n03/04/22 12:24 PM Beth Cardoza Okay, Paul says that area above the brick, they are filling in with brick. No drywall there, just drywall on the studs, flush with brick below and they'll take it from there.---\n03/03/22 12:53 PM Beth Cardoza Bryson sent me this board count: 1,936 sf---\n03/01/22 1:38 PM Beth Cardoza Needs to be looked at and measured---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.337.3077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2343 - Addition - 4914 S Ashford, Spfld - Krueger, Paul - Paul - 417.337.3077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.005Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "t7jc7868l27619i",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.558Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "McMillin, Allen",
+ "Contact_Notes": "",
+ "Contact_Person": "Allen",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5156 N Missouri Oak Trail, Spfld",
+ "Job_Codes": "2342 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 5156 N Missouri Oak Trail, Spfld - McMillin, Allen",
+ "Job_Name": "N/A",
+ "Job_Number": "2342",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2342 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/01/22 1:38 PM Beth Cardoza Plans don't have show ceiling heights. No elevations. Sent email inquiring for more pages---\n03/03/22 5:05 PM Beth Cardoza He's waiting on owner's reply. I started doing takeoff with guesses and can be adjusted when we get the info---\n03/07/22 10:22 PM Beth Cardoza 9' walls and 15' to peak of great room ceiling---\n02/26/22 4:54 PM Beth Cardoza Please figure drywall labor and materials, square corner bead, no window wraps, light orange peel texture on walls, stomp ceiling texture.\nJob address: 5156 N Missouri Oak Trail, Springfield, MO \nJob should be ready in 3 mon",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2342 - N/A - 5156 N Missouri Oak Trail, Spfld - McMillin, Allen - Allen - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.085Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "d8qqvf22o6bkapo",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.694Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church South ",
+ "Contact_Notes": "",
+ "Contact_Person": "Conner Hunt ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "North 19th st Ozark, MO",
+ "Job_Codes": "2341 - ACT/Tbar JRC South ",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "ACT/Tbar JRC South - North 19th st Ozark, MO - James River Church South ",
+ "Job_Name": "ACT/Tbar JRC South ",
+ "Job_Number": "2341",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2341 - ACT/Tbar JRC South ",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/25/22 10:58 AM Pedro Chan James river south \nNorth 19th st Ozark, MO.\nConner Hunt with JE Dunn \ndemo and replace ACT/Tbar in production room at JRC South campus---",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2341 - ACT/Tbar JRC South - North 19th st Ozark, MO - James River Church South - Conner Hunt - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.169Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wtko6kaylopi8yi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.793Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pinnacle Construction, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Brian Erickson",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "briane@pinconstr.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1851 W Marler Lane, Ozark, MO",
+ "Job_Codes": "2340 - Whataburger - Ozark",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Whataburger - Ozark - 1851 W Marler Lane, Ozark, MO - Pinnacle Construction, Inc.",
+ "Job_Name": "Whataburger - Ozark",
+ "Job_Number": "2340",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2340 - Whataburger - Ozark",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "712.527.1385",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2340 - Whataburger - Ozark - 1851 W Marler Lane, Ozark, MO - Pinnacle Construction, Inc. - Brian Erickson - 712.527.1385",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.239Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ptevzto5e80e1ib",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.890Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rick Shipman Construction, Inc.",
+ "Contact_Notes": "",
+ "Contact_Person": "Ryan McGee",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "885 E. US Hwy 60, Monett, MO",
+ "Job_Codes": "2339 - Walmart - Monett, MO Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Walmart - Monett, MO Remodel - 885 E. US Hwy 60, Monett, MO - Rick Shipman Construction, Inc.",
+ "Job_Name": "Walmart - Monett, MO Remodel",
+ "Job_Number": "2339",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2339 - Walmart - Monett, MO Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "573.624.5065",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2339 - Walmart - Monett, MO Remodel - 885 E. US Hwy 60, Monett, MO - Rick Shipman Construction, Inc. - Ryan McGee - 573.624.5065",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.294Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "odthmqryu3x0e11",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:15.994Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace, (417) 1417 x103,",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "826-832 S. Kimbrough St., Springfield, MO",
+ "Job_Codes": "2338 - Sigma Chi Fraternity",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Sigma Chi Fraternity - 826-832 S. Kimbrough St., Springfield, MO - Ross Construction Group",
+ "Job_Name": "Sigma Chi Fraternity",
+ "Job_Number": "2338",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2338 - Sigma Chi Fraternity",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---07/01/22 10:09 AM Michael Lawson Annie, the PM for Ross, responded to my email this morning and said our scope will probably begin in may.---\n06/30/22 1:50 PM Michael Lawson Emailed Julie and asked about a start date.---\n02/28/22 11:01 AM David Kronholm I have verified with Julie from Ross that our scope of work will be batt insulation, drywall, tape and bed, texture, acoustical ceilings, and the wall protection on the 1st floor.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2338 - Sigma Chi Fraternity - 826-832 S. Kimbrough St., Springfield, MO - Ross Construction Group - Julie Wallace, (417) 1417 x103, - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.362Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zuevt8g2wciay64",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.114Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "2337 - Trim",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Trim - - Weber, Bryon",
+ "Job_Name": "Trim",
+ "Job_Number": "2337",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2337 - Trim",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/01/22 1:13 PM Beth Cardoza Waiting for information...---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.830.2424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2337 - Trim - - Weber, Bryon - Bryon - 417.830.2424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.431Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "3u62ppbrdzz5til",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.205Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Weber, Bryon",
+ "Contact_Notes": "",
+ "Contact_Person": "Bryon ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1202 S Mumford, Spfld",
+ "Job_Codes": "2336 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1202 S Mumford, Spfld - Weber, Bryon",
+ "Job_Name": "Patches",
+ "Job_Number": "2336",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2336 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/07/22 4:01 PM Missie Bechard Per meeting with Dave:\nDone - moved to Complete(In Progress)---\n03/31/22 1:37 PM Missie Bechard Per meeting with Dave\nAre we billing the actual cost instead of the estimate?---\n03/24/22 4:31 PM Missie Bechard Per meeting with Dave:\nshould be done next Monday---\n03/17/22 11:34 AM Missie Bechard Per meeting with Dave\nstated this week---\n03/10/22 4:49 PM Beth Cardoza Created a quote based on Jeremy's walkthrough report. Need someone to approve it---\n02/23/22 3:34 PM Beth Cardoza We did a house for Bryon Weber back in 2016 I believe. It was the Ingram‘s. We also did Ingram‘s sons house more recently in Springfield that was a remodel. But the house we did for Ingram Senior was located on 1202 S. Mumfor",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.830.2424",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2336 - Patches - 1202 S Mumford, Spfld - Weber, Bryon - Bryon - 417.830.2424",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.474Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vg5mw9ypchen3yq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.314Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Ross Construction Group",
+ "Contact_Notes": "",
+ "Contact_Person": "Julie Wallace, (417) 1417 x103, ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "julie@rosscgllc.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3055 E. Division",
+ "Job_Codes": "2335 - Council of Churches Phase II",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Council of Churches Phase II - 3055 E. Division - Ross Construction Group",
+ "Job_Name": "Council of Churches Phase II",
+ "Job_Number": "2335",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2335 - Council of Churches Phase II",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---10/25/22 1:21 PM david cardoza Julio Hours:\n\n 10/21 Friday \nJulio 10\nJuan 10\nEloy 10\nLuis 10\nMarco 10\nMaria 10\nSandra 10\n\n10/22 Saturday\nJulio 10\nJuan 10\nEloy 10\nLuis 10\nMarco 10\nMaria 10\nSandra 10\n\n10/24 Monday\nJulio 10---\n09/28/22 8:50 AM david cardoza Angel hours:\n\n Tuesday Sep 27: 32 hrs\n Wednesday Sep 28: 32 hrs\n Thursday Sep 29: 24 hours \n Friday Sep 30: 31 hours\n Saturday Oct 1: 16 hours\nMonday Oct 3: 0 hours\nTuesday Oct 4: 16 hr\nWednesday Oct 5: 32 hr\nThursday Oct 6:\n09/19/22 1:05 PM david cardoza Angels est hang footage through 9/19/22= 7,284 \nAlonso est tape footage beginning 9/19 = 6,800 \nWalter est tape footage =_____ft per DK\n------------------------------------\nMiguel May crew hours:\nThursday Sep 22: \nEdgar-10\nM\n04/29/22 11:46 AM Michael Lawson On hold until concrete is poured. Kevin said he would get in contact with me.---\n04/13/22 2:34 PM Michael Lawson Framing has begun. Jacob said they are having issues with shooting the pins into the concrete, its blowing out. We ordered some nails for the Powers nailer and will try that next. If that doesn't work we will need to use ta\n04/05/22 2:53 PM Michael Lawson Jacob and Manny started laying walls out today and will be there tomorrow as well.\n\nI left Brian a message and asked for a material ETA, still no response. Kevin said permits should be in 4/18 but we could start framing in \n04/01/22 10:00 AM Michael Lawson Did a walk through with Kevin yesterday. He said we can come in next week and layout the walls. Material has been ordered from FBM. He said they do not have permits yet.---\n02/28/22 11:02 AM David Kronholm Pre Bid Walk through on 3/1/2022 @ 10am---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2335 - Council of Churches Phase II - 3055 E. Division - Ross Construction Group - Julie Wallace, (417) 1417 x103, - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.554Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "103n19700d988jx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.430Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "SBI",
+ "Contact_Notes": "",
+ "Contact_Person": "Shannon Rosebrough",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "shannon@springfieldbuilders.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Corner of Kansas & Kearney",
+ "Job_Codes": "2334 - Mister Car Wash",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mister Car Wash - Corner of Kansas & Kearney - SBI",
+ "Job_Name": "Mister Car Wash",
+ "Job_Number": "2334",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2334 - Mister Car Wash",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/28/22 11:04 AM David Kronholm Morelock Builders is due 3/2/2022 @ 11am---\n02/28/22 11:04 AM David Kronholm Pinnacle wants their bid on 3/1/2022 @ 12 pm.---\n02/28/22 11:00 AM David Kronholm We have received bid invites from Morelock Builders and Pinnacle Construction on this project.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.865.6200",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2334 - Mister Car Wash - Corner of Kansas & Kearney - SBI - Shannon Rosebrough - 417.865.6200",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.612Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "u9v3j7uixflre43",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.542Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Intrinsic Homes",
+ "Contact_Notes": "",
+ "Contact_Person": "Maria",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5857 E FR 142",
+ "Job_Codes": "2333 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 5857 E FR 142 - Intrinsic Homes",
+ "Job_Name": "Patch",
+ "Job_Number": "2333",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2333 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/24/22 1:07 PM Missie Bechard Per meeting with Dave:\nthis job is done - priced way to cheap---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2333 - Patch - 5857 E FR 142 - Intrinsic Homes - Maria - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.660Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zax8shbjhqe83gi",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.658Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "EV Construction, John Walsh,",
+ "Contact_Notes": "",
+ "Contact_Person": "John Walsh",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "johnw@ev.construction.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "651 North Booneville Ave., Springfield, MO 65806",
+ "Job_Codes": "2332 - Devon Self Storage - Springfield",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Devon Self Storage - Springfield - 651 North Booneville Ave., Springfield, MO 65806 - EV Construction, John Walsh,",
+ "Job_Name": "Devon Self Storage - Springfield",
+ "Job_Number": "2332",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2332 - Devon Self Storage - Springfield",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "616.328.0926",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2332 - Devon Self Storage - Springfield - 651 North Booneville Ave., Springfield, MO 65806 - EV Construction, John Walsh, - John Walsh - 616.328.0926",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.725Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vjgohnz3bkz3hl9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.768Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Quantum facilities services",
+ "Contact_Notes": "",
+ "Contact_Person": "Amber Taylor. ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "4430A S Campbell Ave Springfield, Missouri 65810",
+ "Job_Codes": "2331 - Einstein Bagels ceiling",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Einstein Bagels ceiling - 4430A S Campbell Ave Springfield, Missouri 65810 - Quantum facilities services",
+ "Job_Name": "Einstein Bagels ceiling",
+ "Job_Number": "2331",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2331 - Einstein Bagels ceiling",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/03/22 8:36 AM Pedro Chan Amber has not responded in 3 days, assumed not awarded for the time being---\n02/21/22 11:53 AM Pedro Chan Quantum facilities services\nAmber Taylor\n941-260-3400 ext 212\nEinstein Bagels ceiling \n4430A S Campbell Ave Springfield, Missouri 65810\nscope of work includes replacing the ACT in the main lobby of the einstein bagels on s cam",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "941.260.3400 #212",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2331 - Einstein Bagels ceiling - 4430A S Campbell Ave Springfield, Missouri 65810 - Quantum facilities services - Amber Taylor. - 941.260.3400 #212",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.784Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "f50d6vat3v3n75e",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.866Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Kitchens, Shelly",
+ "Contact_Notes": "",
+ "Contact_Person": "Shelly garage code 9906",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1906 E Richmond Pl, Spfld",
+ "Job_Codes": "2330 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1906 E Richmond Pl, Spfld - Kitchens, Shelly",
+ "Job_Name": "Patches",
+ "Job_Number": "2330",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2330 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/09/22 9:59 AM Kyle Robertson Met Jeremy this morning and walked it with him.. in progress---\n03/08/22 9:05 PM Kyle Robertson garage code 9906---\n03/08/22 8:32 AM Missie Bechard Per meeting with Kyle:\njob starts tomorrow---\n02/25/22 2:40 PM Kyle Robertson I have all the measurements and pictures will post them to job chat to create the estimate---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "479.910.0614",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2330 - Patches - 1906 E Richmond Pl, Spfld - Kitchens, Shelly - Shelly garage code 9906 - 479.910.0614",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.847Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "pxkplkq643n53hu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:16.965Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Tucker, Melissa",
+ "Contact_Notes": "",
+ "Contact_Person": "Melissa ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1036 Noland Rd, Branson",
+ "Job_Codes": "2329 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 1036 Noland Rd, Branson - Tucker, Melissa",
+ "Job_Name": "N/A",
+ "Job_Number": "2329",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2329 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/23/22 9:50 AM Beth Cardoza She had a few other bids already and we weren't able to look at it and bid it immediately and they are a bit behind schedule so just going with a prior bid at this time.---\n02/18/22 1:57 PM Beth Cardoza She doesn't have any digital plans. Asked Dave to walk so I can give her a unit price. \n2,000 sqft plus a loft and garage. Smooth, 4 way window wraps, square corners. Ready in a week or so, just finishing up some insulating",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.245.0353",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2329 - N/A - 1036 Noland Rd, Branson - Tucker, Melissa - Melissa - 417.245.0353",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.912Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o0ljjmxi802fpdp",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:17.082Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Weston",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Hickory Village, Spfld",
+ "Job_Codes": "2328 - Jason Murray Rental Units",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Jason Murray Rental Units - Hickory Village, Spfld - HC Rogers",
+ "Job_Name": "Jason Murray Rental Units",
+ "Job_Number": "2328",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2328 - Jason Murray Rental Units",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/17/22 5:51 PM Beth Cardoza There are a total of 7 alike units. Can I get a total cost number for one unit? These units are of the Tera Vera / VAP quality of material.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2328 - Jason Murray Rental Units - Hickory Village, Spfld - HC Rogers - Weston - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:22.964Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c9zylw7tlkn4pl5",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:17.214Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Bailey Pyle Builders",
+ "Contact_Notes": "",
+ "Contact_Person": "Matt Bailey",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "matt@bpbuilder.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2100 W. Republic Rd, Suite 108, Springfield, MO 65807",
+ "Job_Codes": "2327 - Orange Theory Fitness",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Orange Theory Fitness - 2100 W. Republic Rd, Suite 108, Springfield, MO 65807 - Bailey Pyle Builders",
+ "Job_Name": "Orange Theory Fitness",
+ "Job_Number": "2327",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2327 - Orange Theory Fitness",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/17/22 3:40 PM David Kronholm Bailey Pyle Builders\nMatt Bailey, 417-887-6177, matt@bpbuilder.com\nOrange Theory Fitness\n2100 W. Republic Rd, Suite 108, Springfield, MO 65807\nTurn left onto US-160 W\n3.7 mi\nContinue onto S Campbell Ave\n387 ft\nTurn left ont",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.887.6177",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2327 - Orange Theory Fitness - 2100 W. Republic Rd, Suite 108, Springfield, MO 65807 - Bailey Pyle Builders - Matt Bailey - 417.887.6177",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.033Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ehprcxto6xhrmra",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:17.321Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "First Baptist Church Ozark",
+ "Contact_Notes": "",
+ "Contact_Person": "Betsy Ellett",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "betsyellett@yahoo.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1400 W. Jackson St, Ozark, MO 65721",
+ "Job_Codes": "2326 - First Baptist Church Ozark Patch and Repair",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "First Baptist Church Ozark Patch and Repair - 1400 W. Jackson St, Ozark, MO 65721 - First Baptist Church Ozark",
+ "Job_Name": "First Baptist Church Ozark Patch and Repair",
+ "Job_Number": "2326",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2326 - First Baptist Church Ozark Patch and Repair",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/17/22 10:54 AM David Kronholm First Baptist Church Ozark\n1400 W. Jackson St, Ozark, MO 65721\nHead east toward N Deffer Dr\n0.0 mi\n\nTurn left onto N Deffer Dr\n0.2 mi\n\nTurn right onto English Village Park\n269 ft\n\nTurn right onto US-160 E/N Massey Blvd\n2.8",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "314.922.7870",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2326 - First Baptist Church Ozark Patch and Repair - 1400 W. Jackson St, Ozark, MO 65721 - First Baptist Church Ozark - Betsy Ellett - 314.922.7870",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.103Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "uq8n1jtrcjw8s3k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:17.494Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Hartwig, Emilie",
+ "Contact_Notes": "",
+ "Contact_Person": "Emilie ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "emilie@gmail.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2054 E Richmond, Spfld",
+ "Job_Codes": "2325 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 2054 E Richmond, Spfld - Hartwig, Emilie",
+ "Job_Name": "Remodel",
+ "Job_Number": "2325",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2325 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/06/22 10:06 AM Beth Cardoza Too high for her at this time---\n03/01/22 12:57 PM Beth Cardoza We are waiting for her to do a couple of things and call Dave back.---\n02/16/22 5:02 PM Beth Cardoza Emilie (417) 860-5859---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.860.5859",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2325 - Remodel - 2054 E Richmond, Spfld - Hartwig, Emilie - Emilie - 417.860.5859",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.173Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "zw06mjodjrx1o5z",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:17.937Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Stanley, Wayne",
+ "Contact_Notes": "",
+ "Contact_Person": "Wayne Stanley ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1933 S Saratoga, Spfld",
+ "Job_Codes": "2324 - Patches",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patches - 1933 S Saratoga, Spfld - Stanley, Wayne",
+ "Job_Name": "Patches",
+ "Job_Number": "2324",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2324 - Patches",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Bidding",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/05/22 4:37 PM Beth Cardoza Haven't been able to reach so I'm archiving---\n03/21/22 1:45 PM Beth Cardoza Not responding to calls lately. Kyle will try again---\n02/25/22 2:40 PM Kyle Robertson I have all the measurements and pictures will post them to job chat to create the estimate---\n02/16/22 4:46 PM Beth Cardoza The other house for Wayne Stanley is ready now. \n\nAddress is \n1933 S. Saratoga \nSpringfield Missouri. \n\nThat is in Southern Hills.\n\nIt has four or five approximately 6“ x 6“ patches. Also has about 200 linear feet of where th",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.234.6481",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2324 - Patches - 1933 S Saratoga, Spfld - Stanley, Wayne - Wayne Stanley - 417.234.6481",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.243Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "89h4xmdx5zrjjq9",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.035Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Stanley, Wayne",
+ "Contact_Notes": "",
+ "Contact_Person": "Wayne Stanley (417) 234-6481 Wayne's customer Mike Endecott 417-365-5504",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2952 Brentmoor Ave, Spfld",
+ "Job_Codes": "2323 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 2952 Brentmoor Ave, Spfld - Stanley, Wayne",
+ "Job_Name": "Patch",
+ "Job_Number": "2323",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2323 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/26/22 9:22 AM Beth Cardoza Heritage construction demoed the wall and also took care of the patches---\n04/12/22 9:15 PM Kyle Robertson waiting on demo of walls will follow up this week---\n02/25/22 2:42 PM Kyle Robertson I have all the measurements and pictures will post them to job chat to create the estimate---\n02/16/22 4:42 PM Beth Cardoza A guy name Wayne Stanley called me. His phone number is 417-234-6481. \n\nWe did some ceiling patchwork for another person that had hired us directly a couple years ago over by Hickory Hills. He thought we did a great job and h",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2323 - Patch - 2952 Brentmoor Ave, Spfld - Stanley, Wayne - Wayne Stanley (417) 234-6481 Wayne's customer Mike Endecott 417-365-5504 - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.302Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0kfs10yvyk4cjg4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.142Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos Chan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cchan@hcrogers.com ",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2002 E Republic Road",
+ "Job_Codes": "2322 - Mr. Electric - Addition & Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Mr. Electric - Addition & Renovation - 2002 E Republic Road - HC Rogers Construction",
+ "Job_Name": "Mr. Electric - Addition & Renovation",
+ "Job_Number": "2322",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2322 - Mr. Electric - Addition & Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/16/22 10:57 AM David Kronholm \"HC Rogers\nMr. Electric Interior Renovation\n2002 E. Republic Road\nSpringfield, MO\n\nTake N Deffer Dr to US-160 W\n1 min (0.3 mi)\nContinue on US-160 W to Wilson C Township\n7 min (3.9 mi)\nTurn left onto US-160 W\n2.8 mi\nTurn le",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.522.3600",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2322 - Mr. Electric - Addition & Renovation - 2002 E Republic Road - HC Rogers Construction - Carlos Chan - 417.522.3600",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.365Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "qw2l6qshvrm3fzx",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.253Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Graef, Sharon",
+ "Contact_Notes": "",
+ "Contact_Person": "Sharon",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Rogersville",
+ "Job_Codes": "2321 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - Rogersville - Graef, Sharon",
+ "Job_Name": "N/A",
+ "Job_Number": "2321",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2321 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/13/25 2:30 PM Beth Cardoza Assume not awarded---\n02/15/22 5:02 PM Beth Cardoza When they get to the framing they will contact us---\n02/15/22 3:23 PM Beth Cardoza Doug Pitts reference. He is her neighbor---\n02/15/22 3:23 PM Beth Cardoza Needing unit price rough bank numbers. Don't have plans back yet or anything. 3,200-3,500 floor sqft house in Rogersville of Hwy D. Main rooms & master 10' ceilings, everything else is 9'. Smooth, 3 way window wraps, bullnose",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.872.7139",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2321 - N/A - Rogersville - Graef, Sharon - Sharon - 417.872.7139",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.435Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1m4k92wohk9ytql",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.358Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Highlandville",
+ "Job_Codes": "2320 - Lauderdale",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Lauderdale - Highlandville - Krueger, Paul",
+ "Job_Name": "Lauderdale",
+ "Job_Number": "2320",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2320 - Lauderdale",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/22 2:26 PM Beth Cardoza Not happening. Apparently they ran out of money and couldn't get their loan approved - Paul---\n02/15/22 3:44 PM Beth Cardoza Highlandville\nNo drywall window wraps---\n02/15/22 3:09 PM Beth Cardoza I'd like an estimate on this to finalize my estimating process ETA May or June. Standard PK finishes light op on walls stomp knockdown ceiling.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.337.3077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2320 - Lauderdale - Highlandville - Krueger, Paul - Paul - 417.337.3077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.494Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "enf2z7p3dtjp5iu",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.465Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Patterson, Derek",
+ "Contact_Notes": "",
+ "Contact_Person": "Derek ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "derek.patterson@sbcglobal.net",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "950 Tall Tree Dr, Blue Eye",
+ "Job_Codes": "2319 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "N/A - 950 Tall Tree Dr, Blue Eye - Patterson, Derek",
+ "Job_Name": "N/A",
+ "Job_Number": "2319",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2319 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/22 3:07 PM Beth Cardoza Thanks for your follow up. We’ve been severely delayed due to weather and all kinds of other issues. We’re just now starting construction. For now I’m going to hold off as I’m having to regroup on my project timeline - Derek\n02/24/22 11:39 AM Beth Cardoza Window package won't arrive till July 1st.---\n02/15/22 1:25 PM Beth Cardoza Note that basement will remain unfinished; no drywall. Only quote first and second floors. Note the loft area and open area looking over rail to below. Will be a vaulted ceiling but flat ceilings in all bedrooms and baths.\n02/15/22 1:34 PM Beth Cardoza Ceilings are 8' flat except vaulted ceiling in living area 8/10 pitch---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "727.204.9193",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2319 - N/A - 950 Tall Tree Dr, Blue Eye - Patterson, Derek - Derek - 727.204.9193",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.563Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "c9dftdb2n629oob",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.578Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lourenco, Steve",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "20 Big Tree Trail, Buffalo",
+ "Job_Codes": "2318 - Wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Wall - 20 Big Tree Trail, Buffalo - Lourenco, Steve",
+ "Job_Name": "Wall",
+ "Job_Number": "2318",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2318 - Wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Archive",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/22 8:32 PM Kyle Robertson bad phone number.. cant follow up with client---\n02/15/22 10:31 AM Beth Cardoza Ready now. Next week okay---\n02/15/22 10:31 AM Beth Cardoza 10' tall wall by 15' with one doorway. Both sides. Match spray knockdown texture. He has the mud (freeman all purpose joint compound) and tape already (his brother works or owns a supply yard).---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.224.3714",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2318 - Wall - 20 Big Tree Trail, Buffalo - Lourenco, Steve - Steve - 417.224.3714",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.621Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "o4kmnjeejccjpie",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.713Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pitts, Doug",
+ "Contact_Notes": "",
+ "Contact_Person": "Doug ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Bayview Trail, Lampe",
+ "Job_Codes": "2317 - Ballard",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Ballard - Bayview Trail, Lampe - Pitts, Doug",
+ "Job_Name": "Ballard",
+ "Job_Number": "2317",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2317 - Ballard",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---08/31/23 12:56 PM Beth Cardoza Decided not to build---\n06/03/22 2:16 PM Beth Cardoza Job is on hold until prices come down - Doug---\n02/15/22 12:05 PM Beth Cardoza Lot 30 Pinnacle Shores, Lampe---\n02/15/22 12:08 PM Beth Cardoza 49 minute drive from the office---\n02/14/22 4:27 PM Beth Cardoza Light orange peel walls w/ stomped knock down ceilings\nNo window wraps\nSquare corners\nNo cold wall\nReady to break ground.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.840.5759",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2317 - Ballard - Bayview Trail, Lampe - Pitts, Doug - Doug - 417.840.5759",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.674Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "lprx0g1vc0zcwjq",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.818Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Home Matters",
+ "Contact_Notes": "",
+ "Contact_Person": "Mike Davis ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "805 W Oak, Ozark",
+ "Job_Codes": "2316 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 805 W Oak, Ozark - Home Matters",
+ "Job_Name": "Remodel",
+ "Job_Number": "2316",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2316 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/22 8:51 PM Kyle Robertson not sure if est, was evrer sent out.. this job was alot of work. i took measurements and pictures. made out a very detailed estimate. need to know the progress on the estimate??---\n03/11/22 3:25 PM Beth Cardoza Shows pending and estimate sent. Never got a response. Probably more than he wanted to pay.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.861.8760",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2316 - Remodel - 805 W Oak, Ozark - Home Matters - Mike Davis - 417.861.8760",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.744Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "dd01w1rq3a50jmw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:18.917Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Conklin, Craig",
+ "Contact_Notes": "",
+ "Contact_Person": "Craig ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "701 S Pickwick, Spfld",
+ "Job_Codes": "2315 - Remodel",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Remodel - 701 S Pickwick, Spfld - Conklin, Craig",
+ "Job_Name": "Remodel",
+ "Job_Number": "2315",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2315 - Remodel",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/04/23 5:04 PM Beth Cardoza Stock 3,536---\n03/28/23 10:50 AM Beth Cardoza Phase 2 Ready April 17th! Basement Job 2315.2---\n08/18/22 8:46 AM david cardoza Hours for finisher ( Walter Ramirez) to date:\n\nTuesday 8/16: 6\nWednesday 8/17: Estimated 8\nThursday 8/18: Estimated 8\nWednesday 8/24: 10 hrs\nThursday 8/25: pending\n---------------------------\nFinishing Main Floor ( Jose):\nWe\n08/16/22 3:38 PM david cardoza Total hours to hang upstairs is 26 @ $30/ hr\n-------\nHang main floor: 12 hours---\n07/27/22 3:19 PM Beth Cardoza I am figuring this job will be T&M unless I'm informed otherwise.---\n07/20/22 4:53 PM Beth Cardoza Showing stock end of next week on calendar---\n07/20/22 4:50 PM Beth Cardoza From July 7th: Thanks for the heads up, we should be ready at Pickwick the 20th or the 21st\nCraig Conklin---\n06/13/22 4:45 PM Beth Cardoza May 12th update from Dave: probably another month at least. 2 phases: main floor and upstairs. and then like in the Fall the basement. only like 900 ft on each floor. A lot of things going on with it. Still doing more things.\n02/14/22 11:33 AM Beth Cardoza Ready in about 1 month. Will be gutted. Not tying into lath and plaster or anything. Old remodel though so probably will be issues.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.225.2419",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2315 - Remodel - 701 S Pickwick, Spfld - Conklin, Craig - Craig - 417.225.2419",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.813Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ou33f0be8klwb2f",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.025Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Krueger, Paul",
+ "Contact_Notes": "",
+ "Contact_Person": "Paul ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "127 The Bluffs Bldg 34 Unit 5, Branson",
+ "Job_Codes": "2314 - Kitchen",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kitchen - 127 The Bluffs Bldg 34 Unit 5, Branson - Krueger, Paul",
+ "Job_Name": "Kitchen",
+ "Job_Number": "2314",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2314 - Kitchen",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.337.3077",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2314 - Kitchen - 127 The Bluffs Bldg 34 Unit 5, Branson - Krueger, Paul - Paul - 417.337.3077",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.881Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "gc2dx6lirtozu2k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.142Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos Chan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cchan@hcrogers.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3738 E Woodhue Ln, Springfield, MO 65809, USA",
+ "Job_Codes": "2313 - HH 59",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "HH 59 - 3738 E Woodhue Ln, Springfield, MO 65809, USA - HC Rogers",
+ "Job_Name": "HH 59",
+ "Job_Number": "2313",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2313 - HH 59",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.522.3600",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2313 - HH 59 - 3738 E Woodhue Ln, Springfield, MO 65809, USA - HC Rogers - Carlos Chan - 417.522.3600",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:23.952Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7qm4008xgswe7ob",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.258Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers Construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Carlos Chan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cchan@hcrogers.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "SE Corner of W. Spring Dr. & N. 25th Street, Ozark, MO",
+ "Job_Codes": "2312 - River Ranch Clubhouse",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "River Ranch Clubhouse - SE Corner of W. Spring Dr. & N. 25th Street, Ozark, MO - HC Rogers Construction",
+ "Job_Name": "River Ranch Clubhouse",
+ "Job_Number": "2312",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2312 - River Ranch Clubhouse",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---11/29/22 10:52 AM Heidi Mahan GATE CODE: \n4223---\n08/17/22 11:54 AM Michael Lawson Vincente hung the gyp last week and went back to finish up two rooms on Monday that the scaffolding for the masons were blocking access to. Tori scrapped out yesterday. He wants to hold off on the finish until storefronts \n04/01/22 9:17 AM Michael Lawson DK sent an email to Bryson yesterday asking for submittals. HCR requested them.---\n02/14/22 11:38 AM David Kronholm H.C. Rogers\nCarlos Chan\n5517 N. Farmer Branch Road #115\nOzark, MO 65721\n417-522-3600\ncchan@hcrogers.com\n\nTurn right onto English Village Park\n269 ft\n\nContinue straight onto N State Hwy CC\n Pass by Pizza Hut (on the right)",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.522.3600",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2312 - River Ranch Clubhouse - SE Corner of W. Spring Dr. & N. 25th Street, Ozark, MO - HC Rogers Construction - Carlos Chan - 417.522.3600",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.005Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "nladxrqs30zvk3k",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.370Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Michael Dempsey ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3810 Hutchenson",
+ "Job_Codes": "2311 - HH88",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "HH88 - 3810 Hutchenson - HC Rogers",
+ "Job_Name": "HH88",
+ "Job_Number": "2311",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2311 - HH88",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/03/22 8:24 PM Missie Bechard Per meeting with Dave:\nthis job is done - will do EVA again next week to go over final costs---\n02/24/22 1:06 PM Missie Bechard Per meeting with Dave:\nFinish was done this week---\n02/24/22 6:16 AM david cardoza Stock 10,324.\nNo leftover.---\n02/17/22 10:11 AM Missie Bechard Per meeting with Dave\nhanging today---\n02/15/22 9:16 AM Beth Cardoza I was informed that all the electrical wiring was stripped out of this house so it will now be delayed for us to hang. I don’t have a new schedule. Waiting on Cade to let me know.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.402.7893",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2311 - HH88 - 3810 Hutchenson - HC Rogers - Michael Dempsey - 417.402.7893",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.075Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "mrcjsbaja80cnjh",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.485Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Pavlov, Aleksa",
+ "Contact_Notes": "",
+ "Contact_Person": "Aleksa Pavlov",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "5827 State Highway 125, Rogersville, MO",
+ "Job_Codes": "2310 - Aleksa Pavlov Office Renovation",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Aleksa Pavlov Office Renovation - 5827 State Highway 125, Rogersville, MO - Pavlov, Aleksa",
+ "Job_Name": "Aleksa Pavlov Office Renovation",
+ "Job_Number": "2310",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2310 - Aleksa Pavlov Office Renovation",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/14/22 11:39 AM David Kronholm Aleksa Pavlova Office Renovation\n5827 State Highway 125, Rogersville, MO\nTake N Deffer Dr to US-160 W\n1 min (0.3 mi)\n\nContinue on US-160 W. Take W Farm Rd 192 to E River Oaks Ln in Cherokee Township\n5 min (2.9 mi)\n\nContinu",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.861.6909",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2310 - Aleksa Pavlov Office Renovation - 5827 State Highway 125, Rogersville, MO - Pavlov, Aleksa - Aleksa Pavlov - 417.861.6909",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.133Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "0fqa4ui4qigtv7q",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.594Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Lovett, Bob",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Humansville",
+ "Job_Codes": "2309 - Kirby",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Kirby - Humansville - Lovett, Bob",
+ "Job_Name": "Kirby",
+ "Job_Number": "2309",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2309 - Kirby",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/16/22 1:58 PM Beth Cardoza Bob didn't get the job---\n02/09/22 6:04 PM Beth Cardoza drywall material and labor. Will be a medium knock down on the wall with a stomp ceiling. It will be west of Humansville about 5 miles I think it is and I'm sure the windows won't wrap---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.327.6300",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2309 - Kirby - Humansville - Lovett, Bob - Bob - 417.327.6300",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.203Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "z4f871mamrdlqaw",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.698Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Solar Solutions",
+ "Contact_Notes": "",
+ "Contact_Person": "Tim/ Homeowner Tom Zobus",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "217 Mayden Lane, Branson",
+ "Job_Codes": "2308 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 217 Mayden Lane, Branson - Solar Solutions",
+ "Job_Name": "Patch",
+ "Job_Number": "2308",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2308 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/08/22 8:53 PM Kyle Robertson someone stepped through the ceiling... we patched it and sent the bill to solar solutions---\n02/15/22 8:50 AM Missie Bechard Per meeting with Kyle:\nOn the schedule for this week---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.209.8635/417.386.1105",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2308 - Patch - 217 Mayden Lane, Branson - Solar Solutions - Tim/ Homeowner Tom Zobus - 417.209.8635/417.386.1105",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.262Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "wgm80du1phyg3vj",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.806Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Total Highspeed",
+ "Contact_Notes": "",
+ "Contact_Person": "Tara Morgan",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "West, 1091 Kathryn St, Nixa, MO 65714",
+ "Job_Codes": "2307 - Total highspeed",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Total highspeed - West, 1091 Kathryn St, Nixa, MO 65714 - Total Highspeed",
+ "Job_Name": "Total highspeed",
+ "Job_Number": "2307",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2307 - Total highspeed",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.637.6757",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2307 - Total highspeed - West, 1091 Kathryn St, Nixa, MO 65714 - Total Highspeed - Tara Morgan - 417.637.6757",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.315Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "r7e1n4p442gcgkd",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:19.926Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "James River Church North Campus",
+ "Contact_Notes": "",
+ "Contact_Person": "Bob horman",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "Bob.horman@jamesriver.church",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "3225 N Farm Rd 123, Springfield, MO 65803",
+ "Job_Codes": "2306 - James River North wall",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "James River North wall - 3225 N Farm Rd 123, Springfield, MO 65803 - James River Church North Campus",
+ "Job_Name": "James River North wall",
+ "Job_Number": "2306",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2306 - James River North wall",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/09/22 3:12 PM Pedro Chan James River Church North Campus \nBob horman, 417-612-1061, Bob.horman@jamesriver.church\nJames River North wall \n3225 N Farm Rd 123, Springfield, MO 65803\nscope of work is to build a 9x10 wall including framing, drywall, insulat",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.612.1061",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2306 - James River North wall - 3225 N Farm Rd 123, Springfield, MO 65803 - James River Church North Campus - Bob horman - 417.612.1061",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.384Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "8jzqamhfmrwpi2n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.030Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Rich Kramer construction",
+ "Contact_Notes": "",
+ "Contact_Person": "Cheryl Griffeth. ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "cgriffeth@richkramer.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "2835 North Oak Grove Avenue, Springfield, MO 65803,",
+ "Job_Codes": "2305 - Merieux Building",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Merieux Building - 2835 North Oak Grove Avenue, Springfield, MO 65803, - Rich Kramer construction",
+ "Job_Name": "Merieux Building",
+ "Job_Number": "2305",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2305 - Merieux Building",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.865.5959",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2305 - Merieux Building - 2835 North Oak Grove Avenue, Springfield, MO 65803, - Rich Kramer construction - Cheryl Griffeth. - 417.865.5959",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.454Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "q656o8hhmz4qohk",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.122Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "HC Rogers",
+ "Contact_Notes": "",
+ "Contact_Person": "Cade Rogers",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "crogers@hcrogers.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Pedro Chan",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Branson Hills Parkway, Taney County, MO. 65616",
+ "Job_Codes": "2304 - The Social Birdy",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "The Social Birdy - Branson Hills Parkway, Taney County, MO. 65616 - HC Rogers",
+ "Job_Name": "The Social Birdy",
+ "Job_Number": "2304",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2304 - The Social Birdy",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Pedro Chan",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.872.422",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2304 - The Social Birdy - Branson Hills Parkway, Taney County, MO. 65616 - HC Rogers - Cade Rogers - 417.872.422",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.512Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "vy7id0lrqju5j5b",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.238Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Royal Rangers international, Steve Shultz",
+ "Contact_Notes": "",
+ "Contact_Person": "Steve Shultz",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "sschultzrr@yahoo.com, sschultz@rri.world",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "David Kronholm",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "1644 Lloyd st, Ozark MO.",
+ "Job_Codes": "2303 - Royal Rangers International",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Royal Rangers International - 1644 Lloyd st, Ozark MO. - Royal Rangers international, Steve Shultz",
+ "Job_Name": "Royal Rangers International",
+ "Job_Number": "2303",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2303 - Royal Rangers International",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---04/11/22 9:55 AM Kyle Robertson Plans have been emailed to David. he is working on the estimate.---\n02/08/22 1:21 PM Pedro Chan Royal Rangers international, Steve Shultz \n417-379-5520. \n1644 Lloyd st, Ozark MO.\nJob still needs electrical and some plumbing before they are ready for us. They also have 85 sheets of 12' board for the job.---",
+ "Office_Rep": "David Kronholm",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.379.5520",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2303 - Royal Rangers International - 1644 Lloyd st, Ozark MO. - Royal Rangers international, Steve Shultz - Steve Shultz - 417.379.5520",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.565Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "ipn231irk4287ay",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.350Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Galle, Andy",
+ "Contact_Notes": "",
+ "Contact_Person": "Andy",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Forest Trails, Spfld",
+ "Job_Codes": "2302 - N/A",
+ "Job_Division": "",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F2302%20%20%28Forest%20Trails%2C%20Spfld%29%20%28Galle%2C%20Andy%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Forest Trails, Spfld - Galle, Andy",
+ "Job_Name": "N/A",
+ "Job_Number": "2302",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2302 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Not Awarded",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---06/27/25 3:29 PM Beth Cardoza If it comes back it'll be like a new job at this point.---\n06/16/22 1:54 PM Beth Cardoza Absolutely [will be awarded] but all my bids came in extremely high and at this point I’m going to wait to start until materials come back down. I will let you know when I decide to start this build. \n\nAndy Galle\na1j7g@hot\n02/09/22 9:46 AM Beth Cardoza Orange peel walls\nSwirl texture or tree bark texture \nSquare corners\nWindows will be trimmed on inside.---\n02/09/22 3:03 PM Beth Cardoza Disregard swirl, just bid tree bark/scrape texture---\n02/08/22 12:52 PM Beth Cardoza In Forest Trails subdivision between Sunshine and Division just East of Hwy 65---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.619.0141",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2302 - N/A - Forest Trails, Spfld - Galle, Andy - Andy - 417.619.0141",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.635Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "7y28wl40s9f6e78",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.478Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Evans, Don",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "144 Canyon Rd, Rogersville",
+ "Job_Codes": "2301 - Garage",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Garage - 144 Canyon Rd, Rogersville - Evans, Don",
+ "Job_Name": "Garage",
+ "Job_Number": "2301",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2301 - Garage",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---03/03/22 8:23 PM Missie Bechard Per meeting with Dave:\nthis job is done - moved to Complete (In Progress)---\n02/24/22 1:06 PM Missie Bechard Per meeting with Dave:\nFinished this week---\n02/14/22 6:50 AM david cardoza Stock 2,016.\nNo leftover.---\n02/10/22 3:07 PM Missie Bechard Per meeting with Dave\nhanging Saturday---\n02/08/22 4:06 PM Beth Cardoza **No email. Doesn't get texts. Dave gave verbal. I asked Dave to get a billing address also.---\n02/08/22 11:33 AM Beth Cardoza Ready now. 20x30 building with a room roughly 18x7. All 8' ceilings. Going to be used as a garage. Not going to be insulated or anything. Marvin's painter. We supply drywall.---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.209.4401",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2301 - Garage - 144 Canyon Rd, Rogersville - Evans, Don - - 417.209.4401",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.715Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "b8ex3z883y0te37",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.586Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Drake, Patrick",
+ "Contact_Notes": "",
+ "Contact_Person": "Patrick ",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "Beth Cardoza",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "853 W Sole Dr, Nixa",
+ "Job_Codes": "2300 - Patch",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Patch - 853 W Sole Dr, Nixa - Drake, Patrick",
+ "Job_Name": "Patch",
+ "Job_Number": "2300",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "2300 - Patch",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "---02/16/22 7:33 PM Kyle Robertson Butch repaired the patch Monday the 14th . Patrick has paid I. Full---\n02/15/22 8:51 AM Missie Bechard Per meeting with Kyle:\nJob is done and paid for. Moved to Complete In Progress in Smartsheet---\n02/08/22 4:04 PM Beth Cardoza Doorknob hole---",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "417.437.0292",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "2300 - Patch - 853 W Sole Dr, Nixa - Drake, Patrick - Patrick - 417.437.0292",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.795Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "1zbhv6gu7x3o3er",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.690Z"
+ },
+ {
+ "Active": true,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "Fuchs, Jason",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "jamorgason@icloud.com",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "Taneyville",
+ "Job_Codes": "2291 - N/A",
+ "Job_Division": "R#",
+ "Job_Folder_Link": "https://czflex.sharepoint.com/sites/Team/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites%2FTeam%2FShared%20Documents%2FGeneral%2FOperations%20%5BServer%5D%2F1%20Job%20Pages%2F2%20Estimating%20Residential%2F2291%20%20%20%28Fuchs%2C%20Jason%29&View=%7BFFB1C0BA%2DE7DC%2D4E1B%2DBF94%2D747047AF1FE6%7D",
+ "Job_Full_Name": "N/A - Taneyville - Fuchs, Jason",
+ "Job_Name": "N/A",
+ "Job_Number": "2291",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "R#2291 - N/A",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Est Sent",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "Beth Cardoza",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "Dave",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "R#2291 - N/A - Taneyville - Fuchs, Jason - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.865Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "iyjn6hb5mn43f11",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.793Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "1002 - Essick, Dusty (Port, Saddlebrooke)",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Essick, Dusty (Port, Saddlebrooke) - - ",
+ "Job_Name": "Essick, Dusty (Port, Saddlebrooke)",
+ "Job_Number": "1002",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "1002 - Essick, Dusty (Port, Saddlebrooke)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "1002 - Essick, Dusty (Port, Saddlebrooke) - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:24.933Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "412ha4epzduk9q4",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:20.897Z"
+ },
+ {
+ "Active": false,
+ "Added_To_Calendar": false,
+ "Address_Notes": "",
+ "Attachment_List": null,
+ "Company_Client": "",
+ "Contact_Notes": "",
+ "Contact_Person": "",
+ "Docs_Uploaded": false,
+ "Due_Date": "",
+ "Due_Date_Counter": "N/A",
+ "Due_Date_Source": "",
+ "Due_Time": "",
+ "EXT": 0,
+ "Email": "",
+ "Estimate_Approved": false,
+ "Estimate_Draft": false,
+ "Estimate_Reviewed": false,
+ "Estimated_Cost": 0,
+ "Estimated_End_Date": "",
+ "Estimator": "",
+ "Fax": "",
+ "Flag": false,
+ "Folder_Local": "",
+ "Has_Attachments": false,
+ "Job_Address": "",
+ "Job_Codes": "1001 - Essick, Dusty (Nolan, Saddlebrooke)",
+ "Job_Division": "",
+ "Job_Folder_Link": "",
+ "Job_Full_Name": "Essick, Dusty (Nolan, Saddlebrooke) - - ",
+ "Job_Name": "Essick, Dusty (Nolan, Saddlebrooke)",
+ "Job_Number": "1001",
+ "Job_Number_Parent": "",
+ "Job_QB_Link": "1001 - Essick, Dusty (Nolan, Saddlebrooke)",
+ "Job_Size_Guess": 0,
+ "Job_Size_Guess_Source": "",
+ "Job_Status": "Billed (Closed)",
+ "Job_Type": "",
+ "Note_Ref": [],
+ "Notes": "",
+ "Office_Rep": "",
+ "PSwift_Uploaded": false,
+ "Phone_Number": "",
+ "Project_Manager": "",
+ "QB_Created": false,
+ "Richtext_Notes": "",
+ "Schedule_Confidence": "",
+ "Scope": "",
+ "Start_Date": "",
+ "Start_Date_Actual": "",
+ "Start_Date_Expected": "",
+ "Submission_Date": "",
+ "Tax_Exempt": false,
+ "Tax_Exempt_Docs_Uploaded": false,
+ "Vendors": "",
+ "Voxer_Created": false,
+ "Voxer_Link": "1001 - Essick, Dusty (Nolan, Saddlebrooke) - - - - ",
+ "collectionId": "pbc_1407612689",
+ "collectionName": "Job_Info_Prod",
+ "created": "2025-12-15 17:23:25.003Z",
+ "gantt_Info": null,
+ "gantt_View": false,
+ "id": "k5jvtfah37g818n",
+ "last_note_at": "",
+ "latest_note_summary": null,
+ "note_count": 0,
+ "note_thread_text": null,
+ "updated": "2025-12-21 05:04:21.017Z"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Mode6Test/nohup.out b/Mode6Test/nohup.out
new file mode 100755
index 0000000..e925a17
--- /dev/null
+++ b/Mode6Test/nohup.out
@@ -0,0 +1,3429 @@
+[dotenv@17.2.3] injecting env (0) from .env -- tip: 🔄 add secrets lifecycle management: https://dotenvx.com/ops
+Started development server: http://localhost:3005
+Redis error:
+Redis connection closed
+Failed to connect to Redis: 203 | _this.removeListener("close", connectionCloseHandler);
+204 | resolve();
+205 | };
+206 | var connectionCloseHandler = function () {
+207 | _this.removeListener("ready", connectionReadyHandler);
+208 | reject(new Error(utils_1.CONNECTION_CLOSED_ERROR_MSG));
+ ^
+error: Connection is closed.
+ at connectionCloseHandler (/home/admin/.bun/install/cache/ioredis@5.9.2@@@1/built/Redis.js:208:32)
+ at emit (node:events:95:22)
+
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
+Redis error:
+Redis connection closed
diff --git a/Mode6Test/package.json b/Mode6Test/package.json
new file mode 100644
index 0000000..d106b22
--- /dev/null
+++ b/Mode6Test/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "job-info-pb",
+ "version": "2.0.1",
+ "badge": "Mode6Test",
+ "type": "module",
+ "private": true,
+ "scripts": {
+ "dev": "bun --watch backend/server.ts",
+ "start": "bun run backend/server.ts",
+ "build:css": "tailwindcss -i input.css -o frontend/output.css --watch"
+ },
+ "devDependencies": {
+ "@types/bun": "latest",
+ "autoprefixer": "^10.4.23",
+ "postcss": "^8.5.6",
+ "tailwindcss": "^4.1.18"
+ },
+ "peerDependencies": {
+ "typescript": "^5"
+ },
+ "dependencies": {
+ "dotenv": "^17.2.3",
+ "hono": "^4.10.8",
+ "ioredis": "^5.9.2",
+ "pocketbase": "^0.26.5",
+ "tailwind": "^4.0.0"
+ }
+}
diff --git a/Mode6Test/postcss.config.js b/Mode6Test/postcss.config.js
new file mode 100644
index 0000000..2e7af2b
--- /dev/null
+++ b/Mode6Test/postcss.config.js
@@ -0,0 +1,6 @@
+export default {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+}
diff --git a/Mode6Test/tailwind.config.js b/Mode6Test/tailwind.config.js
new file mode 100644
index 0000000..f4decb5
--- /dev/null
+++ b/Mode6Test/tailwind.config.js
@@ -0,0 +1,10 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+ content: [
+ './frontend/**/*.{html,js}',
+ ],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}
diff --git a/ModeSwitch/activeMode.txt b/ModeSwitch/activeMode.txt
new file mode 100644
index 0000000..6401a64
--- /dev/null
+++ b/ModeSwitch/activeMode.txt
@@ -0,0 +1 @@
+Mode6Test
\ No newline at end of file
diff --git a/ModeSwitch/backend/orchestrator.ts b/ModeSwitch/backend/orchestrator.ts
new file mode 100644
index 0000000..24146c2
--- /dev/null
+++ b/ModeSwitch/backend/orchestrator.ts
@@ -0,0 +1,150 @@
+import { Hono } from 'hono';
+import { serveStatic } from 'hono/bun';
+import { spawn } from 'bun';
+import fs from 'fs';
+
+// Configuration
+const MODES_DIR = '/home/admin/Job-Info-Prod';
+const MODE_CONFIG_FILE = `${MODES_DIR}/ModeSwitch/activeMode.txt`;
+const SHARED_PORT = 3000;
+const ORCHESTRATOR_PORT = 3001;
+
+// Mode folder mappings
+const MODE_FOLDERS: Record = {
+ 'Mode1Test': 'Mode1Test',
+ 'Mode2Test': 'Mode2Test',
+ 'Mode3Test': 'Mode3Test',
+ 'Mode6Test': 'Mode6Test',
+};
+
+let currentMode: string = 'Mode1Test';
+let currentProcess: any = null;
+
+// Helper: Read active mode from config file
+function readActiveMode(): string {
+ try {
+ if (fs.existsSync(MODE_CONFIG_FILE)) {
+ const content = fs.readFileSync(MODE_CONFIG_FILE, 'utf-8').trim();
+ return content || 'Test1Mode';
+ }
+ } catch (err) {
+ console.error('Failed to read mode config:', err);
+ }
+ return 'Mode1Test';
+}
+
+// Helper: Write active mode to config file
+function writeActiveMode(mode: string): void {
+ try {
+ fs.writeFileSync(MODE_CONFIG_FILE, mode, 'utf-8');
+ } catch (err) {
+ console.error('Failed to write mode config:', err);
+ }
+}
+
+// Helper: Kill process on shared port
+async function killProcessOnPort(port: number): Promise {
+ try {
+ await Bun.spawn({
+ cmd: ['pkill', '-f', `bun.*:${port}`],
+ stdout: 'ignore',
+ stderr: 'ignore',
+ });
+ // Fallback: Try to kill any Bun process we spawned
+ if (currentProcess) {
+ currentProcess.kill();
+ currentProcess = null;
+ }
+ // Give OS time to release the port
+ await new Promise(resolve => setTimeout(resolve, 500));
+ } catch (err) {
+ console.error(`Failed to kill process on port ${port}:`, err);
+ }
+}
+
+// Helper: Start a mode
+async function startMode(mode: string): Promise {
+ try {
+ // Kill any existing process
+ await killProcessOnPort(SHARED_PORT);
+
+ const folderName = MODE_FOLDERS[mode];
+ if (!folderName) {
+ console.error(`Unknown mode: ${mode}`);
+ return false;
+ }
+
+ const modePath = `${MODES_DIR}/${folderName}`;
+ if (!fs.existsSync(modePath)) {
+ console.error(`Mode folder not found: ${modePath}`);
+ return false;
+ }
+
+ console.log(`[ModeSwitch] Starting ${mode} (${folderName}/) on port ${SHARED_PORT}...`);
+
+ // Determine server path based on mode
+ // Mode2Test uses AuthAndToken/backend/server.ts
+ // Mode1Test and Mode3Test use backend/server.ts
+ let serverPath = 'backend/server.ts';
+ if (mode === 'Mode2Test') {
+ serverPath = 'AuthAndToken/backend/server.ts';
+ }
+
+ // Start the mode's backend server
+ currentProcess = Bun.spawn({
+ cmd: [process.execPath, 'run', serverPath],
+ cwd: modePath,
+ env: {
+ // Force mode service to bind to shared port
+ PORT: String(SHARED_PORT),
+ },
+ stdout: 'pipe',
+ stderr: 'pipe',
+ });
+
+ currentMode = mode;
+ writeActiveMode(mode);
+
+ // Read and log output from the spawned process
+ if (currentProcess.stdout) {
+ (async () => {
+ const reader = currentProcess.stdout.getReader();
+ while (true) {
+ const { done, value } = await reader.read();
+ if (done) break;
+ console.log(`[${mode}]`, new TextDecoder().decode(value));
+ }
+ })();
+ }
+
+ console.log(`✓ ${mode} started successfully on port ${SHARED_PORT}`);
+ return true;
+ } catch (err) {
+ console.error(`Failed to start ${mode}:`, err);
+ return false;
+ }
+}
+
+// Initialize app
+const app = new Hono();
+
+// Startup message
+console.log(`
+================================================================================
+[ModeSwitch Orchestrator]
+================================================================================
+Listening on port: ${ORCHESTRATOR_PORT}
+Shared mode port: ${SHARED_PORT}
+Config file: ${MODE_CONFIG_FILE}
+================================================================================
+`);
+
+// Start initial mode
+const initialMode = readActiveMode();
+await startMode(initialMode);
+
+// Export for Bun
+export default {
+ port: ORCHESTRATOR_PORT,
+ fetch: app.fetch,
+};
diff --git a/ModeSwitch/bun.lock b/ModeSwitch/bun.lock
new file mode 100644
index 0000000..f37c0eb
--- /dev/null
+++ b/ModeSwitch/bun.lock
@@ -0,0 +1,32 @@
+{
+ "lockfileVersion": 1,
+ "configVersion": 1,
+ "workspaces": {
+ "": {
+ "name": "mode-switch",
+ "dependencies": {
+ "dotenv": "^17.2.3",
+ "hono": "^4.10.8",
+ },
+ "devDependencies": {
+ "@types/bun": "latest",
+ "typescript": "^5",
+ },
+ },
+ },
+ "packages": {
+ "@types/bun": ["@types/bun@1.3.6", "", { "dependencies": { "bun-types": "1.3.6" } }, "sha512-uWCv6FO/8LcpREhenN1d1b6fcspAB+cefwD7uti8C8VffIv0Um08TKMn98FynpTiU38+y2dUO55T11NgDt8VAA=="],
+
+ "@types/node": ["@types/node@25.0.9", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw=="],
+
+ "bun-types": ["bun-types@1.3.6", "", { "dependencies": { "@types/node": "*" } }, "sha512-OlFwHcnNV99r//9v5IIOgQ9Uk37gZqrNMCcqEaExdkVq3Avwqok1bJFmvGMCkCE0FqzdY8VMOZpfpR3lwI+CsQ=="],
+
+ "dotenv": ["dotenv@17.2.3", "", {}, "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w=="],
+
+ "hono": ["hono@4.11.4", "", {}, "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA=="],
+
+ "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
+
+ "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
+ }
+}
diff --git a/ModeSwitch/logs/SESSION_LOG.txt b/ModeSwitch/logs/SESSION_LOG.txt
new file mode 100644
index 0000000..b39a44f
--- /dev/null
+++ b/ModeSwitch/logs/SESSION_LOG.txt
@@ -0,0 +1,47 @@
+[2026-01-17 14:30] Mode-Based Architecture Implementation Complete
+
+=== ARCHITECTURE ===
+✓ Created three-folder structure:
+ - Mode1Test/: Original application (standalone project)
+ - Mode2Test/: Placeholder for alternative configuration
+ - ModeSwitch/: Orchestrator hub (controls mode switching)
+
+✓ ModeSwitch Orchestrator (Bun + Hono):
+ - Listens on port 3006 (control/monitoring)
+ - Manages port 3005 (shared public port)
+ - Reads activeMode.txt to determine startup mode
+ - Kills existing process and starts new mode on demand
+ - Hot-swap: Switch modes via API without manual restart
+
+✓ Mode Folders:
+ - Each mode is a standalone, complete project
+ - Has own package.json, backend/, frontend/, logs/
+ - Runs on shared port 3005 when active
+ - Can be locked read-only once stable
+
+=== ENDPOINTS ===
+Orchestrator (port 3006):
+ GET /health - Health check
+ GET /api/mode - Get current mode and available modes
+ POST /api/mode/switch/:mode - Switch to different mode
+
+App (port 3005):
+ Available when active mode is running
+
+=== NAMING CONSISTENCY ===
+Resolved: oldTest → Mode1Test
+Updated:
+ - Folder renamed
+ - orchestrator.ts MODE_FOLDERS mapping
+ - activeMode.txt
+ - README.md references
+ - API response lists
+
+=== CURRENT STATUS ===
+✓ Mode1Test running on port 3005
+✓ Orchestrator running on port 3006
+✓ Ready for Mode2Test implementation
+✓ Root directory clean (only 3 mode folders + Monica.txt + README.md + .git)
+
+=== NEXT PHASE ===
+Ready to begin Mode2Test development
diff --git a/ModeSwitch/logs/orchestrator.out b/ModeSwitch/logs/orchestrator.out
new file mode 100644
index 0000000..dbdda75
--- /dev/null
+++ b/ModeSwitch/logs/orchestrator.out
@@ -0,0 +1,26 @@
+
+================================================================================
+[ModeSwitch Orchestrator]
+================================================================================
+Listening on port: 3006
+Shared mode port: 3005
+Config file: /home/admin/Job-Info-Test/ModeSwitch/activeMode.txt
+================================================================================
+
+[ModeSwitch] Starting Mode5Test (Mode5Test/) on port 3005...
+✓ Mode5Test started successfully on port 3005
+ 7 | if (typeof entryNamespace?.default?.fetch === 'function') {
+ 8 | const server = Bun.serve(entryNamespace.default);
+ 9 | console.debug(`Started ${server.development ? 'development ' : ''}server: ${server.protocol}://${server.hostname}:${server.port}`);
+10 | }
+11 | }, reportError);
+12 | const server = Bun.serve(entryNamespace.default);
+ ^
+error: Failed to start server. Is port 3006 in use?
+ syscall: "listen",
+ errno: 0,
+ code: "EADDRINUSE"
+
+ at bun:main:12:28
+
+Bun v1.3.2 (Linux x64 baseline)
diff --git a/ModeSwitch/logs/orchestrator.pid b/ModeSwitch/logs/orchestrator.pid
new file mode 100644
index 0000000..89345d8
--- /dev/null
+++ b/ModeSwitch/logs/orchestrator.pid
@@ -0,0 +1 @@
+47889
diff --git a/ModeSwitch/package.json b/ModeSwitch/package.json
new file mode 100644
index 0000000..245fbc8
--- /dev/null
+++ b/ModeSwitch/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "mode-switch",
+ "version": "1.0.0",
+ "description": "Mode switching orchestrator - controls which mode (Test1Mode, Mode2Test) runs on port 3005",
+ "type": "module",
+ "private": true,
+ "scripts": {
+ "start": "bun run backend/orchestrator.ts",
+ "dev": "bun --watch backend/orchestrator.ts"
+ },
+ "dependencies": {
+ "hono": "^4.10.8",
+ "dotenv": "^17.2.3"
+ },
+ "devDependencies": {
+ "@types/bun": "latest",
+ "typescript": "^5"
+ }
+}
diff --git a/frontend/assets/CCwhiteApp.png b/frontend/assets/CCwhiteApp.png
new file mode 100644
index 0000000..e4ef4f1
Binary files /dev/null and b/frontend/assets/CCwhiteApp.png differ
diff --git a/frontend/assets/DailyCheck.png b/frontend/assets/DailyCheck.png
new file mode 100644
index 0000000..200eba4
Binary files /dev/null and b/frontend/assets/DailyCheck.png differ
diff --git a/frontend/assets/PalmIsland.png b/frontend/assets/PalmIsland.png
new file mode 100644
index 0000000..e31ab51
Binary files /dev/null and b/frontend/assets/PalmIsland.png differ
diff --git a/frontend/assets/lightbulb.jpg b/frontend/assets/lightbulb.jpg
new file mode 100644
index 0000000..f75425e
Binary files /dev/null and b/frontend/assets/lightbulb.jpg differ
diff --git a/frontend/auth.js b/frontend/auth.js
new file mode 100644
index 0000000..323c570
--- /dev/null
+++ b/frontend/auth.js
@@ -0,0 +1,39 @@
+// PocketBase auth bootstrap shared by pages
+(function (global) {
+ const pb = new PocketBase('https://pocketbase.ccllc.pro');
+
+ function authHeaders() {
+ if (pb.authStore.isValid && pb.authStore.token) {
+ return { Authorization: `Bearer ${pb.authStore.token}` };
+ }
+ return {};
+ }
+
+ function getDisplayName() {
+ const model = pb.authStore.model || {};
+ return (
+ model.display_name ||
+ model.name ||
+ model.email ||
+ model.username ||
+ 'Unknown'
+ );
+ }
+
+ function getEmail() {
+ const model = pb.authStore.model || {};
+ // Prefer email, but fall back to username if email missing
+ return model.email || model.username || null;
+ }
+
+ async function ensureAuth() {
+ if (pb.authStore.isValid) return true;
+ const path = new URL(window.location.href).pathname;
+ if (!path.endsWith('signin.html')) {
+ window.location.href = 'signin.html';
+ }
+ return false;
+ }
+
+ global.Auth = { pb, authHeaders, ensureAuth, getDisplayName, getEmail };
+})(window);
diff --git a/frontend/index.html b/frontend/index.html
new file mode 100644
index 0000000..2b0e3ed
--- /dev/null
+++ b/frontend/index.html
@@ -0,0 +1,2965 @@
+
+
+
+
+
+Job Info — Vanilla JS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Job Info
+
+
+
+
Show Filters
+
+
+
+
+
+
+
+ Sign out
+ v1.0.0-beta2
+
+
+
+
+
+
+
+
+
+
INFO
+
+
+
No Folder Available
+
+
+
+
+
+
NOTES
+
+
+
+
+ B
+ I
+ U
+ A
+ A
+ A
+ Reset
+
+
+
+
+
+ Submit
+ Clear
+ Close
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Back
+
+
INFO
+
NOTES
+
MANAGER INFO
+
+
+
+
+
+
+
+
+
+
+
+
+ −
+ 45%
+ +
+ 45%
+
+
+ ◀
+ ▶
+ Page 1 / 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/output.css b/frontend/output.css
new file mode 100644
index 0000000..971f4ad
--- /dev/null
+++ b/frontend/output.css
@@ -0,0 +1,5 @@
+/* Generated Tailwind CSS - Basic version */
+/* This will be updated by tailwind CLI on dev */
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
diff --git a/frontend/public/index.html b/frontend/public/index.html
index 001ff50..bb8f1d0 100644
--- a/frontend/public/index.html
+++ b/frontend/public/index.html
@@ -235,24 +235,24 @@
+
+
+
+
+
+
Welcome
+
Sign in with your Microsoft account
+
+
Sign in with Microsoft
+
+
+
+
+
Signed in
+
Name:
+
Email:
+
+
Continue to Job Info
+
Sign out
+
+
+
+
+
+