-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprim.txt
313 lines (256 loc) · 12.9 KB
/
prim.txt
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*
* хранимые процедуры - для производительности SQL
*/
CREATE DEFINER=`work`@`%` FUNCTION `aa_schet_get_num`(`YEAR_IN` INT, `YEAR_IN_SHORT` TINYINT)
RETURNS varchar(10) CHARSET utf8
LANGUAGE SQL
NOT DETERMINISTIC
MODIFIES SQL DATA
SQL SECURITY DEFINER
COMMENT 'функция начального формирования записи счета'
BEGIN
DECLARE CURRENT_ID_CALC INT(11);
DECLARE NUM VARCHAR(10);
SET CURRENT_ID_CALC=0;
SELECT current_id FROM aa_year_counter WHERE year=YEAR_IN INTO CURRENT_ID_CALC;
UPDATE aa_year_counter SET current_id=current_id+1 WHERE year=YEAR_IN;
SET CURRENT_ID_CALC = CURRENT_ID_CALC+1;
SET NUM = CONCAT(CURRENT_ID_CALC,'-',YEAR_IN_SHORT);
RETURN NUM;
END
/* JS
* подстройка под разметку заказчика (построенную много лет назад на table), для встраивания расчета наценки
*/
// итоговые суммы
function getTotals() {
var totalsfact = 0;
var totalsagent = 0;
var totalsfull = 0;
var totalsplan = 0;
var totalsfactpercent = 0;
var totalNoFood = 0; //
var tmpvar = 0;
var doptypeplace = 0;
var doptypeplacechecked = 0;
var totalOnlyFood = 0; // ТОЛЬКО с питанием ДЕТИ и пенсионеры
// один процент общий разделения цены сайта - процент агенства
var tax = parseInt($('.tax').val());
// выбираем все поля УЧЕТНЫХ цен
$('.priceitemplan').each(function () {
totalsplan = totalsplan + parseInt($(this).val());
});
// выбираем все поля цен
$('.priceitem').each(function () {
totalsfull = totalsfull + parseInt($(this).val());
});
// цена до процента агенства
$('.itogo').each(function () {
totalsagent = totalsagent + parseInt($(this).val());
});
// посчитаем каюты места ДЕТЕЙ с питанием ОНИ не входят в комиссию агенства но ДОГОВОР!!!
$('.doptypeplace').each(function () {
doptypeplace = parseInt($(this).val()); // 2 или 3
doptypeplacechecked = $(this).attr('checked');
type4addplace = $(this).parent().parent().attr('type4addplace');
if (doptypeplace == 2 && doptypeplacechecked == 'checked' && (type4addplace == 2 || type4addplace == 3)) {
tmpvar = $(this).parent().parent().find('.priceitem').val(); // цена отгрузки
if (typeof tmpvar !== 'undefined') {
totalOnlyFood = totalOnlyFood + parseInt(tmpvar);
}
}
});
// итоговая план
$('#totalsplan').val(totalsplan);
$('#totalsfull').val(totalsfull);
$('#totalsagent').val(totalsagent);
// итоговая страховка
$('#totalinsurance').val(totalsagent - totalsfull);
// вычисляем конечный процент скидки с агентством база без страховки
totalsfact = totalsagent - Math.round((totalsfull - totalOnlyFood) / 100 * tax);
totalsfactpercent = 100 - Math.round(totalsfact / totalsplan * 100, 2);
$('#totalsfactpercent').val(totalsfactpercent);
$('#totalsfact').val(totalsfact);
// старые итоговые
var AllItogo = totalsagent;
$('#AllItogo').html(AllItogo);
var TaxInRub = Math.round(AllItogo * (tax) / 100);
var oplata = AllItogo - TaxInRub;
$('#TaxInRub').html(TaxInRub);
$('#AllAll').html(oplata);
}
function getSumFactItem(discitem, discitemseason, pricefull) {
var priceagent = 0;
priceagent = pricefull - pricefull / 100 * discitem;
priceagent = Math.round(priceagent - priceagent / 100 * discitemseason);
return parseInt(priceagent);
}
function getSumFactItemVisInsurance(insurance, priceagent) {
var priceitogo = 0;
priceitogo = Math.round(priceagent + priceagent / 100 * insurance);
return parseInt(priceitogo);
}
$(document).on('change', '.SelectDiscount,.SelectDiscountSeasonal,.SelectInsurance,.priceitem,.tax,.doptypeplace,.typeplace,.selectfood,.priceitemplan', function () {
var discitem = 0; // скидка общая
var discitemseason = 0; // сезонная скидка
var priceitemplan = 0; // сумма отгрузки
var pricefull = 0; // цена отгрузки
var priceagent = 0; // к оплате - цена факт после всех скидок и агентской комиссии
var tmp = 0; // незаполненность проверка
var seasonal = 0; //сезонность скидки
var type = 0;// дополнительные места тип
var insurance = 0; // процент страховки
var priceitogo = 0;
// изменяем доступность и значение сезонных скидок
// обработка изменения скидки
if ($(this).hasClass('SelectDiscount')) {
// проценты целые
discitem = parseInt($(this).find('option:selected').attr('v'));
seasonal = parseInt($(this).find('option:selected').attr('seasonal')); // сезонная ли скидка
discitemseason = parseInt($(this).parent().find('.SelectDiscountSeasonal').find('option:selected').attr('vs'));
priceitemplan = $(this).parent().next().find('.priceitemplan').val();
// процент страховки
insurance = 0;
tmp = $(this).parent().find('.SelectInsurance').find('option:selected').val();
if (typeof tmp !== 'undefined') {
insurance = parseInt(tmp);
}
// удаляем сезонные скидки если не сезонная скидка
if (seasonal == 0) { // && discitemseason>0
$(this).parent().find('.SelectDiscountSeasonal [vs="0"]').attr("selected", "selected");
$(this).parent().find('.SelectDiscountSeasonal [vs!="0"]').attr("disabled", "disabled");
discitemseason = 0;
} else {
// список скидок делаем доступным
$(this).parent().find('.SelectDiscountSeasonal option[disabled="disabled"]').removeAttr('disabled');
}
// пересчёт факта priceagent
priceagent = getSumFactItem(discitem, discitemseason, priceitemplan);
$(this).parent().next().find('.priceitem').val(priceagent);
// включаем сумму страховки
priceitogo = getSumFactItemVisInsurance(insurance, priceagent);
$(this).parent().next().find('.itogo').val(priceitogo);
} else if ($(this).hasClass('priceitem')) {
// ручное редактирование !!!!
pricefull = parseInt($(this).val());
// объект цена факт priceagent
priceagent = pricefull;
// обнуление скидок
$(this).parent().prev().find('.SelectDiscount [v="0"]').attr("selected", "selected");
$(this).parent().prev().find('.SelectDiscountSeasonal [vs="0"]').attr("selected", "selected");
$(this).val(priceagent); // округление
// страховка
insurance = 0;
tmp = $(this).parent().prev().find('.SelectInsurance').find('option:selected').val();
if (typeof tmp !== 'undefined') {
insurance = parseInt(tmp);
}
// включаем сумму страховки
priceitogo = getSumFactItemVisInsurance(insurance, priceagent);
// итого с страховкой
$(this).parent().find('.itogo').val(priceitogo);
} else if ($(this).hasClass('SelectDiscountSeasonal')) {
// проценты целые
discitem = parseInt($(this).parent().find('option:selected').attr('v'));
discitemseason = parseInt($(this).find('option:selected').attr('vs'));
priceitemplan = $(this).parent().next().find('.priceitemplan').val();
// пересчёт факта priceagent от плановой
priceagent = getSumFactItem(discitem, discitemseason, priceitemplan);
// процент страховки
insurance = 0;
tmp = $(this).parent().find('.SelectInsurance').find('option:selected').val();
if (typeof tmp !== 'undefined') {
insurance = parseInt(tmp);
}
$(this).parent().next().find('.priceitem').val(priceagent);
// включаем сумму страховки
priceitogo = getSumFactItemVisInsurance(insurance, priceagent);
$(this).parent().next().find('.itogo').val(priceitogo);
} else if ($(this).hasClass('SelectInsurance')) {
// страховка
insurance = parseInt($(this).find('option:selected').val());
priceagent = parseInt($(this).parent().next().find('.priceitem').val());
// включаем сумму страховки
priceitogo = getSumFactItemVisInsurance(insurance, priceagent);
// итого с страховкой
$(this).parent().next().find('.itogo').val(priceitogo);
} else if ($(this).hasClass('typeplace') || $(this).hasClass('doptypeplace')) {
type = parseInt($(this).val());
if (type == 0) {
$(this).parent().parent().find('.selectfood').val(-1); // без питания
$(this).parent().parent().find('.priceitem').val(0); // цена отгрузки
$(this).parent().parent().find('.itogo').val(0); // цена с агентским
} else {
$(this).parent().parent().find('.selectfood').val(-2); // нет рассадки
priceitemplan = parseInt($(this).parent().parent().find('.priceitemplan').val()); // плановая цена
$(this).parent().parent().find('.priceitem').val(priceitemplan);
$(this).parent().parent().find('.itogo').val(priceitemplan);
}
//CheckFreeDopMesto(); подумать, что с этим делать - так то не ограничиваем получается количество доп мест в счете
} else if ($(this).hasClass('selectfood')) {
//CheckFreeDopMesto(); вообще удалить эту ерунду
} else if ($(this).hasClass('priceitemplan')) {
}
// вызов .tax только общий пересчёт итоговой суммы
//alert('2 change priceitem= '+pricefull+' discitem='+discitem+' priceagent='+priceagent+' tax='+tax);
getTotals();
});
/** PHP PDO
*
* подтверждение авторизации для модуля comprofiler встроенного joomla на стороннем сайте, что бы была возможность зайти и на основной
*/
// установка параметров подверждения для ссылки из письма
public function setConfirmCbactivation() {
$err = '';
if($this->getCbactivation()) {
// устанавливаем коды активации, блок и отправку емайл
$this->block = 1;
$this->sendEmail = 1;
$this->confirmed = 0;
try {
$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$this->pdo->beginTransaction();
$this->pdo->exec("UPDATE zhob_users SET block=$this->block,sendEmail=$this->sendEmail,activation='$this->activation' WHERE id=$this->id");
$this->pdo->exec("UPDATE zhob_comprofiler SET confirmed=$this->confirmed,cbactivation='$this->cbactivation' WHERE id=$this->id");
$this->pdo->commit();
} catch (Exception $e) {
$this->pdo->rollBack();
$err = "Ошибка: " . $e->getMessage();
}
}
return $err;
}
// подтверждение по ссылке из письма
public function confirmCbactivation($confirmcode) {
// из хеша с смещением
$id = $this->getUserIdFromActivationCode($confirmcode);
$err = '';
if($id) {
$data = array('id'=>$id);
$this->getUser($data);
// удаляем коды активации, блок и отправку емайл
$this->cbactivation = '';
$this->activation = '';
$this->block = 0;
$this->sendEmail = 0;
$this->confirmed = 1;
try {
$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$this->pdo->beginTransaction();
$this->pdo->exec("UPDATE zhob_users SET block=$this->block,sendEmail=$this->sendEmail,activation='$this->activation' WHERE id=$this->id");
$this->pdo->exec("UPDATE zhob_comprofiler SET confirmed=$this->confirmed,cbactivation='$this->cbactivation' WHERE id=$this->id");
$this->pdo->commit();
} catch (Exception $e) {
$this->pdo->rollBack();
$err = "Ошибка: " . $e->getMessage();
}
}
return $err;
}
/**
* передача параметров в PDO
*/
$stm = $this->pdo->prepare($sql);
if(isset($id_user)) $stm->bindParam(':id_user',$id_user,PDO::PARAM_INT);
if(isset($status)) $stm->bindParam(':status',$status,PDO::PARAM_INT);
if(isset($id_kontragent)) $stm->bindParam(':id_kontragent',$id_kontragent,PDO::PARAM_INT);
if(isset($num)) $stm->bindParam(':num',$num,PDO::PARAM_STR);