Chương 5 Văn bản hợp nhất 12/VBHN-VPQH năm 2023 hợp nhất Luật Đấu giá tài sản do Văn phòng Quốc hội ban hành
GIÁ DỊCH VỤ ĐẤU GIÁ[6], CHI PHÍ ĐẤU GIÁ TÀI SẢN
Điều 66. Giá dịch vụ đấu giá, chi phí đấu giá tài sản1.2. Chi phí đấu giá tài sản bao gồm chi phí niêm yết, thông báo công khai, chi phí thực tế hợp lý khác cho việc đấu giá tài sản do người có tài sản đấu giá và tổ chức đấu giá tài sản thỏa thuận.
Cá nhân, tổ chức có yêu cầu và được tổ chức đấu giá tài sản cung cấp dịch vụ làm thủ tục chuyển quyền sở hữu, quyền sử dụng tài sản, quản lý tài sản và dịch vụ khác liên quan đến tài sản đấu giá thì phải trả chi phí dịch vụ cho tổ chức đấu giá tài sản theo thỏa thuận giữa các bên.
Điều 68. Quản lý, sử dụng giá dịch vụ đấu giá1. Việc quản lý, sử dụng giá dịch vụ đấu giá2. Việc quản lý, sử dụng giá dịch vụ đấu giá= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight);
const isInTabNoiDung = $(element).closest('#tab_noi_dung_vb').length > 0;
return isInViewport && isInTabNoiDung;
}
function getAddress(element) {
const validTags = ['trichyeu', 'cancu', 'phan', 'chuong', 'muc', 'tieumuc', 'dieu', 'khoan', 'diem'];
let parent = element.closest(validTags.join(','));
return parent ? $(parent).attr('address') : null;
}
function processTnplClasses($element) {
const tnplTextsInLine = new Set();
$element.find('tnpl').each(function () {
const $tnpl = $(this);
const tnplText = $tnpl.text().trim().toLowerCase();
if (tnplTextsInLine.has(tnplText)) {
return;
}
tnplTextsInLine.add(tnplText);
let tnplExists = false;
$('tnpl').each(function () {
const $existingTnpl = $(this);
const existingText = $existingTnpl.text().trim().toLowerCase();
if (
existingText === tnplText &&
$existingTnpl.hasClass('on') &&
isInViewportAndTabNoiDung($existingTnpl[0])
) {
tnplExists = true;
return false;
}
});
if (!tnplExists) {
$tnpl.addClass('on');
}
});
}
function processQueue() {
while (pendingRequests < maxConcurrentRequests && requestQueue.length > 0) {
const task = requestQueue.shift();
pendingRequests++;
task()
.always(() => {
pendingRequests--;
processQueue();
});
}
}
function processVisibleParagraphs() {
$('#tab_noi_dung_vb p:not([is-posted="1"])').each(function () {
let $element = $(this);
if (isInViewportAndTabNoiDung(this)) {
let p_innerHTML = $element.html();
let address = null;
if (cac_cau_hinh.loai_noi_dung.includes('docs')) {
address = getAddress($element);
}
$element.attr('is-posted', '1');
requestQueue.push(() =>
$.post(
'//tnpl' + (Math.floor(Math.random() * 10) + 1) + '.hethongphapluat.com/tien-ich/tim.tien.ich.php',
{ p_content: p_innerHTML, cac_cau_hinh, address },
function (response) {
$element.html(response);
processTnplClasses($element);
}
)
);
processQueue();
}
});
}
$(window).on('scroll resize', function () {
processVisibleParagraphs();
});
processVisibleParagraphs();
});