1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
html.php
См. документацию.
1<?if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die();?><?
2$ORDER_ID = IntVal($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["ID"]);
3if (!is_array($arOrder))
4 $arOrder = CSaleOrder::GetByID($ORDER_ID);
5?>
6<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
7<html>
8<head>
9<title>Счет</title>
10<meta http-equiv="Content-Type" content="text/html; charset=<?=LANG_CHARSET?>">
11<style>
12 table { border-collapse: collapse; }
13 table.it td { border: 1pt solid #000000; padding: 0pt 3pt; }
14</style>
15</head>
16
17<?
18
19$pageWidth = 595.28;
20$pageHeight = 841.89;
21
22$background = '#ffffff';
24{
26 if (intval($path) > 0)
27 {
28 if ($arFile = CFile::GetFileArray($path))
29 $path = $arFile['SRC'];
30 }
31
32 $backgroundStyle = CSalePaySystemAction::GetParamValue('BACKGROUND_STYLE');
33 if (!in_array($backgroundStyle, array('none', 'tile', 'stretch')))
34 $backgroundStyle = 'none';
35
36 if ($path)
37 {
38 switch ($backgroundStyle)
39 {
40 case 'none':
41 $background = "url('" . $path . "') 0 0 no-repeat";
42 break;
43 case 'tile':
44 $background = "url('" . $path . "') 0 0 repeat";
45 break;
46 case 'stretch':
47 $background = sprintf(
48 "url('%s') 0 0 repeat-y; background-size: %.02fpt %.02fpt",
50 );
51 break;
52 }
53 }
54}
55
57 'top' => intval(CSalePaySystemAction::GetParamValue('MARGIN_TOP') ?: 15) * 72/25.4,
58 'right' => intval(CSalePaySystemAction::GetParamValue('MARGIN_RIGHT') ?: 15) * 72/25.4,
59 'bottom' => intval(CSalePaySystemAction::GetParamValue('MARGIN_BOTTOM') ?: 15) * 72/25.4,
60 'left' => intval(CSalePaySystemAction::GetParamValue('MARGIN_LEFT') ?: 20) * 72/25.4
61);
62
63$width = $pageWidth - $margin['left'] - $margin['right'];
64
65?>
66
67<body
68 style="margin: 0pt; padding: <?=join('pt ', $margin); ?>pt; width: <?=$width; ?>pt; background: <?=$background; ?>"
69 <? if ($_REQUEST['PRINT'] == 'Y') { ?>
70 onload="setTimeout(window.print, 0);"
71 <? } ?>
72>
73
76 0, 0,
77 'style="float: left; padding-right: 5pt; "'
78); ?>
79
80<div style="font-size: 3em; float: left; ">
81 <b><?=CSalePaySystemAction::GetParamValue("SELLER_NAME"); ?></b>
82</div>
83<div style="clear: both; height: 5pt; "></div>
84<br>
85
86
87<span style="text-decoration: underline">
88 <small>
89 <b><?=CSalePaySystemAction::GetParamValue("SELLER_NAME"); ?><?
90 if (CSalePaySystemAction::GetParamValue("SELLER_ADDRESS"))
91 {
92 ?> – <?=CSalePaySystemAction::GetParamValue("SELLER_ADDRESS"); ?><?
93 }
94?></b></small></span>
95<br>
96<br>
97<br>
98
99
100<? if (CSalePaySystemAction::GetParamValue("BUYER_NAME")) { ?>
101 <b><?=CSalePaySystemAction::GetParamValue("BUYER_NAME"); ?></b>
102 <br>
103
104 <? if (CSalePaySystemAction::GetParamValue("BUYER_ADDRESS")) { ?>
105 <b><?=CSalePaySystemAction::GetParamValue("BUYER_ADDRESS"); ?></b>
106 <br>
107 <? } ?>
108<? } ?>
109
110<br>
111<br>
112<br>
113<br>
114
115<span style="font-size: 2em"><b>Rechnung</b></span>
116
117<br>
118<br>
119<br>
120
121<table width="100%">
122 <tr style="font-weight: bold">
123 <td><?=sprintf(
124 'Rechnung Nr. %s',
125 htmlspecialcharsbx($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["ACCOUNT_NUMBER"])
126 ); ?></td>
127 <td><?=sprintf(
128 'Kunden-Nr.: %s',
129 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["USER_ID"]
130 ); ?></td>
131 <td align="right"><?=sprintf(
132 'Datum: %s',
134 ); ?></td>
135 </tr>
136</table>
137<small><b>Bitte bei Zahlungen und Schriftverkehr angeben!</b></small>
138<br>
139<br>
140<br>
141
142
143<?
144
146 array("NAME" => "ASC"),
147 array("ORDER_ID" => $ORDER_ID)
148);
149if ($arBasket = $dbBasket->Fetch())
150{
151 $arCells = array();
152 $arProps = array();
153
154 $n = 0;
155 $sum = 0.00;
156 $vat = 0;
157 $vats = array();
158 do
159 {
160 // props in busket product
161 $arProdProps = array();
162 $dbBasketProps = CSaleBasket::GetPropsList(
163 array("SORT" => "ASC", "ID" => "DESC"),
164 array(
165 "BASKET_ID" => $arBasket["ID"],
166 "!CODE" => array("CATALOG.XML_ID", "PRODUCT.XML_ID")
167 ),
168 false,
169 false,
170 array("ID", "BASKET_ID", "NAME", "VALUE", "CODE", "SORT")
171 );
172 while ($arBasketProps = $dbBasketProps->GetNext())
173 {
174 if (!empty($arBasketProps) && $arBasketProps["VALUE"] != "")
175 $arProdProps[] = $arBasketProps;
176 }
177 $arBasket["PROPS"] = $arProdProps;
178
179 // @TODO: replace with real vatless price
180 $arBasket["VATLESS_PRICE"] = roundEx($arBasket["PRICE"] / (1 + $arBasket["VAT_RATE"]), SALE_VALUE_PRECISION);
181
182 $arCells[++$n] = array(
183 1 => $n,
184 htmlspecialcharsbx($arBasket["NAME"]),
185 roundEx($arBasket["QUANTITY"], SALE_VALUE_PRECISION),
186 'St.',
187 SaleFormatCurrency($arBasket["VATLESS_PRICE"], $arBasket["CURRENCY"], true),
188 roundEx($arBasket["VAT_RATE"]*100, SALE_VALUE_PRECISION) . "%",
190 $arBasket["VATLESS_PRICE"] * $arBasket["QUANTITY"],
191 $arBasket["CURRENCY"],
192 true
193 )
194 );
195
196 $arProps[$n] = array();
197 foreach ($arBasket["PROPS"] as $vv)
198 $arProps[$n][] = htmlspecialcharsbx(sprintf("%s: %s", $vv["NAME"], $vv["VALUE"]));
199
200 $sum += doubleval($arBasket["VATLESS_PRICE"] * $arBasket["QUANTITY"]);
201 $vat = max($vat, $arBasket["VAT_RATE"]);
202 if ($arBasket["VAT_RATE"] > 0)
203 {
204 if (!isset($vats[$arBasket["VAT_RATE"]]))
205 $vats[$arBasket["VAT_RATE"]] = 0;
206 $vats[$arBasket["VAT_RATE"]] += ($arBasket["PRICE"] - $arBasket["VATLESS_PRICE"]) * $arBasket["QUANTITY"];
207 }
208 }
209 while ($arBasket = $dbBasket->Fetch());
210
211 if (DoubleVal($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE_DELIVERY"]) > 0)
212 {
213 $arDelivery_tmp = CSaleDelivery::GetByID($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["DELIVERY_ID"]);
214
215 $sDeliveryItem = "Schifffahrt";
216 if (strlen($arDelivery_tmp["NAME"]) > 0)
217 $sDeliveryItem .= sprintf(" (%s)", $arDelivery_tmp["NAME"]);
218 $arCells[++$n] = array(
219 1 => $n,
220 htmlspecialcharsbx($sDeliveryItem),
221 1,
222 '',
224 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE_DELIVERY"] / (1 + $vat),
225 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
226 true
227 ),
230 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE_DELIVERY"] / (1 + $vat),
231 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
232 true
233 )
234 );
235
236 $sum += roundEx(
237 doubleval($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE_DELIVERY"] / (1 + $vat)),
239 );
240
241 if ($vat > 0)
242 $vats[$vat] += roundEx(
243 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE_DELIVERY"] * $vat / (1 + $vat),
245 );
246 }
247
248 $items = $n;
249
250 if ($sum < $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE"])
251 {
252 $arCells[++$n] = array(
253 1 => null,
254 null,
255 null,
256 null,
257 null,
258 "Nettobetrag:",
259 SaleFormatCurrency($sum, $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"], true)
260 );
261 }
262
263 if (!empty($vats))
264 {
265 // @TODO: remove on real vatless price implemented
266 $delta = intval(roundEx(
267 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["PRICE"] - $sum - array_sum($vats),
269 ) * pow(10, SALE_VALUE_PRECISION));
270 if ($delta)
271 {
272 $vatRates = array_keys($vats);
273 rsort($vatRates);
274
275 while (abs($delta) > 0)
276 {
277 foreach ($vatRates as $vatRate)
278 {
279 $vats[$vatRate] += abs($delta)/$delta / pow(10, SALE_VALUE_PRECISION);
280 $delta -= abs($delta)/$delta;
281
282 if ($delta == 0)
283 break 2;
284 }
285 }
286 }
287
288 foreach ($vats as $vatRate => $vatSum)
289 {
290 $arCells[++$n] = array(
291 1 => null,
292 null,
293 null,
294 null,
295 null,
296 sprintf(
297 "zzgl. %s%% MwSt:",
298 roundEx($vatRate * 100, SALE_VALUE_PRECISION)
299 ),
301 $vatSum,
302 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
303 true
304 )
305 );
306 }
307 }
308 else
309 {
310 $dbTaxList = CSaleOrderTax::GetList(
311 array("APPLY_ORDER" => "ASC"),
312 array("ORDER_ID" => $ORDER_ID)
313 );
314
315 while ($arTaxList = $dbTaxList->Fetch())
316 {
317 $arCells[++$n] = array(
318 1 => null,
319 null,
320 null,
321 null,
322 null,
323 htmlspecialcharsbx(sprintf(
324 "%s%s%s:",
325 ($arTaxList["IS_IN_PRICE"] == "Y") ? "inkl." : "zzgl.",
326 sprintf(' %s%% ', roundEx($arTaxList["VALUE"], SALE_VALUE_PRECISION)),
327 $arTaxList["TAX_NAME"]
328 )),
330 $arTaxList["VALUE_MONEY"],
331 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
332 true
333 )
334 );
335 }
336 }
337
338 if (DoubleVal($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["SUM_PAID"]) > 0)
339 {
340 $arCells[++$n] = array(
341 1 => null,
342 null,
343 null,
344 null,
345 null,
346 "Payment made:",
348 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["SUM_PAID"],
349 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
350 true
351 )
352 );
353 }
354
355 if (DoubleVal($GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["DISCOUNT_VALUE"]) > 0)
356 {
357 $arCells[++$n] = array(
358 1 => null,
359 null,
360 null,
361 null,
362 null,
363 "Rabatt:",
365 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["DISCOUNT_VALUE"],
366 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
367 true
368 )
369 );
370 }
371
372 $arCells[++$n] = array(
373 1 => null,
374 null,
375 null,
376 null,
377 null,
378 "Gesamtbetrag:",
380 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["SHOULD_PAY"],
381 $GLOBALS["SALE_INPUT_PARAMS"]["ORDER"]["CURRENCY"],
382 true
383 )
384 );
385}
386
387?>
388<table class="it" width="100%">
389 <tr>
390 <td><nobr>Pos.</nobr></td>
391 <td><nobr>Leistung</nobr></td>
392 <td><nobr>Anzahl</nobr></td>
393 <td><nobr>Einheit</nobr></td>
394 <td><nobr>Einzelpreis</nobr></td>
395 <? if ($vat > 0) { ?>
396 <td><nobr>MwSt.</nobr></td>
397 <? } ?>
398 <td><nobr>Gesamtpreis</nobr></td>
399 </tr>
400<?
401
403for ($n = 1; $n <= $rowsCnt; $n++)
404{
405 $accumulated = 0;
406
407?>
408 <tr valign="top">
409 <? if (!is_null($arCells[$n][1])) { ?>
410 <td align="center"><?=$arCells[$n][1]; ?></td>
411 <? } else {
412 $accumulated++;
413 } ?>
414 <? if (!is_null($arCells[$n][2])) { ?>
415 <td align="left"
416 <? if ($accumulated) {
417 ?> style="border-width: 0pt 1pt 0pt 0pt" colspan="<?=($accumulated+1); ?>"<? $accumulated = 0;
418 } ?>>
419 <?=$arCells[$n][2]; ?>
420 <? if (isset($arProps[$n]) && is_array($arProps[$n])) { ?>
421 <? foreach ($arProps[$n] as $property) { ?>
422 <br>
423 <small><?=$property; ?></small>
424 <? } ?>
425 <? } ?>
426 </td>
427 <? } else {
428 $accumulated++;
429 } ?>
430 <? for ($i = 3; $i <= 7; $i++) { ?>
431 <? if (!is_null($arCells[$n][$i])) { ?>
432 <? if ($i != 6 || $vat > 0 || is_null($arCells[$n][2])) { ?>
433 <td align="right"
434 <? if ($accumulated) { ?>
435 style="border-width: 0pt 1pt 0pt 0pt"
436 colspan="<?=(($i == 6 && $vat <= 0) ? $accumulated : $accumulated+1); ?>"
437 <? $accumulated = 0; } ?>>
438 <nobr><?=$arCells[$n][$i]; ?></nobr>
439 </td>
440 <? }
441 } else {
442 $accumulated++;
443 }
444 } ?>
445 </tr>
446<?
447
448}
449
450?>
451</table>
452<br>
453<br>
454<br>
455
457 <? if (CSalePaySystemAction::GetParamValue("COMMENT1")) { ?>
458 <?=nl2br(HTMLToTxt(preg_replace(
459 array('#</div>\s*<div[^>]*>#i', '#</?div>#i'), array('<br>', '<br>'),
461 ), '', array(), 0)); ?>
462 <br>
463 <br>
464 <? } ?>
465 <? if (CSalePaySystemAction::GetParamValue("COMMENT2")) { ?>
466 <?=nl2br(HTMLToTxt(preg_replace(
467 array('#</div>\s*<div[^>]*>#i', '#</?div>#i'), array('<br>', '<br>'),
469 ), '', array(), 0)); ?>
470 <br>
471 <br>
472 <? } ?>
473<? } ?>
474
475<br>
476
477<div style="position: relative; "><?=CFile::ShowImage(
479 0, 0,
480 'style="position: absolute; left: 40pt; "'
481); ?></div>
482
483<div style="position: relative">
484 <table class="sign">
485 <? if (CSalePaySystemAction::GetParamValue("SELLER_DIR") || CSalePaySystemAction::GetParamValue("SELLER_DIR_SIGN")) { ?>
486 <tr>
487 <td valign>Geschдftsfьhrer</td>
488 <td style="width: 160pt; border: 1pt solid #000000; border-width: 0pt 0pt 1pt 0pt; text-align: center; ">
489 <?=CFile::ShowImage(CSalePaySystemAction::GetParamValue("SELLER_DIR_SIGN"), 200, 50); ?>
490 </td>
491 <td>
492 <? if (CSalePaySystemAction::GetParamValue("SELLER_DIR")) { ?>
493 (<?=CSalePaySystemAction::GetParamValue("SELLER_DIR"); ?>)
494 <? } ?>
495 </td>
496 </tr>
497 <tr><td colspan="3">&nbsp;</td></tr>
498 <? } ?>
499 <? if (CSalePaySystemAction::GetParamValue("SELLER_ACC") || CSalePaySystemAction::GetParamValue("SELLER_ACC_SIGN")) { ?>
500 <tr>
501 <td>Buchhalter</td>
502 <td style="width: 160pt; border: 1pt solid #000000; border-width: 0pt 0pt 1pt 0pt; text-align: center; ">
503 <?=CFile::ShowImage(CSalePaySystemAction::GetParamValue("SELLER_ACC_SIGN"), 200, 50); ?>
504 </td>
505 <td>
506 <? if (CSalePaySystemAction::GetParamValue("SELLER_ACC")) { ?>
507 (<?=CSalePaySystemAction::GetParamValue("SELLER_ACC"); ?>)
508 <? } ?>
509 </td>
510 </tr>
511 <? } ?>
512 </table>
513</div>
514
515<br>
516<br>
517<br>
518
519
520<div style="text-align: center">
521
522<?
523
526
528
529if ($sellerName)
531if ($sellerAddr)
533
534if (!empty($sellerData))
535{
536 ?><small><?=join(' – ', $sellerData); ?></small>
537 <br><?
538}
539
540
543
545
546if ($sellerPhone)
547 $sellerData[] = sprintf('Telefon: %s', $sellerPhone);
548if ($sellerEmail)
549 $sellerData[] = sprintf('Mail: %s', $sellerEmail);
550
551if (!empty($sellerData))
552{
553 ?><small><?=join(' – ', $sellerData); ?></small>
554 <br><?
555}
556
557
563
565
566if ($bankAccNo)
567 $bankData[] = sprintf('Konto Nr.: %s', $bankAccNo);
568if ($bankBlz)
569 $bankData[] = sprintf('BLZ: %s', $bankBlz);
570if ($bankIban)
571 $bankData[] = sprintf('IBAN: %s', $bankIban);
572if ($bankSwift)
573 $bankData[] = sprintf('BIC/SWIFT: %s', $bankSwift);
574if ($bank)
575 $bankData[] = $bank;
576
577if (!empty($bankData))
578{
579 ?><small><?=join(' – ', $bankData); ?></small>
580 <br><?
581}
582
583
588
590
591if ($sellerEuInn)
592 $sellerData[] = sprintf('USt-IdNr.: %s', $sellerEuInn);
593if ($sellerInn)
594 $sellerData[] = sprintf('Steuernummer: %s', $sellerInn);
595if ($sellerReg)
597if ($sellerDir)
599
600if (!empty($sellerData))
601{
602 ?><small><?=join(' – ', $sellerData); ?></small>
603 <br><?
604}
605
606?>
607
608</div>
609
610</body>
611</html>
$path
Определения access_edit.php:21
$sum
Определения checkout.php:6
static GetByID($ID)
Определения delivery.php:249
static GetParamValue($key, $defaultValue=null)
Определения pay_system_action.php:76
static ShowImage($strImage, $iMaxW=0, $iMaxH=0, $sParams=null, $strImageUrl="", $bPopup=false, $sPopupTitle=false, $iSizeWHTTP=0, $iSizeHHTTP=0, $strImageUrlTemplate="")
Определения file.php:1805
static GetList($arOrder=array(), $arFilter=array(), $arGroupBy=false, $arNavStartParams=false, $arSelectFields=array())
Определения basket.php:33
static GetPropsList($arOrder=array(), $arFilter=array(), $arGroupBy=false, $arNavStartParams=false, $arSelectFields=array())
Определения basket.php:317
static GetList($arOrder=array("TAX_NAME"=> "ASC"), $arFilter=array(), $arGroupBy=false, $arNavStartParams=false, $arSelectFields=array())
Определения order_tax.php:7
collapse(node)
Определения ebay_mip_setup.php:316
& nbsp
Определения epilog_main_admin.php:38
bx popup label bx width30 PAGE_NEW_MENU_NAME text width
Определения file_new.php:677
</td ></tr ></table ></td ></tr >< tr >< td class="bx-popup-label bx-width30"><?=GetMessage("PAGE_NEW_TAGS")?> array( $site)
Определения file_new.php:804
<? if( $useEditor3):?>< tr class="heading">< td colspan="2"><? echo GetMessage("FILEMAN_OPTION_SPELL_SET");?></td ></tr ><? if(function_exists( 'pspell_config_create')):$use_pspell_checked=(COption::GetOptionString( $module_id, "use_pspell", "Y")=="Y") ? "checked" :"";?>< tr >< td valign="top">< label for="use_pspell"><?echo GetMessage("FILEMAN_OPTION_USE_PSPELL");?></label >< br >< a title="<?echo GetMessage("FILEMAN_OPTION_ADDISH_DICS_TITLE");?> http
Определения options.php:1473
$_REQUEST["admin_mnu_menu_id"]
Определения get_menu.php:8
roundEx($value, $prec=0)
Определения tools.php:4635
htmlspecialcharsback($str)
Определения tools.php:2693
HTMLToTxt($str, $strSiteUrl="", $aDelete=[], $maxlen=70)
Определения tools.php:2587
htmlspecialcharsbx($string, $flags=ENT_COMPAT, $doubleEncode=true)
Определения tools.php:2701
$delta
Определения prolog_main_admin.php:363
<? endif;?> window document title
Определения prolog_main_admin.php:76
die
Определения quickway.php:367
for( $i=0, $max=count( $arBasketIDs);$i< $max;$i++) if($arOrder['DELIVERY_VAT_RATE'] > 0) if(is_array( $arBasketOrder) &&!empty( $arBasketOrder)) if(floatval($arOrder["DISCOUNT_VALUE"]) > 0) $arTaxList
Определения factura.php:640
$i
Определения factura.php:643
font style
Определения invoice.php:442
</p ></td >< td valign=top style='border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 2.0pt 0cm 2.0pt;height:9.0pt'>< p class=Normal align=center style='margin:0cm;margin-bottom:.0001pt;text-align:center;line-height:normal'>< a name=ТекстовоеПоле54 ></a ><?=($taxRate > count( $arTaxList) > 0) ? $taxRate."%"
Определения waybill.php:936
$bankData
Определения html.php:597
$background
Определения html.php:27
$ORDER_ID
Определения html.php:2
$pageWidth
Определения html.php:24
if( $arBasket=$dbBasket->Fetch()) if($vat > 0) $rowsCnt
Определения html.php:430
$sellerAddr
Определения html.php:558
$width
Определения html.php:68
$sellerInn
Определения html.php:618
$bankSwift
Определения html.php:594
if(CSalePaySystemAction::GetParamValue("DATE_PAY_BEFORE", false)) $dbBasket
Определения html.php:162
$sellerDir
Определения html.php:620
if(!empty($sellerData)) $bankAccNo
Определения html.php:591
if(!empty($bankData)) $sellerEuInn
Определения html.php:617
$bank
Определения html.php:595
$bankBlz
Определения html.php:592
if(CSalePaySystemAction::GetParamValue('BACKGROUND', false)) $margin
Определения html.php:61
$pageHeight
Определения html.php:25
$sellerData
Определения html.php:560
$bankIban
Определения html.php:593
for($n=1; $n<=$rowsCnt; $n++) if(CSalePaySystemAction::GetParamValue("COMMENT1", false)||CSalePaySystemAction::GetParamValue("COMMENT2", false)) if(! $blank) if(CSalePaySystemAction::GetParamValue("SELLER_DIR_POS", false)) if(CSalePaySystemAction::GetParamValue("SELLER_ACC_POS", false)) $sellerName
Определения html.php:557
$sellerEmail
Определения html.php:575
$sellerReg
Определения html.php:619
if(!empty($sellerData)) $sellerPhone
Определения html.php:574
$vat
Определения template.php:273
$arCells
Определения template.php:223
$items
Определения template.php:224
text align
Определения template.php:556
SaleFormatCurrency($fSum, $strCurrency, $OnlyValue=false, $withoutFormat=false)
Определения include.php:142
const SALE_VALUE_PRECISION
Определения include.php:46
$GLOBALS['_____370096793']
Определения update_client.php:1
$n
Определения update_log.php:107
$vatRates
Определения yandex_detail.php:156