-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtariff.jsx
159 lines (148 loc) · 6.86 KB
/
tariff.jsx
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
148
149
150
151
152
153
154
155
156
157
158
159
import React, { Component } from 'react';
import { Row, Col, Alert } from 'react-bootstrap';
export default class Tariff extends Component {
constructor(props) {
super(props);
this.state = {
status: 0,
paynds: 0,
paymark: 0,
cover: 0,
service: "",
pay: 0,
valnds: 0,
needed_attrs: ['weight', 'index_from', 'index_to', 'type', 'service'],
success: false,
counter: {},
obj: { "weight": 0, "index_from": 0, "index_to": 0, "type": 0, 'service': 0 },
url: 'http://beta.pbrf.ru/v1/',
errors: []
}
this.calcPayment = this.calcPayment.bind(this);
}
calcPayment() {
let _this = this;
let data = _this.props.data;
data.Value = data.value * 100;
data.sum_num = data.sumNum * 100;
data.direction = '0';
if (data.service !== undefined && data.service.length !== 0) {
data.service = data.service.join();
} else {
data.service = '""';
}
fetch(_this.state.url + 'utils/tariff/calc', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
},
body: JSON.stringify(data)
}).then((response) => {
return response.json();
}).then((json) => {
if (json.hasOwnProperty("paynds")) {
_this.setState({ status: 1 });
_this.setState({ success: true });
_this.setState({
paynds: json.paynds / 100,
pay: json.pay / 100, valnds: json.ground.valnds / 100
});
if (data.cat !== 0) {
_this.setState({ cover: json.tariff[1].cover.valnds / 100 });
}
if (json.service) {
_this.setState({ service: json.service.valnds / 100 });
} else {
_this.setState({ service: 0.00 });
}
if (json.paymark) {
_this.setState({ paymark: json.service.paymark / 100 });
}
} else {
_this.setState({ status: 2 });
let errorKeys = Object.keys(json);
let errorsArray = [];
_this.setState({ success: true });
let msg;
errorKeys.forEach(item => {
switch (item) {
case "weight": msg = "Поле 'Масса посылки' заполнено не корректно. Также, поле вес не может превышать 2000 грамм."; errorsArray.push(msg); break;
case "index_from": msg = "Поле 'Почтовый индекс' отправителя заполнено не корректно."; errorsArray.push(msg); break;
case "index_to": msg = "Поле 'Почтовый индекс' получателя заполнено не корректно."; errorsArray.push(msg); break;
case "sum_num": msg = "Поле 'Сумма наложенного платежа' заполнено не корректно."; errorsArray.push(msg); break;
case "Value": msg = "Поле 'Сумма объявленной ценности' заполнено не корректно."; errorsArray.push(msg); break;
}
});
_this.setState({ errors: errorsArray });
}
return json;
})
.catch((error) => {
return error;
});;
return false;
}
componentWillReceiveProps(nextProps) {
let keys = Object.keys(nextProps.data);
let obj = this.state.obj;
keys.forEach(key => {
if (this.props.data[key] !== nextProps.data[key]) {
this.props.data[key] = nextProps.data[key];
if (this.state.obj.hasOwnProperty(key) && this.state.obj[key] === 0) {
obj[key] = 1;
this.setState({ obj: obj });
}
if (this.props.data[key]) {
let counter = Object.keys(this.state.obj).map(item => {
return obj[item] === 1
}).length;
if (counter >= this.state.needed_attrs.length - 1) {
if (this.props.data.value !== 0 && this.props.data.sumNum !== 0) {
this.props.data.cat = '4';
} else if (this.props.data.value !== 0 && this.props.data.sumNum === 0) {
this.props.data.cat = '2';
} else {
this.props.data.cat = '0';
}
this.calcPayment();
}
}
}
});
}
render() {
return (
<Row style={this.state.success ? null : { display: 'none' }}>
<Col md={6} mdOffset={3} sm={12} xs={12} style={this.state.status === 1 ? null : { display: 'none' }}>
<Alert bsStyle="success" onDismiss={(e) => this.setState({ status: 0 })}>
<center>
Стоимость отправления:
<ul>
{this.state.paymark === 0
? null
: <li>Оплата марками: {this.state.paymark} рублей(с НДС).</li>}
<li>Почтовый сбор: {this.state.valnds} рублей(с НДС).</li>
<li>Страхование: {this.state.cover} рублей(с НДС).</li>
<li>Дополнительные услуги: {this.state.service} рублей(с НДС).</li>
<li>Итого сумма без НДС: {this.state.pay} рублей.</li>
<li>Итого сумма с НДС 18%: {this.state.paynds} рублей.</li>
</ul>
</center>
</Alert>
</Col>
<Col md={6} mdOffset={3} sm={12} xs={12}>
{this.state.status == 2
? <Alert bsStyle="danger" onDismiss={(e) => this.setState({ status: 0 })}>
{
this.state.errors.map(function (error) {
return <li key={error}>{error}</li>
})
}
</Alert>
: null}
</Col>
</Row>
)
}
}