TravelListLogic.js
4.36 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import {observable,computed} from 'mobx'
import {_share, _findTravelHead, _findTravelLine,_getTravelDetail,_saveTravelDetail,_findOu} from "../service/AppService";
import Toast from "react-native-simple-toast";
import moment from 'moment';
export default class TravelListLogic {
@observable
showFinish = false
@observable
list = []
@observable
approvalList = []
@observable
showOrdersBar = false
@observable
text = ''
@observable
marked = false
@observable
loading = true
params = null
@observable
title = ""
@observable
changeStatus=false
@observable
currentListOwner=""
async travelHeadFind(param) {
const option = {
...param,
...this.params,
pageSize: 0,
};
try {
let data;
data = await _findTravelHead(option);
const {errors, firstErrorMessage, result, totalCount} = data;
if (errors.length > 0) {
Toast.show(firstErrorMessage)
} else {
if(data.result&&data.result.length>0){
for(let i=0;i<data.result.length;i++){
let travel = data.result[i];
let time;
let status;
if(travel.isSubmit && !travel.isApproved){
time = moment(new Date(Number(travel.submitTime))).utcOffset(-8).format('YYYY-MM-DD HH:mm');
status = 0;
}else if(travel.isApproved && travel.approveResult === "AGREED"){
time = moment(new Date(Number(travel.approveTime))).utcOffset(-8).format('YYYY-MM-DD HH:mm');
status = 1;
}else if(travel.isApproved && travel.approveResult === "DISAGREED"){
time = moment(new Date(Number(travel.approveTime))).utcOffset(-8).format('YYYY-MM-DD HH:mm');
status = 2;
}else if(!travel.isSubmit){
time = moment(new Date(Number(travel.creationTime))).utcOffset(-8).format('YYYY-MM-DD HH:mm');
status = 3;
}
travel.time = time;
travel.status = status;
this.list.push(travel);
}
}
}
} catch (e) {
}
this.changeStatus=!this.changeStatus
this.loading = false
}
async travelLineFind(param) {
const option = {
...param,
...this.params,
pageSize: 0,
};
try {
let data;
data = await _getTravelDetail(option);
const {errors, firstErrorMessage, tripLineList, approvalList,totalCount} = data;
if (errors.length > 0) {
Toast.show(firstErrorMessage)
} else {
if(tripLineList&&tripLineList.length>0){
for(let i=0;i<tripLineList.length;i++){
let travelLine = tripLineList[i];
this.list.push(travelLine);
}
}
if(approvalList&&approvalList.length>0){
for(let i=0;i<approvalList.length;i++){
let approvalDetail = approvalList[i];
this.approvalList.push(approvalDetail);
}
}
}
} catch (e) {
}
this.changeStatus=!this.changeStatus;
this.loading = false
}
async ouFind(param) {
const option = {
...param,
...this.params,
pageSize: 0,
};
try {
let data;
data = await _findOu(option);
const {errors, firstErrorMessage, result ,totalCount} = data;
if (errors.length > 0) {
Toast.show(firstErrorMessage)
} else {
if(result&&result.length>0){
for(let i=0;i<result.length;i++){
let ou = result[i];
this.list.push(ou);
}
}
}
} catch (e) {
}
this.changeStatus=!this.changeStatus;
this.loading = false
}
}