Skip to main content

Define payment terms

Zuora
  • 日本語のコンテンツは機械翻訳されており、補助的な参照を目的としています。機械翻訳の精度は保証できません。英語版が正となります。また、現時点では検索機能は日本語での検索をサポートしていません。翻訳に関するフィードバックについては、docs@zuora.comに送信してください。

Define payment terms

Use the Define Payment Terms page to define when customers pay for their goods and services. It is common for such terms to be included in a customer’s license or services contract (the contract that governs the subscription).

No limit exists on the number of payment terms that can be created in a tenant.

The following payment term options are available:

  • Net Payment Term.  For this option, the payment interval between the invoice date and the due date is a fixed number of days that you determine. The default payment term is Due Upon Receipt, which means the due date is the day the invoice is received.
  • Prox Payment Term. This option lets you define the day of the month for the invoice to be sent, the payment interval before the due date (in months), and the day of the month on which the due date occurs.

Create a Payment Term

To create a payment term:

  1. In Billing Settings, click Payment Terms.
  2. Click add new payment terms and select the option you want (Net Payment Term or Prox Payment Term).
  3. Complete the fields that appear for the option selected. 
  1. Click save.
  2. To activate the payment term so that it is available, locate the payment term on the Customize Payment Terms list page and click Activate.

If the invoice date or payment due date is greater than the maximum number of days in a given month, these dates default to the end of the month value.

Net Payment Term Examples

Invoice Date Number of Days Due Date
August 1 30 August 31
August 1 15 August 16

Prox Payment Term Examples

Invoice Date Invoice Cutoff Date Number of Months Payment Due Day Due Date
August 10 The 12th of the month 1 The 20th of the month September 20
August 15 The 12th of the month 1 The 20th of the month October 20
August 21 The 12th of the month 1 The 20th of the month October 20
August 10 The 20th of the month 1 The 12th of the month September 12
August 15 The 20th of the month 1 The 12th of the month September 12
August 21 The 20th of the month 1 The 12th of the month October 12
August 21 The 20th of the month 3 The 12th of the month December 12
August 15 End of month 1 End of Month September 30
January 1 The 5th of the month 1 The 30th of the month February 28

 

Track Payment Terms Setting Changes Through Audit Trail

You can use Audit Trail to track changes on the Payment Terms setting. Use Data Query to run a report against the auditsettingchangeevent Audit Trail table to retrieve the records.

To retrieve the setting changes records, submit a data query through UI or API with the following SQL query: 

01SELECT username      AS UpdatedBy,
02       action        AS Action,
03       settingtype   AS SettingType,
04       attributename AS Attribute,
05       oldvalue      AS OldValue,
06       newvalue      AS NewValue,
07       timestamp     AS Timestamp,
08       SettingObjectName
09FROM   auditsettingchangeevent
10WHERE  namespace <> 'UserManagement'
11AND    settingtype = 'PaymentTerm'
12ORDER  BY timestamp DESC
13LIMIT  100000
English
日本語