$paymentCollection = $order->getPaymentCollection();
foreach ($paymentCollection as $payment) {
$sum = $payment->getSum(); // сумма к оплате
$isPaid = $payment->isPaid(); // true, если оплачена
$isReturned = $payment->isReturn(); // true, если возвращена
$ps = $payment->getPaySystem(); // платежная система (объект Sale\PaySystem\Service)
$psID = $payment->getPaymentSystemId(); // ID платежной системы
$psName = $payment->getPaymentSystemName(); // название платежной системы
$isInnerPs = $payment->isInner(); // true, если это оплата с внутреннего счета
}
$('form').trigger('reset');
$(function() {
'use strict';
$('form').on('submit', function(e) {
e.preventDefault();
if($(this).attr('id') == 'form1'){alert('Наш менеджер в скором времени свяжется с вами form1!');}
if($(this).attr('id') == 'form2'){alert('Наш менеджер в скором времени свяжется с вами form2!');}
$.ajax({
url: 'send.php',
type: 'POST',
contentType: false,
processData: false,
data: new FormData(this),
success: function(msg) {
console.log(msg);
if (msg == 'ok') {
$('#form').trigger('reset'); // очистка формы
} else {
alert('Ошибка');
}
}
});
});
});
$(function(){
$('.some_product').addClass('hide');
$('.some_product.hide:lt(5)').removeClass('hide');
$('.show-else').click(function(){
$('.some_product.hide:lt(5)').removeClass('hide');
});
});
div.some_product {
display: inline-block;
}
div.some_product.hide {
display: none;
}
div.some_product:nth-child(-n+5) {
background: pink;
}
$.ajax({
method: 'POST',
url: 'cpl_offices_bank_id_by_name.php',
data: {page: page}
});
$.ajax({
method: 'POST',
url: 'cpl_offices_bank_id_by_name.php',
data: {page: page}
success: function(success_data){
alert( "Прибыли данные: " + success_data);
}
});
$('.projects__card-7').hover(
function() {$('.projects-paths #path-1').show(); },
function() {$('.projects-paths #path-1').hide();}
);
*... если много элементов на которые придётся наводить*
$('.project__card-*...*').hover(
function() {$('.project__paths #path_id*...*').show(); },
function() {$('.project__paths #path_id*...*').hide();}
);
<div class="col-12 projects__cards">
<svg class="projects-paths" width="740" height="405" viewBox="0 0 740 405" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="path-1" d="M220 103V1........" fill="#00AAFF"></path></svg>
<div class="projects__card text-center" data-pathid="path-1"></div>
</div>
$('.projects__card').hover(
let path_id = $(this).data('pathid');
function() {$('.projects__card #'+path_id ).show(); },
function() {$('.projects__card #'+path_id ).hide();}
);
<input type="hidden" name="label" value="<?php echo $uid; ?>;<?php echo $tariff; ?>;<?php echo $publications; ?>">
<input type="hidden" name="label" value="99999;10;90">
$label_arr = explode(";", $label);
echo $label_arr[0]; // uid - 99999
echo $label_arr[1]; // tariff - 10
echo $label_arr[1]; // publications - 90
document.addEventListener('deviceready', function() {
window.navigator.vibrate(3000);
}, false);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class='d-flex'>
<div class='container d-flex flex-wrap'>
<button>1</button>
<button>2</button>
<button>3</button>
<button class="other">5</button>
<button>6</button>
</div>
<div class='d-flex flex-wrap'>
<button>4</button>
</div>
<div class='container'>
</body>
</html>
.d-flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.container {
width: auto;
max-width: 240px;
}
button {
width: 80px;
}
.other {
width: 160px;
}
<section class="mainmenu">
<div class="menu">
<a href="#"><h3>Меню</h3></a>
<div class="submenu">
<a href="#"><p>Субменю</p></a>
<a href="#"><p>Субменю</p></a>
<a href="#"><p>Субменю</p></a>
</div>
</div>
<div class="menu">
<a href="#"><h3>Меню</h3></a>
<div class="submenu">
<a href="#"><p>Субменю</p></a>
<a href="#"><p>Субменю</p></a>
<a href="#"><p>Субменю</p></a>
</div>
</div>
</section>
*{
padding: 0;
margin: 0;
}
body{
background: white;
padding-top: 50px;
padding-left: 200px;
font-family: 'Montserrat Alternates', sans-serif;
}
.mainmenu .menu .submenu{
display: none;
}
.mainmenu .menu:hover .submenu{
border-top: 2px solid #E5E2E2;
background: gray;
display: block;
}
.mainmenu .menu:hover .submenu a:hover{
color: #FFF
}
.menu a{
text-decoration: none;
color: #E5E2E2;
}
.mainmenu .menu{
border: 2px solid #B18552;
width: 300px;
overflow: hidden;
text-align: center;
background: blue;
}
.mainmenu div:first-child{
border-radius: 30px 30px 0 0;
}
.mainmenu div:last-child{
border-radius: 0 0 30px 30px;
}
.mainmenu h3{
transition: all 4s;
padding: 25px 0 25px 0;
font-size: 25px;
}
.mainmenu p{
font-size: 20px;
padding: 25px 0 25px 0;
}