高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
public class Event_CommentController{
    
    /** コンストラクタ */
    public Event_CommentController() {
        String eventId = System.currentPageReference().getParameters().get('Id');
        this.u = [select id, Post__c from User where id =:UserInfo.getUserId()];
        //this.e = [select id, Manager_Comment__c, Accounting_Comment__c from Event__c where id =:eventId];
        this.e = [select id, Minister_Comment__c, Manager_Comment__c from Event__c where id =:eventId];
        this.comment = '';
        this.message2 = '';
        
        if(u.Post__c != '部长' && u.Post__c != '副部长' && u.Post__c != '总监' && u.Post__c != '副总监' && u.Post__c != '经理' && u.Post__c != '副经理'){
            this.message1 = System.Label.Error_Message26;
        }
        else{
            this.message1 = System.Label.Message_004;
            
            if(u.Post__c == '部长' || u.Post__c == '副部长' || u.Post__c == '总监' || u.Post__c == '副总监'){
                //this.comment = e.Manager_Comment__c;
                this.comment = e.Minister_Comment__c;
            }
            else if(u.Post__c == '经理' || u.Post__c == '副经理'){
                //this.comment = e.Accounting_Comment__c;
                this.comment = e.Manager_Comment__c;
            }
        }
    }
    
    public User u{get;set;}
    public Event__c e{get;set;}
    public String comment{get;set;}
    public String message1{get;set;}
    public String message2{get;set;}
    
    /** 初期処理 */
    /*public PageReference init(){
        String eventId = System.currentPageReference().getParameters().get('Id');
        this.u = [select id, Post__c from User where id =:UserInfo.getUserId()];
        this.e = [select id, Manager_Comment__c, Accounting_Comment__c from Event where id =:eventId];
        this.comment = '';
        this.message2 = '';
        
        if(u.Post__c != '部长' && u.Post__c != '经理'){
            this.message1 = System.Label.Error_Message26;
        }
        else{
            this.message1 = System.Label.Message_004;
            
            if(u.Post__c == '部长'){
                this.comment = e.Manager_Comment__c;
            }
            else if(u.Post__c == '经理'){
                this.comment = e.Accounting_Comment__c;
            }
        }
        return null;
    }*/
    
    public PageReference save(){
        if(u.Post__c == '部长' || u.Post__c == '副部长' || u.Post__c == '总监' || u.Post__c == '副总监'){
            //e.Manager_Comment__c = this.comment;
            e.Minister_Comment__c = this.comment;
        }
        else if(u.Post__c == '经理' || u.Post__c == '副经理'){
            //e.Accounting_Comment__c = this.comment;
            e.Manager_Comment__c = this.comment;
        }
        
        update e;
        
        this.message2 = System.Label.Save_Completion;
        
 
        return null;
    }
}