<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>thread Re: Splitting payment types in the app in Food &amp; Beverage</title>
    <link>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306373#M847</link>
    <description>&lt;P&gt;this article should get you going on split payments. &amp;nbsp;we use it all the time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://squareup.com/help/us/en/article/5097-process-split-tender-payments-with-square" target="_blank"&gt;https://squareup.com/help/us/en/article/5097-process-split-tender-payments-with-square&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Sep 2021 15:43:04 GMT</pubDate>
    <dc:creator>VanKalkerFarms</dc:creator>
    <dc:date>2021-09-27T15:43:04Z</dc:date>
    <item>
      <title>Splitting payment types in the app</title>
      <link>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306361#M844</link>
      <description>&lt;P&gt;We use the square app when we are mobile (e.g., farmers market) and I can’t figure out how to split a transaction when a customer wants to pay with some cash and the rest with card. Is this possible and I’m just missing it? Or is it on the development list?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 15:22:03 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306361#M844</guid>
      <dc:creator>larissa166</dc:creator>
      <dc:date>2021-09-27T15:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting payment types in the app</title>
      <link>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306373#M847</link>
      <description>&lt;P&gt;this article should get you going on split payments. &amp;nbsp;we use it all the time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://squareup.com/help/us/en/article/5097-process-split-tender-payments-with-square" target="_blank"&gt;https://squareup.com/help/us/en/article/5097-process-split-tender-payments-with-square&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 15:43:04 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306373#M847</guid>
      <dc:creator>VanKalkerFarms</dc:creator>
      <dc:date>2021-09-27T15:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting payment types in the app</title>
      <link>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306622#M860</link>
      <description>&lt;P&gt;Ah! Ok. I was getting thrown off by the split by # of ways on that screen so I never proceeded. I’ll give it a try next time. Thx!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 12:55:11 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/306622#M860</guid>
      <dc:creator>larissa166</dc:creator>
      <dc:date>2021-09-28T12:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting payment types in the app</title>
      <link>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/835129#M4191</link>
      <description>&lt;P&gt;We’ve implemented this feature in several POS and fintech apps. Splitting payment types (cash + card + wallet, etc.) is mostly a business logic and backend design problem, not just a UI one.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How it’s usually handled:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Single Order, Multiple Transactions&lt;/LI&gt;&lt;LI&gt;Cash&lt;/LI&gt;&lt;LI&gt;Card&lt;/LI&gt;&lt;LI&gt;UPI / Wallet&lt;/LI&gt;&lt;LI&gt;Gift card, etc.&lt;/LI&gt;&lt;LI&gt;Backend Ledger Structure&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Your backend should maintain:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;order_id&lt;/LI&gt;&lt;LI&gt;payment_method&lt;/LI&gt;&lt;LI&gt;amount&lt;/LI&gt;&lt;LI&gt;transaction_reference&lt;/LI&gt;&lt;LI&gt;This way you can reconcile reports properly and avoid accounting issues.&lt;/LI&gt;&lt;LI&gt;POS / Payment Gateway Support&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Not all gateways support split payments natively. If they don’t, you need:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sequential payments (collect partial amount, then next)&lt;/LI&gt;&lt;LI&gt;Final confirmation only when total = order amount&lt;/LI&gt;&lt;LI&gt;Refund Handling (Important)&lt;/LI&gt;&lt;LI&gt;Refunds must also be split proportionally or by original method — otherwise finance teams will hate you later.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Real-world tip:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;On one retail POS project, Nimble AppGenie implemented split payments using a ledger-based model where the checkout flow allowed partial captures and only closed the order once all methods were settled.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This approach scales well for:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;POS systems&lt;/LI&gt;&lt;LI&gt;Restaurant apps&lt;/LI&gt;&lt;LI&gt;BNPL + card combos&lt;/LI&gt;&lt;LI&gt;Wallet + cash flows&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 12 Feb 2026 10:13:03 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Food-Beverage/Splitting-payment-types-in-the-app/m-p/835129#M4191</guid>
      <dc:creator>nimbleappgenie</dc:creator>
      <dc:date>2026-02-12T10:13:03Z</dc:date>
    </item>
  </channel>
</rss>

