# 计算已支付的 Stripe 和平台申请费

### 以 Standard Connect 账户用户身份使用 [余额摘要报告](https://dashboard.stripe.com/reports/balance)来计算支付给 Stripe 的费用以及支付给您平台的收款、付款或提现的平台费。
---
Standard Connect 账户用户涉及两种类型的费用：支付给 Stripe 的费用和支付给您的平台的平台费。使用[余额摘要报告](https://dashboard.stripe.com/reports/balance)查看选定时间段内 Stripe 与平台之间的收款、付款或提现费用的分配情况。
### 计算与收款和付款相关的费用
1. 登录到 Stripe 管理平台，然后导航到[余额摘要报告](https://dashboard.stripe.com/reports/balance)。
1. 向下滚动到**来自活动的余额变化**并选择**下载**。选择这些选项：
* **报告格式**:选择**分项**
* **报告类别**：选择**全部**
* **列**：选择**全部**
1. 支付给平台的平台费列在 **application\_fee** 列。
* 空值表示没有平台费。
* 负值表示平台已将平台费退还给您。
1. 根据交易的 **reporting\_category** 计算支付给 Stripe 的费用。
1. 如果 **reporting\_category** 是**费用**，则使用以下公式：`（-1 x 净列值）-（application_fee 列值）= 支付的 Stripe 费用`
1. 如果 **reporting\_category** 是**任何其他类型**，则使用以下公式：`（费用列值）-（application_fee 列值） = 支付的 Stripe 费用`
### 收款和付款示例下载
- **balance\_transaction\_id**
- **reporting\_category**
- **总额**
- **净额**
- **费用**
- **application\_fee**
---
- txn_001
- 费用
- 15
- 15
- 0
- -15
---
- txn_002
- 收款
- 100
- 80
- 20
- 15
---
- txn_003
- 退款
- -100
- -95
- -5
- 
此次下载费用的计算步骤：
**txn\_001**：使用步骤 4a 中的公式，因为 **reporting\_category** 是**费用**。
* `（-1 x 净列值） - （application_fee 列值） = 支付的 Stripe 费用`
* `(-1 x 15) - (-15) = 0 美元（支付的 Stripe 费用）`
**txn\_002**：使用步骤 4b 中的公式，因为 **reporting\_category** 是**收款**。
* `（费用列值） - （application_fee 列值） = 支付的 Stripe 费用`
* `20 - 15 = 5 美元（支付的 Stripe 费用）`
**txn\_003**：使用步骤 4b 中的公式，因为 **reporting\_category** 是**退款**。**application\_fee** 为 null，因此未收取任何申请费。
* `（费用列值） - （application_fee 列值） = 支付的 Stripe 费用`
* `(-5) - 0 = -5 美元（支付的 Stripe 费用）。这意味着 Stripe 退回了 5 美元的费用。`
### 计算与提现有关的费用
1. 登录到 Stripe 管理平台，然后导航到[余额摘要报告](https://dashboard.stripe.com/reports/balance)。
1. 向下滚动到**提现**，然后选择**下载**。选择这些选项：
* **报告格式**:选择**分项**
* **列**：选择**全部**
1. 支付给平台的平台费列在 **application\_fee** 列。
* 空值表示没有平台费。
* 负值表示平台已将平台费退还给您。
1. 使用以下公式计算支付给 Stripe 的费用： `（-1 x 费用列值）-（application_fee 列值） = 支付的 Stripe 费用`
### 提现样本下载
- **automatic\_payout\_id**
- **总额**
- **净额**
- **费用**
- **application\_fee**
---
- po_001
- 55
- 56
- -1
- 1
---
- po_002
- 30
- 30
- 0
- 
此次下载费用的计算步骤：
**po\_001**：使用步骤 4 中的公式。
* `（-1 x 费用列值） - （application_fee 列值） = 支付的 Stripe 费用`
* `(-1 x -1) - (1) = 0 美元（支付的 Stripe 费用）`
**po\_002**：使用步骤 4 中的公式。**application\_fee** 为 null，因此未收取任何申请费。
* `（-1 x 费用列值） - （application_fee 列值） = 支付的 Stripe 费用`
* `(-1 x 0) - (0) = 0 美元（支付的 Stripe 费用）`