Categories
Uncategorized

Accounting Software API and Integrations: How HK SMEs Connect Their Stack

Accounting software is rarely the only system in a Hong Kong SME’s stack. A typical 2026 SME runs a sales tool (e-commerce platform, retail POS or CRM), a payment processor (Stripe, FPS, payment gateway), a payroll system (sometimes inside accounting, sometimes a separate platform), and an accounting system that everything else feeds into. Whether all those pieces work together smoothly or generate a constant manual reconciliation chore comes down to the quality of each system’s API and the integrations that ride on top of them.

This guide is a vendor-neutral walk through accounting-software API and integration questions for HK SMEs — what a good vendor API actually looks like, the common stacks SMEs build, the webhook-vs-polling pattern question, security considerations including authentication and data residency, when an integration partner is worth more than DIY, and the demo questions that surface real API quality. The framing is the SME selecting accounting software with integration in mind, not the developer building integrations from scratch.


What a good vendor API looks like

Most accounting software vendors in 2026 advertise an API. The label hides large differences in actual capability. A good vendor API for SME-scale integration has these properties:

  • RESTful design with predictable URLs and HTTP verbs. A developer should be able to read the documentation and predict the endpoint for any operation. Inconsistent or RPC-style endpoints multiply integration cost.
  • OAuth 2.0 authentication with refresh tokens, supporting the standard “user authorises, app gets long-lived access” flow. API-key-only authentication still exists but is harder to manage at scale.
  • Rate limits that allow real workloads — typically 60–120 requests per minute per app, with 429 responses and Retry-After headers when limits hit. Vendors with rate limits below 30/minute force throttled integrations and complex backoff logic.
  • Webhook support for event notifications (new invoice paid, transaction posted, customer updated) so integrations can react in near-real-time without polling.
  • Pagination on list endpoints with cursors or stable offsets — important once a customer has thousands of transactions.
  • Versioning so the vendor can evolve the API without breaking existing integrations. Sudden breaking changes destroy trust.
  • Test / sandbox environment separate from production, with the same API surface but isolated data — essential for development and CI testing.
  • Useful documentation — request/response examples, error code lists, common integration patterns. Bad documentation is the single biggest hidden integration cost.

Two additional points specific to HK accounting software: HKD as the base currency must be properly handled (some vendors built around USD or AUD treat HKD as a “minor currency” with edge-case bugs in tax / reporting endpoints), and bilingual data — TC merchant names, TC customer addresses — must round-trip cleanly through the API without encoding loss.


Common HK SME integration stacks

Three typical stacks cover most HK SME integration patterns in 2026:

The e-commerce stack: Shopify (or Shopline or HKTVmall) → payment gateway (Stripe, AsiaPay, eWAY) → accounting. The integration challenge is reconciling Shopify orders to Stripe payouts to the bank deposit, with platform fees, payment processor fees, refunds and FX adjustments correctly attributed. The accounting integration usually pulls daily order summaries, books revenue at gross with separate fee deductions, and matches the resulting net to the actual bank deposit. See our e-commerce accounting software guide for the deeper vertical view.

The professional services stack: CRM or project management (HubSpot, Pipedrive, Asana) → time-tracking tool (Toggl, Harvest) → invoicing → accounting → payment processor. The integration pulls timesheet data into invoices, posts the invoice to AR in accounting, then reconciles incoming customer payments to AR closure. The biggest pain point is making sure project codes flow consistently from time entry through to revenue recognition.

The retail / multi-channel stack: POS (Square, FlexiBar, Storehub) → inventory management → accounting → bank feed. The POS posts daily sales by category to accounting; inventory movements are recorded; bank feeds match deposits to expected cash. Multi-location complications add to the integration surface — each store’s POS feeding the same set of accounting books with location tagging.

For each pattern, the right question to ask the accounting vendor is “show me a customer running exactly this stack.” Vendors that have multiple HK customers on a given pattern have proven the integration works at scale; vendors that have one or two are still de-risking.


Webhook patterns vs polling

Two integration patterns transfer data between systems. Polling means the consumer system asks the producer system “what’s new?” at a regular interval (every 5 minutes, every hour). Webhooks mean the producer system pushes a notification to the consumer when something changes.

The difference matters in three ways:

  • Latency. A webhook delivers the change in seconds; polling at 1-hour intervals introduces up to 1 hour of staleness.
  • API call efficiency. Polling generates many “nothing has changed” calls; webhooks only fire when there’s actually news.
  • Reliability. Webhooks can be lost in transit (network issues, consumer downtime); polling will eventually catch up. Mature integrations use webhooks for the fast path and a daily poll as a backup catch-up.

For HK SME accounting integrations, the workloads where webhooks earn their keep are: incoming payment notifications (so the AR is closed in real time), inventory movements (so stock levels are accurate for sales), and customer-data updates (so address changes flow through to invoicing). For workloads that don’t need to be real-time — month-end reporting feeds, annual data extracts — polling is fine.

The vendor’s webhook offering is a useful capability test: vendors with mature webhook support tend to have mature APIs in general; vendors that offer “webhooks coming soon” or webhooks only on the most expensive tier are signalling that their integration foundations are weaker.


Security considerations — auth, rate limits, data residency

Three security questions matter for any accounting-software integration in HK:

Authentication and authorisation. OAuth 2.0 with scoped permissions is the standard — the integration requests “read invoices, read customers, write transactions” and the user grants exactly that scope rather than full access. API-key-only auth gives the integration full access by default, which is a larger blast radius if the key leaks. Long-lived API keys stored in a partner system are a real risk profile.

Rate limits and abuse prevention. A poorly-designed integration that hits the API in a tight loop can degrade the accounting system for all users. Mature vendors enforce rate limits both per-app and per-account; check that the vendor’s rate limits accommodate the actual workload you’ll run, not just the marketing number.

Data residency. Some HK SMEs and most HK regulated entities have data-residency requirements (data must be stored in HK or specified jurisdictions). Cloud accounting vendors store data in their own datacentres, which may be in Singapore, Sydney, US, EU. Verify the vendor’s data residency policy and whether HK-resident storage is available — particularly important for regulated entities and those with HK government contracts.

For most general SMEs, data residency is a less binding constraint, but it’s worth knowing where the data lives. Cross-border data transfer rules under the HK Personal Data (Privacy) Ordinance apply when personal data crosses borders — typically not a blocker but a disclosure obligation.


When integration partners beat DIY

For most HK SMEs, the right approach to integration is to use either the vendor’s native pre-built integrations (when they exist for the specific tools you use) or an integration partner platform like Zapier, Make, n8n, or HK-specific consultancies that pre-build and maintain integrations for the local stack. DIY integration code is rarely the right answer for an SME — the upfront cost is moderate but the maintenance cost over years (vendor API changes, edge-case bug fixes, reliability monitoring) substantially exceeds what a managed integration partner charges.

The exception: SMEs whose competitive advantage involves a unique data flow that no off-the-shelf integration handles. A logistics company with proprietary route-optimisation that needs to push trip-level cost data into the accounting GL has no off-the-shelf option and a custom integration is justified. For the typical “Shopify → accounting” or “Stripe → accounting” integration, the off-the-shelf options are good enough and cost less than maintaining custom code.

Two things to verify on any third-party integration:

  • Who owns the integration when something breaks? If the vendor changes the API and the integration breaks at month-end, who fixes it on what timeline?
  • What does the integration cost over 3 years, including any per-transaction or per-record fees? Some integration platforms charge per API call, which compounds with volume.

What to test before buying

For an SME selecting accounting software with integration in mind, the demo should include:

  • “Show me a customer with my stack.” Vendor should be able to point to at least one HK customer running the same set of tools you plan to integrate.
  • API documentation walk-through. The documentation should be readable and complete — if the vendor can’t show it, the integration story is weaker than the marketing implies.
  • Webhook reliability claim. Ask for the SLA on webhook delivery and what happens when delivery fails. Vague answers are warning signs.
  • Rate-limit reality check. “What’s your rate limit on the invoice creation endpoint?” If the answer is below 30/minute the integration scope is constrained.
  • Pre-built integration list. Pull the list of pre-built integrations and check that the tools in your stack actually appear. Generic statements like “we integrate with everything via our API” without specific names are not the same as having ready integrations.
  • Sandbox availability. A sandbox environment for testing before going live should be standard. If only production is available, integration debugging risks corrupting real data.

How Giga Accounting by 凌峰會計 can help

Giga Accounting by 凌峰會計 exposes a RESTful API with OAuth 2.0 authentication, sandbox environment, full webhook support for invoice / payment / inventory events, HKD-native handling, bilingual TC/EN data round-tripping, and a published integration catalogue covering the common HK SME stack (Shopify, Shopline, HKTVmall, Stripe, AsiaPay, common HK POS systems). For HK customers with bespoke integration needs, our team works alongside our integration partners on scoping and ongoing support.

Get in touch for a 30-minute scoping call against your specific stack — bring the names of the systems you currently run and we can map what’s pre-built vs what would need a partner integration — or see our flat per-company pricing. For the e-commerce vertical-deep view (often the highest-value integration question), see our e-commerce accounting software guide; for the bank-feed integration that’s the largest single integration in any SME stack, see bank feed and auto-reconciliation in HK; and for the broader pricing context where API access often gates a tier, see accounting software pricing in HK.

Categories
Uncategorized

Multi-User and Remote Team Access in HK Accounting Software

“Multi-user accounting software” was once a simple feature — could two people log in at the same time without crashing each other’s session? In 2026 the question is more useful than that. Multi-user really means: who can see what, who can change what, who approves what, how do you audit who did what, and how does the software keep an accountant working from another office (or another country) productive without giving them keys to the kingdom. The headline “supports multi-user” tells you almost nothing about whether the product actually solves these problems.

This guide covers what HK accounting software’s multi-user features actually need to handle for a typical SME — what concurrent multi-user means in 2026, role-based access control as the central mechanic, the remote-accountant access pattern that’s almost universal in HK, the audit trail that makes “who did what” answerable, security and authentication considerations, and the demo questions that surface real capability. The framing is the SME with 2–10 people touching the books, not the listed-company finance department with 50 seats.


What “multi-user” actually means in 2026

Three structurally different things hide under the “multi-user” label in vendor marketing.

Concurrent logins. Multiple users can be authenticated and active in the software at the same time. The minimum viable multi-user. By 2026 every cloud accounting product handles this well; some on-premise legacy products still struggle, particularly with concurrent edits to the same record.

Per-user identity and audit trail. The software knows which user did each transaction. Postings, edits and deletes are stamped with the user’s identity and timestamp. This is what lets the auditor — or you, when investigating an error — answer “who entered this and when?” Identity is the prerequisite for any meaningful permission control.

For an SME owner-operator, the per-user-identity check is the single most important multi-user feature. A common pattern is that everyone shares a generic “admin” login because it’s simpler — and then when something goes wrong, no one can tell who did what. The fix is uncomfortable but cheap: every regular user gets their own login.

Role-based access control. Different users see different parts of the software, and can do different things, based on the role assigned to them. The bookkeeper can post invoices but not edit master data; the director can see all reports but not enter day-to-day transactions; the external accountant has read-only on the master data with full access for journal entries during month-end. This is where the productivity gain actually lives.


Role-based access control

The standard role set that most HK SMEs end up with after some experience:

  • Director / Owner — full read access to all reports, ability to approve high-value transactions, ability to manage user permissions. Often does not enter day-to-day transactions; the value of the role is oversight, not operations.
  • Bookkeeper — full posting access (invoices, payments, expenses, journals), read access to most reports, no ability to change user permissions or modify GL chart of accounts. The day-to-day operator.
  • Sales / AR clerk — invoice creation and AR-side workflows, read access to customer records, no access to bank or supplier-side data. Useful when sales and finance are separate teams.
  • Approver / Manager — read-only on most data, with the ability to approve or reject pending transactions above a threshold. Useful for SMEs that have implemented purchase-approval workflows.
  • External accountant / auditor — read-only on most data, plus the ability to post journals to a defined set of accounts (typically year-end accruals, depreciation, deferred tax). The pattern that lets your accountant work without you handing over the master password.
  • System admin — manages user accounts and permissions but doesn’t see transaction-level data. For larger SMEs that separate IT administration from finance.

The accounting software requirement is that these roles can be configured (not just chosen from a fixed list), that permissions can be set at a useful level of granularity (per-module is fine; per-transaction is overkill), and that changing a user’s role is straightforward. SMEs whose software offers only “all access” or “read-only” are forced to over-share or under-share.


Remote accountant access — the standard HK pattern

The single most common multi-user pattern in HK SMEs is the “external accountant” arrangement. The SME has its own books in its accounting software; the external CPA firm or bookkeeper accesses the software to do month-end work, year-end audit prep, and tax-return preparation, without anyone shipping data files back and forth.

The three approaches in 2026:

  • Cloud accounting native multi-user. The cleanest option. SME pays for the seats; accountant logs in with their own credentials; the access is logged and revocable. Default for Xero, QBO, Giga and most modern cloud products.
  • On-premise with VPN access. Legacy desktop products where the accountant connects to the SME’s network via VPN and runs the software remotely. Workable but creates security and version-management headaches.
  • Email-attached data files. The “send me your QuickBooks file” approach. Common for older sole-practitioner accountants. Manageable for small workloads but breaks down at any scale, and loses the audit-trail benefit because changes happen in different file copies.

For an SME choosing accounting software in 2026, native cloud multi-user with role-based access is the default to look for. The marginal cost of an additional accountant seat (typically HK$50–200/month) is trivial compared to the operational benefits.

The HK-specific consideration: the external accountant may be working from a different jurisdiction (mainland China, Singapore, UK, etc.) for an HK-incorporated SME. Geographic restrictions on the software’s access — some products geo-block by IP — can be a real problem. Verify in the demo.


Audit trail — what “who did what” actually requires

Multi-user without audit trail is worse than single-user with no audit trail, because the dispersion of who-did-what creates the illusion of accountability without the substance.

The audit-trail features to verify:

  • Every transaction has a created-by + created-at stamp that cannot be edited.
  • Edits are versioned — the original transaction is preserved, the edit is shown as a new version with edited-by + edited-at, and a third party can reconstruct the original.
  • Deletes are soft, not hard — a deleted transaction is marked deleted but retained, with a deleted-by + deleted-at stamp, so the record exists for audit even when the live ledger doesn’t show it.
  • User access logs — who logged in, from where, when, and what they viewed. Often a separate log from transactional audit trail.
  • Reports cannot be silently edited — a report run today and again tomorrow on the same period should produce identical numbers unless the underlying data has changed (in which case the change is documented).

For Section 51C records-retention purposes (see our profits tax guide for the underlying obligation), the audit trail itself is part of the records that must be preserved for 7 years. Software that allows transactions to be edited without retaining the original edit history is technically at risk on this point.


Security and authentication

Multi-user expands the attack surface compared to single-user; the security model has to compensate.

The security features to verify:

  • Mandatory or optional two-factor authentication (2FA). By 2026 mandatory 2FA on at least the admin role is the expected standard. Software that doesn’t offer 2FA is genuinely behind.
  • Password policy. Minimum length, complexity, expiry, can-be-reset-by-self-or-admin. SMEs often want central admin control over password resets to avoid the support load of users locked out.
  • Session timeout. Idle session times out and re-authentication is required. Typically configurable (15 min for high-security shared computers, longer for trusted personal devices).
  • IP whitelist / geo-blocking. Some SMEs want access restricted to office IP ranges or HK / a specific list of jurisdictions. Useful for high-sensitivity engagements but can become a friction source if remote work is normal.
  • Single sign-on (SSO). For SMEs already using Microsoft 365 or Google Workspace, SSO via SAML or OAuth removes a credential to manage and centralises access control. Increasingly common in 2026.
  • Data residency. Where the data is physically stored. PDPO compliance for personal data; some HK regulated entities have stricter residency requirements. See our API and integrations guide for the broader data-residency framing.

Demo questions to surface real capability

A 30-minute demo with the following test set surfaces real multi-user capability:

  • “Set up three users with three different roles.” Create a director (full access), bookkeeper (posting access), and external accountant (read-only with journal access). Watch how granular the permissions actually are.
  • “Show me the audit trail on a transaction that’s been edited.” Vendor should produce both the current state and the edit history with user stamps. If only the current state is available, the audit trail is thin.
  • “Walk me through the 2FA setup.” Mandatory or optional? How does the recovery flow work if a user loses their authenticator?
  • “Show me a deleted transaction.” Vendor should be able to retrieve a soft-deleted record. If “delete” is permanent, audit trail is incomplete.
  • “What’s the access pattern for an accountant working from Mainland China?” Geo-blocking, VPN requirement, performance over slower connections.
  • “Show me the user-access log.” Last 30 days of logins, successful and failed, with IP and timestamp.

How Giga Accounting by 凌峰會計 can help

Giga Accounting by 凌峰會計 ships role-based access control with configurable role definitions, per-user identity with full audit trail (created/edited/deleted stamps with user + timestamp, version history on edits, soft-delete preservation), mandatory 2FA on admin roles, optional 2FA on standard roles, configurable session timeouts and IP whitelist, SSO integration via SAML, HK-resident data storage as standard, and the external-accountant role pre-configured for the typical CPA-firm engagement pattern. Multi-user is included in the standard licence — the calculation is that an accounting product that gates its security and access model behind a higher tier is letting the wrong constraint drive an SME’s compliance posture.

Get in touch for a 30-minute demo focused on multi-user setup against your team structure, or see our flat per-company pricing. For the related mobile-UX feature where multi-user identity matters across devices, see our mobile apps for HK accounting software guide; for the broader API + data-residency context that frames remote-access security, see accounting software API and integrations; and for the features-checklist hub where role-based access sits as a 7th-modern-feature must-have, see essential features of accounting software for HK SMEs.

Categories
Uncategorized

Accounting Software for Hong Kong Restaurants and F&B Businesses

Running a restaurant in Hong Kong is a margin-hunt from the moment you sign the lease. Rent is high, rents change, ingredient prices move weekly, staff rotate in and out, and every takeaway order on Deliveroo, Keeta, or foodpanda eats a different slice of the top line. An accounting system that cannot keep up with all of that is not saving you time — it is quietly hiding the margin you should be defending.

This guide covers what accounting software for Hong Kong restaurants actually needs to do, where generic accounting packages fall short for F&B, and how to shortlist a system that fits a real HK café, bar, or multi-outlet group.


Why restaurant accounting is different

Most accounting software is built with a trading or services business in mind: a handful of customers, a steady flow of invoices, inventory that sits still. A restaurant looks nothing like that. Revenue comes in hundreds of tiny transactions a day through multiple channels; costs hinge on ingredients that expire; staffing is weekly and partly casual; and margin lives in the 1–2 percentage points that come from watching food cost ratios every single week.

The implication for software is concrete: your accounting tool has to talk to your POS, understand recipes and ingredient costs, handle MPF for part-time staff, and reconcile multiple delivery platforms that each take a different cut and settle on different days.


Four things HK restaurants need that generic software misses

  1. Daily POS sales import. A restaurant might ring up 200 transactions a day. Typing those into a sales ledger is a non-starter. Your accounting software needs to import a daily sales summary — gross sales, discounts, service charge, tax if any, and a settlement split by payment method (cash, EPS, Visa, Mastercard, AlipayHK, WeChat Pay HK, Octopus, FPS).
  2. Delivery-platform reconciliation. Deliveroo, Keeta, and foodpanda each send a different settlement report on different schedules. Your system should let you book the gross order value as revenue, the commission as an expense, and the net payout as the bank receipt — all reconcilable back to the platform’s statement.
  3. Ingredient-level cost and stock control. Generic accounting software can track “stock” at SKU level but rarely at recipe level. A decent F&B module lets you define a menu item as a set of ingredients, update ingredient costs, and get a current food cost % per dish.
  4. Shift-worker payroll with MPF. Most HK restaurants run a mix of full-time, part-time, and casual staff. Payroll needs to handle daily rates, overtime, service charge distribution, and MPF contributions for anyone who qualifies.

POS integration: the HK reality

POS is where most restaurant accounting projects succeed or fail. The HK market is fragmented: you might be running BindoPOS, iCHEF, Eats365, Square, Shopify POS, or a legacy cash register that only exports a PDF. The integration path depends entirely on which POS you use.

  • Direct API integration: Modern cloud POS products can push a daily sales summary straight into a cloud accounting system. Least effort, cleanest audit trail.
  • CSV import: POS exports a daily CSV, accounting software imports it on a schedule. Works well, but needs a consistent file format and someone to run the import.
  • Manual summary entry: A human enters a Z-report total each day. Cheap, but easy to miss or fudge — and reconciling against bank deposits becomes painful.

Before shortlisting any accounting tool, write down your current POS and ask each vendor: “Can you show me the daily sales import from my POS running end to end?” If the answer is vague, assume manual entry — and budget the labour.


Food cost management: the metric that pays for the software

Food cost percentage (cost of ingredients ÷ food revenue) is the single most important operating metric in a restaurant. HK casual-dining targets typically sit around 28–35%; anything creeping into the 40s quietly kills profit.

An accounting system that tracks food cost properly gives you three things a manual spreadsheet cannot:

  • Recipe-based costing. Define every menu item once with ingredient quantities; software auto-updates dish cost when ingredient prices change.
  • Daily or weekly food cost reporting. Instead of finding out at month-end that food cost jumped to 38%, you find out on Tuesday of week two — in time to act.
  • Variance between theoretical and actual. Theoretical food cost (from recipes × sales mix) compared to actual food cost (from purchases and stock movements) flags waste, theft, or portion drift before they show up as lost profit.

Shift-worker payroll and MPF for HK restaurants

Restaurant payroll in HK rarely fits a tidy “25th of the month, 22 working days” template. Typical issues the software has to handle:

  • Hourly or daily rates that vary by role (kitchen, bar, front-of-house, weekend).
  • Overtime calculations that reflect actual hours worked rather than a flat monthly salary.
  • Service charge distribution. If you pool the 10% service charge, the software needs to allocate it by shifts or hours worked.
  • MPF for part-timers. Anyone employed 60 days or more, even part-time, is an MPF member. Software that calculates contributions per pay cycle — not just a flat monthly assumption — saves audit headaches later.
  • Autopay file export. HK bank autopay format (.txt) for monthly wages is still the fastest settlement method; the system should produce it.

See our broader guide on payroll and MPF features in HK accounting software for how to test each vendor’s payroll module properly.


How to shortlist a system for a HK F&B business

A straight-line shortlist in five steps:

  1. List your channels. Dine-in (via which POS), delivery (Deliveroo / Keeta / foodpanda / your own), takeaway, catering. Each one is a data source.
  2. List your cost categories. Food, beverage, staff, rent, utilities, platform commissions. Build the chart of accounts around them.
  3. Ask for a demo using your real POS. Not a canned demo data file. Bring a week of your actual sales export and watch it import.
  4. Check multi-outlet support if relevant. If you plan to open a second site in the next year, make sure the software handles multi-location from day one — consolidation, inter-company transfers, per-outlet P&L.
  5. Review the total 3-year cost. Per-user fees stack up fast when outlets have multiple managers. Flat-fee unlimited-user products usually win on TCO once you are past one site.

Worth knowing: storage and data retention

A restaurant can generate tens of thousands of POS line items per month. Any accounting system that caps storage or forces you to purge old data will hit its ceiling fast — and the IRD still expects you to keep records for seven years. Giga Accounting by 凌峰會計 includes 10 GB per company with no need to purge, which is the difference between a system that grows with your restaurant group and one you have to replace in year three.


Let us set up your F&B stack

Giga Accounting by 凌峰會計 is built for HK SMEs across retail, trading, and F&B. We can sit with you through the POS mapping, delivery-platform reconciliation, recipe cost setup, and shift-worker payroll — all in one system, priced flat per company with unlimited users and 10 GB of storage that never gets purged.

If you are comparing across verticals, read our sister pieces on accounting software for HK retail businesses and managing accounts for multiple HK companies. Or go straight to the Giga Accounting by 凌峰會計 homepage to see the full product and cloud accounting overview.

Categories
Uncategorized

How Long Does a Hong Kong Company Audit Take — and What Affects the Cost?

For a first-time Hong Kong director, “how long does an audit take” and “how much does it cost” are usually the first two questions. And they’re harder to answer than they look, because both depend heavily on factors under your own control — not just on the auditor’s schedule or price list.

This guide gives a realistic view of Hong Kong company audit timelines and costs: typical durations for different business sizes, what really drives the fee, and the specific things that push both time and cost up. The aim is to let you plan — and, where possible, keep both numbers down.


What Determines How Long an Audit Takes

Audit duration is not mainly about size; it’s about record quality and complexity. Five factors do most of the work:

  • Quality of monthly bookkeeping. Clean trial balance vs reconstruction — the single biggest variable.
  • Completeness of supporting documents. Invoices, contracts, bank statements, payroll records all available vs scattered across email, drawers, and hard drives.
  • Complexity of the business. Multi-currency, multi-entity, inventory-heavy, and related-party transactions each add time.
  • Responsiveness to auditor queries. A 24-hour response keeps momentum; a week’s delay at each query can double the calendar time.
  • Whether it’s a first-year audit. First audits always take longer because the auditor has to validate opening balances and understand the business.

Two companies of identical revenue can end up with timelines that differ by weeks based on these factors alone.


Typical Audit Timelines for Different Business Sizes

As a broad guide for HK SMEs with reasonable records:

  • Dormant or shell company — 1 to 2 weeks of elapsed time from handover to signed report.
  • Small operating SME, well-kept books — typically 3 to 5 weeks.
  • Mid-size SME with modest complexity — 5 to 8 weeks.
  • Trading / inventory-heavy / multi-currency business — 6 to 10 weeks.
  • Company with unclean prior-year audit or reconstruction required — 10 to 16+ weeks.

These are elapsed times, not fieldwork hours. The fieldwork itself is typically shorter — much of the duration is queries, responses, and sign-off iteration.


What Makes an Audit Take Longer (and Cost More)

The specific things that extend timelines — and therefore add to the fee — include:

  • Incomplete bank reconciliations. Auditors can’t progress without reconciled cash.
  • Missing invoices or contracts. Every missing document triggers a chase.
  • Inventory not physically counted. Forces alternative procedures, which are slower and more expensive.
  • Related-party transactions not disclosed upfront. Surfacing mid-fieldwork requires restatement.
  • Multiple email chains with different team members. Every handover is friction.
  • Year-end close dragging on. If accruals, prepayments, and depreciation are still in motion, the audit stops.
  • Weak documentation of revenue. Especially problematic for service businesses without clean billing records.

Audit firms bill for hours. More hours required = higher fee. There’s no mystery to the relationship.


The Link Between Your Bookkeeping Quality and Your Audit Fee

For a given HK SME, the audit fee can vary by 50% to 100% between “clean records” and “reconstruction required.” The reason is simple: the auditor isn’t going to accept records they can’t verify, so if the trial balance doesn’t hang together, the auditor has to build one. That’s audit work, billed at audit rates.

The practical implication: the cheapest way to lower your audit fee is not to negotiate with your auditor. It’s to raise your monthly bookkeeping standard so the auditor has less to build. A few hundred dollars a month on competent bookkeeping regularly saves several thousand at year-end — and that’s before counting the risk reduction.


What’s Included in a Typical Audit Fee in Hong Kong

A standard audit engagement usually covers:

  • Planning and risk assessment.
  • Fieldwork and testing — sampling transactions, confirmations with banks and major debtors/creditors, year-end cut-off procedures.
  • Review of the draft financial statements against HKFRS.
  • Audit report issuance (the signed opinion).
  • Management letter, where material observations are documented.

Usually not included, and billed separately:

  • Bookkeeping or trial balance preparation.
  • Preparation and filing of the Profits Tax Return (often done by a separate tax services team).
  • Ad-hoc advisory work during the year.

Check each quote for exactly what’s in and out — the differences between firms at the same headline price are often substantial.


How to Reduce Your Audit Costs Without Cutting Corners

Practical levers that work for most HK SMEs:

  1. Reconcile every bank account every month. Year-end should be a quick confirmation, not a rebuild.
  2. Keep digital copies of every supporting document, filed against the relevant transaction.
  3. Finalise your year-end close before handover. Accruals, prepayments, depreciation, tax provisions all posted.
  4. Run a proper physical stock count at year-end if you carry inventory.
  5. Disclose related-party transactions upfront. Don’t let them surface mid-fieldwork.
  6. Designate one point of contact for the audit so queries don’t scatter across the team.
  7. Use accounting software your auditor can receive data from directly. Exports they don’t have to reshape save real time.

Each of these shaves time from the audit. Together they can cut the fee meaningfully — and make the whole process noticeably less stressful for your team.


Plan Your Next Audit With a Clean Lead-up

If you’d rather arrive at year-end with books already in audit-ready shape, Giga Accounting by 凌峰會計 produces monthly reports auditors can use with no reformatting. Many of our clients cut their audit fee substantially in the first year simply by starting the year with cleaner books.

Want to talk through your specific audit or quote? We offer certified auditing services and year-round bookkeeping support, and can give you a realistic fee range for your business. Get in touch or review our transparent pricing. If you want the month-by-month audit calendar, see our companion guide on the Hong Kong audit timeline.

Categories
Uncategorized

Hong Kong Audit Timeline: When Does Everything Need to Be Ready?

For most Hong Kong SMEs, the annual audit is the single most concentrated piece of compliance work in the year. And yet the real timeline — what needs to be ready, by when — is rarely explained clearly. Directors often discover the deadlines only when they’re already in trouble.

This guide lays out the realistic Hong Kong audit timeline: what happens when, what your auditor needs at each stage, and where the bottlenecks usually appear. The goal is simple — so you can plan the year rather than react to it.


The Audit Calendar — What Happens and When

Every HK company has its own financial year, but the sequence of events is the same:

  • Year-end cut-off. Typically 31 December or 31 March, though any date is allowed. This is the snapshot date for the financial statements.
  • Bookkeeping close. The first 4–6 weeks after year-end: bank reconciliations, accruals, stock count adjustments, AR/AP cut-off, and the draft trial balance.
  • Audit fieldwork. The auditor’s detailed testing and evidence gathering.
  • Audit finalisation. Draft report reviewed, amendments posted, management letter discussed, final report signed.
  • Profits tax return (PTR) filing. Filed with the Inland Revenue Department along with a copy of the audited accounts.
  • Companies Registry filing. Annual Return filed separately at the Companies Registry (this is not the same deadline as the tax filing).

Missing any of these steps — or running them out of sequence — is what produces last-minute scrambles and late-filing penalties.


How Your Financial Year End Determines Your Deadlines

The IRD’s profits tax filing deadlines depend on your year-end date and whether your tax representative participates in the Block Extension Scheme:

  • Year-end 1 April to 30 November (“N” code): normal filing deadline is 2 May of the following year; extended to around 15 August under block extension.
  • Year-end 1 December to 31 December (“D” code): normal deadline is 2 May; extended to around 15 November under block extension — but the extension is conditional, and loss-making companies benefit from an earlier extension.
  • Year-end 1 January to 31 March (“M” code): normal deadline is 2 May; extended to around 15 November under block extension.

Specific dates shift slightly year to year. Confirm the current year’s dates with your tax representative — but the structure above doesn’t change. The point is that a 31 December year-end company ultimately has the longest practical runway to a filed PTR, while a company with a mid-year end has the tightest.


What Your Auditor Needs — and When

Audit fieldwork runs smoothly or badly largely based on how complete the handover package is. A normal request list includes:

  • Trial balance and general ledger for the financial year, reconciled and finalised.
  • Bank statements and bank reconciliations for every account, for every month of the year.
  • AR and AP listings at year-end, aged, with supporting invoices available.
  • Fixed asset register with additions, disposals, and depreciation.
  • Stock listing at year-end with valuations.
  • Revenue documentation — customer invoices, sales contracts, major agreements.
  • Expense documentation — supplier bills, payroll summaries, MPF records, lease agreements.
  • Bank confirmations — requested via the auditor, returned directly to the auditor from the bank.
  • Minutes, shareholder registers, and corporate documents.
  • Related-party details — full listing of transactions and balances.

Most of this should exist already, in clean form, if monthly bookkeeping has been done properly. If it doesn’t, that reconstruction work is usually what makes the audit late and expensive.


Common Bottlenecks That Delay Audits

Audits rarely run late because the auditor is slow. They run late because one of these chokepoints:

  • Year-end bookkeeping isn’t finalised. The auditor receives a trial balance that’s still moving.
  • Bank reconciliations are incomplete. Several months of unexplained items.
  • Supporting documents are missing. Invoices that can’t be located, or receipts for major expenses that never made it into the filing.
  • Inventory was never counted at year-end. Auditors either qualify the opinion or rely on procedures that take far longer.
  • Related-party transactions surface late. Discovering a previously unrecorded director loan mid-fieldwork causes restatement work.
  • Directors’ sign-off is slow. Everything is ready except the last signature.

Every one of these is a bookkeeping or records issue, not an audit issue. Which is why the real leverage on audit timing sits with how well the books are kept during the year.


How Bookkeeping Throughout the Year Determines Your Audit Bill

Audit pricing in Hong Kong isn’t really about the scope of the business — it’s about the state of the records. Two companies of identical size can produce audit quotes that differ by 50–100% based on how clean their bookkeeping is.

The reason is simple: the auditor isn’t going to accept records they can’t verify. When records are clean, the work is sampling and confirmation. When records are messy, the work is reconstruction — building the trial balance the bookkeeper should have built. That’s billed at audit rates, which are substantially higher than bookkeeping rates.

A modest investment in monthly bookkeeping typically pays back several times over in audit fees alone.


Your Audit Preparation Checklist

A practical month-by-month view for a company with a 31 December year-end:

  1. December: physical stock count, bank balances confirmed, AR/AP cut-off sharp.
  2. January: finalise bank reconciliations, accruals, prepayments, depreciation, tax provisions. Trial balance locked.
  3. February–March: auditor fieldwork. Respond to queries within 2–3 days to keep momentum.
  4. April–May: final review, management letter, signed accounts.
  5. Profits tax return: filed by the applicable deadline for your year-end code.
  6. Annual Return: filed at Companies Registry within 42 days of the incorporation anniversary (separate from tax filing).

Want Your Next Audit to Be Easier?

The fastest way to shorten the audit is to arrive at year-end with books already in shape. Giga Accounting by 凌峰會計 produces month-end reports in exactly the format auditors want, and its monthly close tools make reconciliation routine rather than a year-end scramble.

Need hands-on help? We also offer certified auditing services and bookkeeping support for companies that want a cleaner lead-up to audit season. Get in touch if you want to discuss your specific timeline, or review our transparent pricing.

Categories
Uncategorized

Accounting Software for Hong Kong Retail Businesses

Retail is one of Hong Kong’s most visible SME sectors — from Causeway Bay fashion boutiques to Mong Kok electronics stores, Sham Shui Po gadget shops, and multi-branch F&B operators across the city. All of them share one thing: the accounting needs are nothing like a services business.

Retail runs on high-volume daily transactions, physical inventory that moves constantly, and cash flow patterns that swing with seasons and promotions. Generic accounting software wasn’t built for this. This guide covers what makes retail accounting different in Hong Kong, and what to look for in software that can keep pace.


The Unique Accounting Needs of Retail Businesses

A retail business has a specific accounting shape:

  • Hundreds to thousands of small transactions per day, each with cost of goods sold attached.
  • Physical inventory that constantly changes — incoming stock, sold stock, returned stock, damaged stock, promotional giveaways.
  • Mixed payment methods — cash, Octopus, credit card, Alipay, WeChat Pay, FPS, Apple Pay, store credit — each settling on different timelines.
  • Multiple sales channels — physical store, online store, delivery platforms — which must roll up into one set of books.
  • Promotional complexity — discounts, bundles, BOGO, loyalty points, gift cards — each with its own accounting treatment.

If any of these are currently handled in spreadsheets outside your accounting system, the risk of year-end misstatement is high.


Inventory Valuation Methods (FIFO, Weighted Average)

For retailers, how you value inventory isn’t a technicality — it directly determines reported profit. The two methods most commonly used in Hong Kong are:

  • First-In-First-Out (FIFO). Assumes the oldest stock sells first. Typically gives higher reported profits in rising-cost environments, which can be a double-edged sword — more tax payable in good years.
  • Weighted Average Cost. Blends costs across batches. Smooths out margin volatility, simpler to compute at scale, and commonly used in fashion, electronics, and F&B retail.

The method isn’t something you flip back and forth on. Once chosen, it should be applied consistently, with the rationale documented — your auditor will ask. Good retail accounting software lets you choose at the outset and automates the calculation from then on.


Managing Cash Sales and Point-of-Sale Reconciliation

Cash handling is where retail accounting often breaks down. Every day produces a takings figure — cash in the till, card settlements, digital wallet reports, Octopus reports — and that total has to agree with sales recorded in the accounts. When it doesn’t, the difference is either a bookkeeping error, a missed refund, or a cash shrinkage issue. You want to know which, quickly.

Proper retail accounting software supports:

  • Daily Z-report integration from the POS into the accounts, not manual re-keying.
  • Separate tracking of cash, card, and digital wallet settlements, each reconciled against its own clearing account.
  • Documented over/short reporting by till and by shift, so variances are investigated before they compound.

Without this, the gap between the POS total and the accounting total grows steadily, and the annual audit becomes a reconstruction exercise.


Handling Returns, Discounts, and Promotional Pricing

Promotions are not decorations on the P&L — they have real accounting consequences:

  • Returns need to reduce both revenue and COGS, and restore inventory if the item is resalable.
  • Discounts should be recorded against revenue, not buried in COGS, so gross margin stays meaningful.
  • Bundles and BOGO require revenue to be allocated across items proportionally, not stuffed into one line.
  • Loyalty points and gift cards are liabilities until redeemed — not revenue when issued.

Retailers who treat all of the above as “just discount off the top” end up with revenue figures that don’t match what the business actually earned — and margin analysis that gives the wrong signal.


Seasonal Stock and Cash Flow Planning

Retail cash flow is rarely flat. Chinese New Year, Mid-Autumn, Christmas, back-to-school, rainy summer weekends — all of these create sharp peaks and troughs. Good retail accounting software gives you what a spreadsheet can’t:

  • Rolling cash flow forecasts based on historical seasonal patterns.
  • Inventory days-on-hand by category so you can see where cash is tied up.
  • Supplier lead time awareness — if your supplier needs six weeks and you carry eight, you know when to reorder.
  • Markdown tracking so the impact of end-of-season discounts on gross margin is visible in the same period it happens.

What to Look for in Retail Accounting Software

When evaluating options for a Hong Kong retail business, check specifically for:

  • Integrated inventory and accounts on a single platform — not two systems you reconcile manually.
  • POS integration, ideally with daily automated sync rather than manual import.
  • Traditional Chinese interface for frontline staff who may not be comfortable with English-only tools.
  • Multi-branch reporting if you have more than one location.
  • Multi-currency if you source overseas.
  • Clear handling of digital wallet settlements — Octopus, Alipay, WeChat Pay, FPS — each has its own timing and fee structure.
  • HKFRS-formatted reports your auditor will accept without manual reformatting.

Ready to Upgrade Your Retail Accounts?

If your current setup is a POS system on one side, an accounting tool on the other, and a weekly Excel to join them — the year-end audit will cost more than it should, and your day-to-day visibility into margin and inventory is probably weaker than it could be. Giga Accounting by 凌峰會計 was built with retail complexity in mind: integrated inventory, flexible valuation methods, and HKFRS-ready reports out of the box. The 10GB-per-company storage allowance accommodates the higher document volume retail businesses generate — POS daily-Z reports, supplier invoices, stock-take sheets, consignment dockets — without forcing year-end purge of supporting documents.

Both the Windows desktop edition and the cloud edition are available for trial. Get in touch for a walkthrough against your specific retail workflow, or review our transparent pricing. If cash flow is your immediate concern, our earlier guide to the best accounting software for HK SMEs in 2026 has additional context.

Categories
Uncategorized

Accounting Software for Trading Companies in Hong Kong

Hong Kong was built on trading. From small import-export shops in Sheung Wan to regional distributors running warehouses in Kwai Chung, the buy-low-sell-high model still drives a huge share of the city’s SMEs. But if you actually run a trading company here, you know the accounting is nothing like a simple services business.

You’re juggling multiple currencies, shipments that cross quarters, suppliers in half a dozen countries, and customers who pay on terms that never quite match. Most generic accounting software — especially the international cloud tools — wasn’t designed for this shape of business. This guide covers what makes trading company accounting genuinely different, and what to look for in software that can actually keep up.


What Makes Trading Company Accounting Different

A services firm invoices, collects, and books revenue. A trading company has to track the cost of goods at every stage between supplier and customer. That changes the accounting in several concrete ways:

  • Cost of goods sold (COGS) must be tied to specific shipments, not just period totals. Margin per product — or per shipment — is the real measure of whether the business is working.
  • Inventory and accounts need to stay in sync. Goods on the water, goods in the warehouse, and goods already delivered but not yet invoiced are three different balance sheet positions.
  • Timing gaps are large. You may pay a supplier in USD in January, receive goods in March, and invoice a customer in EUR in May. The software has to hold all of that without losing track of realised and unrealised FX movements.
  • Landed cost matters. Freight, duties, insurance, and clearance fees all belong in the cost of each shipment — not lumped into an expense line at year-end.

Software that treats every transaction as a simple invoice-in / invoice-out event will quietly misstate your margins. For a trading business, that’s not a minor inconvenience — it changes the decisions you make about pricing and product mix.


Managing Multi-Currency Transactions in Hong Kong

Most HK trading companies deal in at least two currencies — typically HKD plus USD, RMB, EUR, JPY, or GBP, depending on the supplier base. Good accounting software has to handle this without making it anyone’s job to remember:

  • Per-transaction exchange rate captured at booking time, not overwritten by later rates.
  • Separate bank accounts per currency, each reporting in its native currency but also consolidated to HKD for management and audit.
  • Automatic realised and unrealised FX gain/loss postings at month-end, so you’re not running manual Excel reconciliations.
  • Multi-currency invoices that bill the customer in their currency but record revenue correctly in HKD.

A tool that merely “supports” multi-currency by letting you type in a different symbol is not enough. You want a tool that separates the operational currency of the transaction from the reporting currency of your accounts, automatically and consistently.


Tracking Inventory Alongside Your Accounts

Separating inventory from accounting — keeping stock in one system and books in another — is one of the most common self-inflicted wounds in HK trading businesses. It usually seems fine until the first audit, at which point the two systems disagree, and someone spends a full week reconciling them by hand.

A proper trading-company setup keeps inventory and accounts in the same platform, so every movement is reflected automatically:

  • Purchase order → goods received updates both inventory on hand and accounts payable.
  • Sales order → shipment reduces inventory and raises revenue in the same posting.
  • Stock adjustments, write-offs, and returns post to the correct expense and cost accounts without needing a manual journal each time.

If your team still reconciles stock to books manually every month, the software is failing you — regardless of how nice the dashboard looks.


Handling Accounts Payable Across Multiple Suppliers

Trading businesses often carry dozens of active supplier relationships across several jurisdictions. Accounts payable in this context isn’t just “enter a bill and pay it” — it’s credit terms, deposits, partial shipments, and retention amounts, all tracked by supplier and by PO:

  • Supplier ledgers that show orders, goods received, invoices, deposits, and payments — in the supplier’s currency and yours.
  • Aged AP broken down by currency so you can see real cash commitments, not just HKD totals.
  • Deposit tracking against future shipments, so prepayments aren’t buried in a generic “advances” line.

The goal is to be able to answer “how much do I actually owe supplier X, in which currency, and when is each piece due” in one screen — not by stitching together three spreadsheets.


Documents and Audit Trail for Import/Export Businesses

Trading companies are one of the most heavily documented SME categories in Hong Kong. Customs declarations, bills of lading, commercial invoices, packing lists, insurance certificates, and bank remittance records all need to match each other and your books. For your auditor and for the Inland Revenue Department, the paper trail is the business.

Modern accounting software can make this painless by attaching scanned documents directly to the relevant transaction — the PO, the supplier bill, the customer invoice. When the auditor asks for proof, you click once instead of digging through a drawer. Software that treats documents as a second-class feature is a serious problem once you’re three years in and thousands of shipments deep.


How Giga Accounting Supports Trading Operations

Giga Accounting by 凌峰會計 (Lin Fung Accounting) was built for exactly this shape of Hong Kong business. It supports full multi-currency bookkeeping with automatic FX posting, integrated inventory and accounts on a single ledger, supplier-level AP tracking across currencies, and document attachment at the transaction level. It’s available as a Windows desktop edition for teams that want full local control of their data, or as a cloud edition for distributed teams and multi-location access.

The software is Hong Kong–localised from the ground up: Traditional Chinese and English interfaces, HKFRS-formatted reports your auditor will recognise, and support staff who understand what a trading business actually does day to day.


Ready to Upgrade Your Trading Company Accounts?

If your current setup is a patchwork of Excel stock sheets, a generic cloud accounting tool, and a supplier-by-supplier email folder, you’re carrying more risk than you probably realise. Giga Accounting by 凌峰會計 offers both a Windows desktop edition and a cloud accounting system designed for Hong Kong trading companies. You can download a free trial and test it against your real shipments before paying anything.

Want help deciding whether it fits your workflow? Get in touch with our team for a walkthrough, review our transparent pricing, or read our earlier comparison on QuickBooks vs Xero vs local software if you’re still weighing the international options.

Categories
Uncategorized

How to Choose an Accounting Firm in Hong Kong: SME Guide

At some point, most Hong Kong business owners face the same question: do I need an accounting firm, or can I handle this myself? And if the answer is yes, a firm — then which one, and how do you choose wisely when you don’t have a finance background?

This guide cuts through the noise and gives you a practical framework for making that decision — including what to look for, what questions to ask before you sign anything, and the red flags that should make you walk away.


CPA vs Bookkeeper vs Accounting Software — What You Actually Need

Before choosing a firm, it’s worth being clear on what kind of help you actually need. Not every accounting task requires a CPA, and overpaying for professional services you don’t need is as costly as underpaying and getting poor work.

A bookkeeper handles:

  • Day-to-day transaction recording — sales, purchases, payments, receipts
  • Bank reconciliation
  • Accounts receivable and payable tracking
  • Monthly management accounts
  • Payroll processing and MPF administration

A bookkeeper does not need to be a CPA, and bookkeeping rates are generally much lower than CPA rates. For many SMEs, good bookkeeping is the highest-impact investment they can make in their financial management.

A CPA (Certified Public Accountant) handles:

  • Statutory audit — legally required for all Hong Kong incorporated companies
  • Profits tax return preparation and filing
  • Tax planning and advisory
  • Financial statement preparation to professional standards
  • Advising on complex accounting treatments

In Hong Kong, only a CPA registered with the Hong Kong Institute of CPAs (HKICPA) can sign off on a statutory audit. You cannot file your profits tax return without audited accounts, which means every incorporated Hong Kong company needs a CPA at some point in the year.

Accounting software handles:

  • Everything a bookkeeper does — if you or a staff member are willing to do the data entry
  • Generating management reports automatically
  • Producing financial statements in the format your CPA needs
  • Keeping a clean audit trail that makes your CPA’s job faster and cheaper

For lean SMEs, the right model is often: accounting software for day-to-day bookkeeping + a CPA for annual audit and tax filing. This keeps professional fees lower while maintaining compliance.


What to Look for in a Hong Kong Accounting Firm

Not all accounting firms are created equal — and the biggest firm isn’t always the best choice for an SME. Here’s what actually matters:

  • HKICPA registration — confirm that the firm’s partners are registered CPAs. You can verify registration on the HKICPA website. This is non-negotiable for audit work.
  • Experience with businesses at your stage and in your industry — a firm that primarily handles large corporates may not be the best fit for a startup or a growing SME. Look for a firm that has relevant experience with companies of your size and sector.
  • Responsiveness — accounting has deadlines. A firm that takes days to reply to emails during normal periods will take even longer when things get busy. Responsiveness during the pitch stage is often a preview of service quality later.
  • Clear, transparent fee structure — understand exactly what you’re paying for. A good firm will give you a fixed-fee quote based on your transaction volume and complexity, not an open-ended hourly rate with no ceiling.
  • Language capability — if your business operates in Chinese, or your documents are in Chinese, make sure the firm can work comfortably in both languages.
  • Technology adoption — does the firm work with modern accounting software? A firm that still relies on manual processes or outdated tools will be slower and more expensive to work with.

Questions to Ask Before You Sign

A good accounting firm will welcome these questions. If a firm is evasive or dismissive when you ask them, take that as a signal.

  • “Who will actually work on my accounts?” — At larger firms, partners pitch the business but juniors do the work. Know who your day-to-day contact will be and their level of experience.
  • “What is included in your fee, and what would incur additional charges?” — Get this in writing. Common add-on charges include ad hoc queries, additional filing requirements, and rush fees near deadlines.
  • “What information do you need from me, and in what format?” — Understanding the handover process helps you prepare properly and avoids expensive back-and-forth later.
  • “What is your turnaround time for the audit and tax return?” — A firm that can’t give you a realistic timeframe is either overcommitted or disorganised.
  • “Can you provide references from current clients of similar size?” — Any reputable firm should be able to do this.
  • “What happens if there is an IRD query or investigation?” — Understand whether the firm will represent you and at what additional cost.

Red Flags to Watch For

Hong Kong has many excellent accounting firms — and a small number that are not what they appear. These warning signs should prompt you to look elsewhere:

  • Unusually low fees with no explanation — audit and accounting work has a real cost. If a quote seems too good to be true, ask what’s being cut. Common shortcuts include rubber-stamp audits that don’t actually test your accounts.
  • No written fee agreement — reputable firms always provide written engagement letters. If a firm is reluctant to put its fees and scope in writing, walk away.
  • Pressure to sign quickly — a firm that pressures you to commit before you’ve had time to compare options is not acting in your interest.
  • Inability to explain their process clearly — if a firm can’t explain in plain terms how they’ll conduct your audit and what they’ll need from you, they’re either disorganised or inexperienced.
  • No verifiable HKICPA registration — always check. It takes two minutes on the HKICPA website and could save you significant problems later.
  • Poor communication during the inquiry stage — if it’s hard to get a clear answer before you’re a client, it will only get harder afterwards.

When to Use a Firm vs When to DIY with Software

The right answer depends on your business size, complexity, and how much time you’re willing to invest in managing your own accounts.

Use a firm (or outsourced bookkeeper) if:

  • Your transaction volume is high and growing
  • You don’t have time or inclination to manage your own books
  • Your accounts are currently behind or disorganised
  • You need specialist tax advice beyond standard returns
  • You manage multiple companies and need consolidated reporting

DIY with software if:

  • Your transaction volume is manageable and your accounts are relatively straightforward
  • You or a staff member are willing to handle regular data entry and reconciliation
  • You want real-time visibility into your financials without waiting for a monthly report from a third party
  • Cost control is a priority — good software costs a fraction of outsourced bookkeeping fees

Many successful SMEs use a combination: accounting software for day-to-day bookkeeping, and a CPA engaged for the annual audit and tax return only. This gives you professional compliance without paying professional rates for work you can do yourself.


How Giga Accounting by 凌峰會計 Fits Different Business Stages

At Giga Accounting by 凌峰會計, we work with Hong Kong businesses at different stages of growth — and we offer services designed to fit each stage:

  • New businesses — our bookkeeping service gets your accounts set up correctly from the start and keeps them maintained, so your first audit goes smoothly
  • Growing SMEs — our professional audit and accounting services handle your annual compliance so you can focus on growing the business
  • Self-managing businessesGiga Accounting, our Hong Kong-built accounting software, gives you the tools to manage your own books with confidence — in Chinese or English, on desktop or cloud

We’re happy to discuss which combination makes the most sense for your business. Contact our team for a no-pressure conversation, or visit our pricing page to understand what each service costs.

Categories
Uncategorized

Setting Up a Company in Hong Kong: Your Accounting Checklist

Incorporating a company in Hong Kong is remarkably straightforward — the process is fast, affordable, and one of the most business-friendly in the world. But what happens after incorporation is where many new business owners get caught out. The accounting obligations begin the moment your company exists, and setting things up correctly from the start will save you significant time, money, and stress down the road.

This guide walks you through everything you need to have in place on the accounting side — from your very first decisions to your first 90 days of operation.


What Accounting Obligations Start on Day One

Many new company directors are surprised to learn that their accounting obligations begin immediately upon incorporation — not when they make their first sale, not when they hire their first staff member, but from the moment the company legally exists.

From day one, your company is required to:

  • Keep proper books of account — the Companies Ordinance requires every Hong Kong company to maintain accounting records that correctly explain its transactions, financial position, and enable financial statements to be prepared
  • Retain financial records for at least seven years — this is an IRD requirement that applies from your company’s first transaction
  • Prepare annual financial statements — which must be audited by a certified public accountant before being submitted with your profits tax return
  • File an annual profits tax return — the IRD will issue your first return approximately 18 months after incorporation, but your accounts need to be in order from the beginning
  • File an annual return with the Companies Registry — a separate requirement from the tax return, confirming your company’s registered details

None of these obligations wait for your business to be “ready.” Setting up your accounting infrastructure on day one means you’ll never be scrambling to reconstruct records you should have kept all along.


Choosing a Financial Year End

One of the first decisions you’ll make as a new company director is choosing your financial year end — the date on which your company’s annual accounts will be prepared. In Hong Kong, you have complete flexibility to choose any date you like, and it’s a decision worth thinking through carefully.

Common choices and their practical implications:

  • 31 December — aligns with the calendar year, making it easy to track annual performance. This is the most common choice globally.
  • 31 March — popular in Hong Kong as it aligns with the government’s financial year and the IRD’s bulk issuance of tax returns in April
  • 30 September or 31 October — gives you a quieter audit and reporting period, away from the busy December and March windows when many accountants are stretched

Things to consider when choosing:

  • When is your business naturally busiest? You generally don’t want your year end to fall right in the middle of your peak trading season.
  • Do you have related companies? Aligning year ends within a group makes consolidated reporting much simpler.
  • When does your CPA firm get busiest? If you’re working with a smaller firm, choosing a less common year end can mean you get more attention and faster turnaround.

Once chosen, changing your financial year end requires notification to the IRD and may have tax implications — so it’s worth getting this right from the start.


Opening a Business Bank Account and Connecting It to Your Accounts

A dedicated business bank account is non-negotiable. Mixing personal and business finances in the same account creates accounting nightmares, complicates your tax position, and raises red flags with auditors.

When opening your business bank account in Hong Kong:

  • Most major banks — HSBC, Hang Seng, Bank of China, Standard Chartered — offer business accounts for newly incorporated companies. The process typically takes two to four weeks and requires your Certificate of Incorporation, Business Registration Certificate, and directors’ identity documents.
  • Some newer digital banks (like Neat or Statrys) offer faster account opening for SMEs and may be a practical option for businesses that don’t need traditional banking services.
  • Open the account as early as possible — bank account opening in Hong Kong can take longer than expected, and you’ll need it before you can accept customer payments or pay suppliers properly.

Once your bank account is open, connect it to your accounting system. The best accounting software allows you to import bank statements directly (or reconcile against them easily), which dramatically reduces data entry time and the risk of errors.


Registering for Profits Tax

New companies are not required to proactively register for profits tax — the IRD will issue your Business Registration Certificate automatically after incorporation, and will send your first profits tax return approximately 18 months later.

However, you should be aware of the following:

  • Business Registration Certificate — you must display this at your place of business and renew it annually (or every three years if you opt for the three-year certificate). The fee is currently HK$2,150 per year.
  • Employer’s Return — if you hire staff, you’ll need to file an Employer’s Return (BIR56A) each April, reporting salaries paid to employees. This triggers when you have your first employee.
  • Notification of chargeability — if you believe your company has assessable profits before receiving your first tax return, you should notify the IRD proactively. Failing to do so when profits exist can result in penalties.

Choosing Your Accounting Software Before You Have Transactions

This point is more important than most new business owners realise: choose your accounting software before your first transaction, not after.

Here’s why it matters:

  • Migrating historical data from spreadsheets (or worse, paper records) into an accounting system later is time-consuming, error-prone, and sometimes impossible to do completely
  • Your chart of accounts — the structure of income and expense categories — is much easier to set up correctly from the start than to reorganise after hundreds of transactions have been coded against it
  • Consistent data from day one means your financial reports are meaningful from day one — you can see where your money is going in real time
  • Your auditor will thank you — accounts maintained in proper software from the beginning are significantly easier and cheaper to audit than reconstructed records

For most Hong Kong SMEs, the choice comes down to a cloud-based subscription platform or a locally installed desktop system. Both have their place — our guide on desktop vs cloud accounting software covers the trade-offs in detail. For businesses that want a system built for Hong Kong from the ground up — with Chinese language support, HK-format reports, and multi-company capability — Giga Accounting by 凌峰會計 is worth a close look.


Your First 90-Day Accounting Checklist

Use this checklist to make sure your accounting foundations are solid in your company’s first three months:

Week 1–2 (Immediately after incorporation):

  • ☐ Choose your financial year end date
  • ☐ Apply to open a business bank account
  • ☐ Select and set up your accounting software
  • ☐ Set up your chart of accounts to reflect your business structure
  • ☐ Engage a CPA or bookkeeper if you’re not managing accounts in-house

Week 3–4:

  • ☐ Bank account open — record opening balance in your accounting system
  • ☐ Record any incorporation costs (government fees, legal fees) as expenses
  • ☐ Set up supplier and customer records in your accounting system
  • ☐ Establish a process for capturing receipts and invoices consistently

Month 2–3:

  • ☐ Complete your first bank reconciliation
  • ☐ Review your first month’s profit and loss — are expenses being coded correctly?
  • ☐ Set up payroll if you have employees, and begin making MPF contributions
  • ☐ Confirm your Business Registration Certificate is displayed and renewal date is in your calendar
  • ☐ Store all financial documents securely — digitally where possible

Start Right — and Stay Right

The businesses that find tax season, audit time, and financial planning easiest are almost always the ones that built good accounting habits from the very beginning. It’s far easier to maintain a clean set of books than to reconstruct a messy one.

If you’re in the early stages of setting up your Hong Kong company and want to get the accounting right from day one, our team is happy to help. You can also explore our bookkeeping services, try Giga Accounting free, or check our pricing page to see what’s included.

Categories
Uncategorized

Hong Kong Profits Tax: A Plain-English Guide for SMEs

Hong Kong has one of the simplest tax systems in the world — but “simple” doesn’t mean there’s nothing to understand. For SME owners, profits tax is the most significant tax obligation you’ll face, and getting it wrong can mean penalties, delays, and unwelcome surprises at the end of your financial year.

This guide cuts through the jargon and explains everything a Hong Kong small business owner needs to know about profits tax — including how to keep your accounts organised so that tax season never becomes a crisis.


What Is Profits Tax and Who Pays It?

Profits tax is a tax levied by the Hong Kong Inland Revenue Department (IRD) on profits arising from a trade, profession, or business carried on in Hong Kong. It applies to:

  • Corporations — limited companies incorporated in Hong Kong or elsewhere but carrying on business in HK
  • Partnerships — including limited partnerships
  • Sole proprietors — individuals carrying on a business in their own name
  • Unincorporated bodies — associations, clubs, and similar organisations that generate taxable profits

The key phrase is “arising in or derived from Hong Kong.” Profits from business activities conducted entirely outside Hong Kong are generally not subject to profits tax — but establishing that a profit is genuinely offshore in nature requires proper documentation and, in many cases, professional advice.

Individuals who are employees earning a salary do not pay profits tax — they pay salaries tax instead. Profits tax is specifically for business profits.


How the Two-Tier Tax Rate Works (8.25% / 16.5%)

One of Hong Kong’s most business-friendly features is its two-tier profits tax system, introduced to give small businesses a lower effective tax rate. Here’s how it works:

  • The first HK$2 million of assessable profits is taxed at 8.25% (for corporations) or 7.5% (for unincorporated businesses)
  • Any profits above HK$2 million are taxed at the standard rate of 16.5% (corporations) or 15% (unincorporated businesses)

This two-tier system means that a company with HK$2 million in assessable profits pays HK$165,000 in tax — an effective rate of 8.25%. A company with HK$5 million in assessable profits pays HK$165,000 on the first HK$2 million and HK$495,000 on the remaining HK$3 million — a total of HK$660,000, or an effective rate of 13.2%.

Important: Only one entity within a group of connected companies can benefit from the reduced rate on the first HK$2 million. If you have multiple related companies, you’ll need to nominate which one claims the lower rate.


What Counts as Assessable Profits

Your assessable profits are not simply your total revenue — they’re calculated by taking your revenue and subtracting allowable deductions. The starting point is your accounting profit (as shown in your profit and loss account), which is then adjusted for tax purposes.

Items that increase your assessable profits (i.e. are added back):

  • Depreciation charged in your accounts (replaced by capital allowances under tax rules)
  • Private or personal expenses charged to the business
  • Provisions that don’t meet IRD criteria
  • Entertainment expenses above the allowable portion
  • Fines and penalties

Items that reduce your assessable profits:

  • Capital allowances on qualifying plant and machinery
  • Industrial and commercial building allowances
  • Approved charitable donations (subject to limits)
  • Losses carried forward from previous years

Common Deductible Expenses for HK SMEs

The general rule is that expenses are deductible if they are incurred wholly and exclusively for the purpose of producing assessable profits. Common deductible expenses for Hong Kong SMEs include:

  • Staff salaries, wages, and bonuses — including MPF employer contributions
  • Office rent — if you rent your business premises
  • Business insurance premiums
  • Professional fees — accounting, auditing, and legal fees directly related to business operations
  • Utilities — electricity, water, and internet used for business purposes
  • Repairs and maintenance — of business premises and equipment (not improvements)
  • Bank charges and interest — on loans used for business purposes
  • Advertising and marketing costs
  • Bad debts — trade debts that have been written off and are genuinely irrecoverable
  • Travel expenses — for business purposes, properly documented

Expenses that are not deductible include: capital expenditure (though capital allowances may apply), domestic or private expenses, and costs incurred before the business commenced.


How to Prepare for Your Profits Tax Return

The IRD issues profits tax returns (BIR51 for corporations, BIR52 for partnerships and sole proprietors) each April. You generally have one month to file, though your CPA or tax representative can usually apply for an extension.

What you’ll need to file:

  • Audited financial statements — for incorporated companies, your accounts must be audited by a certified public accountant before filing
  • Profits tax computation — a schedule showing how your accounting profit has been adjusted to arrive at assessable profits
  • Supporting schedules — details of depreciation, capital allowances, loan interest, and other specific items

This is why your bookkeeping matters so much throughout the year. If your accounts are incomplete, inconsistent, or disorganised when the return is due, your accountant will need to spend time (and your money) reconstructing them — and your audit will take longer and cost more.

The best way to prepare for your tax return is to never fall behind on your books in the first place.


How Accounting Software Keeps You Tax-Ready Year-Round

The businesses that handle tax season with the least stress are almost always the ones with well-maintained, up-to-date books throughout the year. Good accounting software makes this possible without requiring you to be an accounting expert.

Here’s what the right software does for you:

  • Keeps your profit and loss account current — so you always have a real-time view of your taxable profits, not just a year-end surprise
  • Tracks deductible expenses consistently — by coding transactions to the correct accounts, your deductible expenses are captured accurately without end-of-year scrambling
  • Produces Hong Kong-format financial statements — reports formatted to meet the expectations of your CPA and auditor, reducing the time they need to spend preparing your accounts
  • Maintains a clean audit trail — every transaction is recorded with a date, reference, and description, making it straightforward to verify entries if the IRD ever asks questions
  • Supports multi-year data retention — the IRD requires businesses to keep records for at least seven years; good software holds multiple years of data without performance issues

Giga Accounting by 凌峰會計 is designed specifically for Hong Kong businesses, with report formats that align with local CPA and auditor requirements and the ability to store years of records without slowdown. If you’re currently managing your books in spreadsheets — or not managing them as consistently as you’d like — it’s worth exploring what a purpose-built system can do for your tax readiness.


Get Your Books Tax-Ready Before the Rush

Don’t wait until April to find out your accounts need work. The best time to get your bookkeeping in order is right now — so that when your tax return is due, your CPA has everything they need and you’re not facing a stressful, expensive scramble.

Explore our bookkeeping and accounting services, try a free download of Giga Accounting, or check our pricing page to find the right option for your business. And if you’d like to talk through your specific situation, our team is here to help.