No one should be able to edit the form once the process is completed.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
1
회신
3590
화면
Hi,
Try the below Javascript code
odoo.define('module.extension_name', function (require) {
var FormView = require('web.FormView');
FormView.include({
load_record: function() {
this._super.apply(this, arguments);
if (this.model === 'your.model') {
if (this.datarecord && (this.datarecord.state === 'state')) {
this.$buttons.find('.o_form_button_edit').css({'display':'none'});
}
else {
this.$buttons.find('.o_form_button_edit').css({'display':''});
}
}
});
});
And include the file in assets:
Regards
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
1
6월 24
|
2721 | ||
|
1
4월 24
|
9599 | ||
|
1
5월 22
|
3830 | ||
|
2
6월 21
|
3131 | ||
|
1
9월 20
|
2899 |