원클릭으로
square-import
Import Square sales CSV exports with tips, refunds, and fee handling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Import Square sales CSV exports with tips, refunds, and fee handling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Calculate break-even revenue by separating fixed and variable costs.
Project future cash flow using historical trends and recurring patterns.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
| name | square-import |
| description | Import Square sales CSV exports with tips, refunds, and fee handling. |
Import transaction data from Square POS CSV exports. Handles sales, tips, refunds, and Square processing fees. Maps Square's item-level detail into Open Accountant's transaction format.
transaction_search — check for existing Square transactions to prevent duplicatescategorize — assign categories to imported Square transactionsexport_transactions — export reconciled Square data| Square CSV Column | Open Accountant Field | Notes |
|---|---|---|
Date | date | Transaction date |
Time | — | Not stored |
Transaction ID | reference_id | Square payment ID for dedup |
Description or Item | description | Item or payment description |
Gross Sales | amount | Total before fees (positive = income) |
Tips | amount (separate row) | Tip amount (positive = income) |
Processing Fees | amount (separate row) | Square fee (negative = expense) |
Refunds | amount (separate row) | Refund amount (negative) |
Net Sales | — | Calculated, not stored directly |
Payment Method | notes | Cash, card, etc. |
To work with Square exports manually:
Gross Sales: =SUM(E:E)
Total Tips: =SUM(F:F)
Total Fees: =SUM(G:G)
Total Refunds: =SUM(H:H)
Net Revenue: =GrossSales + Tips - Fees - Refunds
Effective Fee %: =TotalFees / (GrossSales + Tips) * 100
Avg Transaction: =GrossSales / COUNTA(D:D)
Square Dashboard has built-in reports at Reporting > Sales Summary that show gross sales, fees, and net by day, week, or month. Use these for quick reference without exporting.