跳至内容
菜单
此问题已终结
1 回复
7419 查看

Hi friends,

I have defined a string variable 'desc' as below:

'desc': fields.char('Description', size=50),

Now i can enter upto 50 chars in form. But i have set limit only for 20 chars when displays this field in report.Give me python methods to solve this.Thanks

形象
丢弃
最佳答案

Hi Vadivel,

It is simple because string is allowed subscripting ([ ]) in python. So, according to that your requirement will be fulfill as like below.

As your field named "desc" will take 50 characters and you want print only 20 in report. Just make this line inside your report, requirement will fulfill.

1) object.desc[0:20] #It will only takes 20 character from desc field.
2) object.desc if len(object.desc) < 20 else "%s..." %(object.desc[0:18])

I hope you will get what you want.

Thanks.

形象
丢弃
相关帖文 回复 查看 活动
7
7月 20
89733
2
5月 22
33972
0
3月 19
4063
0
1月 19
5113
4
2月 24
12343