Commit b01f504a authored by Jean-Paul Smets's avatar Jean-Paul Smets

Added some suggestions of naming.

git-svn-id: https://svn.erp5.org/repos/public/erp5/sandbox/amount_generator@36060 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 744d957e
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2002 Coramy SAS and Contributors. All Rights Reserved.
......@@ -33,19 +34,19 @@ class PaymentCondition:
"""
_properties = (
{ 'id' : 'payment_term',
{ 'id' : 'payment_term', # XXX-JPS rename to business_term or trade_term
'description' : 'payment term in a number of days',
'type' : 'int',
'mode' : 'w' },
{ 'id' : 'payment_date',
{ 'id' : 'payment_date', # XXX-JPS rename to business_date or trade_due_date
'description' : 'An absolute payment date',
'type' : 'date',
'mode' : 'w' },
{ 'id' : 'payment_end_of_month',
{ 'id' : 'payment_end_of_month', # XXX-JPS rename to business_end_of_month or trade_end_of_month
'description' : 'is the payment required on the end of month',
'type' : 'boolean',
'mode' : 'w' },
{ 'id' : 'payment_additional_term',
{ 'id' : 'payment_additional_term', # XXX-JPS rename to business_additional_term or trade_additional_term
'description' : 'additionnal term in a number of days',
'type' : 'int',
'mode' : 'w' },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment