mirror of
https://github.com/NaN-tic/trytond-account_payment_es_csb_19.git
synced 2023-12-13 21:00:17 +01:00
Limit to 40 chars the communication field
This commit is contained in:
parent
a1cd6e9420
commit
da98367c2b
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class Group:
|
|||
record.name = receipt['name']
|
||||
record.account = receipt['bank_account']
|
||||
record.amount = receipt['amount']
|
||||
record.concept = receipt['communication']
|
||||
record.concept = receipt['communication'][:40]
|
||||
return write([record])
|
||||
|
||||
def set_first_optional_individual_record():
|
||||
|
|
Loading…
Reference in a new issue