Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
4647 Lượt xem

I have a form named 'territory'. Whenever I save the form, it gets saved with name "territory,#"

where # is 1,2,3,4, etc.

 

I want to save the form with custom name like - 

1. Value of field inside form(Eg. In my case i want to save form with name of territory i have entered in form).

2. I want to save form with series starting with - 0001, 001, 111, etc.

3. How can i change the separator between the name. Currently the seperator used is ",". I want separators like "-", ".", ":"

 

Please guide me with full details on how i can achieve this. Thanks in advance. ?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

You have to define a column in your module with the name "name", and that will be displayed on your form header. If no column "name" is defined, it will display your form name followed by it's ID.

Example:

class territory(osv.osv):
    _name = "territory"
    _description = "Territory"
    _columns = {
        'name': fields.char('Insert territory name', size=64, required=True),
        (... the rest of your columns description goes here...)
    }
    _sql_constraints = [
        ('name', 'unique(name)', 'Territory name must be unique')
    ]
    _order = 'name asc'

territory()

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 4 21
3267
0
thg 1 21
2332
5
thg 7 19
4811
1
thg 5 16
3802
3
thg 4 16
9882