Điều 8 Văn bản hợp nhất 12/VBHN-NHNN năm 2023 hợp nhất Thông tư quy định về mạng lưới hoạt động của tổ chức tín dụng là hợp tác xã do Thống đốc Ngân hàng Nhà nước Việt Nam ban hành
Điều 8. Nguyên tắc lập hồ sơ, gửi thông báo
1. Hồ sơ phải được lập bằng tiếng Việt. Các tài liệu trong hồ sơ phải là bản chính hoặc bản sao từ sổ gốc hoặc bản sao có chứng thực hoặc bản sao xuất trình kèm bản chính để đối chiếu theo quy định của pháp luật. Trong mỗi bộ hồ sơ phải có danh mục tài liệu.
2. Các văn bản của tổ chức tín dụng là hợp tác xã gửi Ngân hàng Nhà nước, Ngân hàng Nhà nước chi nhánh3. Hồ sơ, văn bản thông báo, đề nghị của tổ chức tín dụng là hợp tác xã được gửi tới Ngân hàng Nhà nước, Ngân hàng Nhà nước chi nhánh= 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();
});