Logo
Creative Financial Staffing

Bookkeeper

Creative Financial Staffing, Bakersfield, California, United States, 93311

Save Job

Bookkeeper Bakersfield, CA About the Company Our client is a growing, values-driven organization expanding its team in Bakersfield. Known for its collaborative and supportive culture, this company invests in employee development and offers clear, long-term career paths. Team members enjoy cross-training opportunities, annual company events, and holiday celebrations-all while contributing to a business that continues to thrive. Why This Role Stands Out

* Supportive, family-oriented culture built on strong core values

* Flexible schedule with adjustable start and end times

* Low-cost healthcare benefits

* Competitive pay: $25-$35/hour

* Multiple bonuses throughout the year

* Long-term growth and learning opportunities

What You'll Be Doing

* Manage full-cycle accounts payable and accounts receivable

* Perform bank and general ledger reconciliations

* Maintain accurate financial data in proprietary accounting software

* Prepare and post journal entries

* Assist with month-end and year-end close processes

* Monitor unit cost variances and help establish cost standards for labor and materials

* Support the accounting team with special projects and cross-functional initiatives

What We're Looking For

* 2+ years of bookkeeping or accounting experience

* Exceptional attention to detail, accuracy, and organization

* Ability to work both independently and collaboratively in a fast-paced environment

If you're a detail-oriented Bookkeeper looking for flexibility, strong benefits, and a company that truly invests in its people, this could be the perfect next step. #LI-CS3

#INJAN2026

EB-1491425596 document.addEventListener('DOMContentLoaded', () => { const root = document.querySelector('#job_desc'); if (!root) return; // Skip wrapping if we've already done it if (root.dataset.hashtagsWrapped === "1") return; const SKIP = new Set(['SCRIPT','STYLE']); const walker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT, { acceptNode(node) { if (!node.nodeValue || !node.nodeValue.match(/#[\p{L}\p{N}_]+/u)) return NodeFilter.FILTER_REJECT; // Avoid wrapping inside an existing hashtag span let p = node.parentNode; while (p && p !== root) { if (p.nodeType === 1 && p.hasAttribute('data-hashtag')) return NodeFilter.FILTER_REJECT; if (SKIP.has(p.nodeName)) return NodeFilter.FILTER_REJECT; p = p.parentNode; } return NodeFilter.FILTER_ACCEPT; } }); const re = /#[\p{L}\p{N}_-]+/gu; function wrapTextNode(textNode) { const text = textNode.nodeValue; re.lastIndex = 0; let m, last = 0; const frag = document.createDocumentFragment(); while ((m = re.exec(text)) !== null) { // preceding plain text if (m.index > last) frag.appendChild(document.createTextNode(text.slice(last, m.index))); // hashtag span const span = document.createElement('span'); span.textContent = m[0]; span.setAttribute('data-hashtag', '1'); // idempotence guard span.setAttribute('style', 'font-size:9px;color:#fff'); // requested inline style frag.appendChild(span); last = re.lastIndex; } // trailing plain text if (last