Edit Payment - Cospend

Edit Payment

← Back to Payments
{#if loading}
Loading payment...
{:else if error}
Error: {error}
{:else if payment}

Payment Details

payment.date = new Date(e.target.value).toISOString()} required />
{#if payment.splits && payment.splits.length > 0}

Current Splits

{#each payment.splits as split}
{split.username} 0}> {#if split.amount > 0} owes CHF {split.amount.toFixed(2)} {:else if split.amount < 0} owed CHF {Math.abs(split.amount).toFixed(2)} {:else} even {/if}
{/each}

Note: To modify splits, please delete and recreate the payment.

{/if}
{/if}