change current footer

This commit is contained in:
mac 2026-06-18 08:33:10 +03:00
parent 8d57f3c52b
commit 0368fbf26c

View File

@ -1243,7 +1243,7 @@
data-token="3142f191-1e86-5487-9a4a-de0f71b1bb92" data-token="3142f191-1e86-5487-9a4a-de0f71b1bb92"
data-secret="2b601783-a2b2-5937-b412-d223616f32b1" data-secret="2b601783-a2b2-5937-b412-d223616f32b1"
data-auth="true" data-auth="true"
async> >
</script> </script>
<script type="text/javascript"> <script type="text/javascript">
window.InssmartEventListener.auth( async () => { window.InssmartEventListener.auth( async () => {
@ -1746,7 +1746,7 @@
} }
?> ?>
<?php if ($hideClientContactsModal): ?> <?php if ($hideClientContactsModal): ?>
<div class="warning_msg" style="background:#fff3cd;color:#664d03;border:1px solid #ffecb5;padding:10px;margin-bottom:10px;border-radius:4px;"> <div id="hideContactsWarning" class="warning_msg" style="background:#fff3cd;color:#664d03;border:1px solid #ffecb5;padding:10px;margin-bottom:10px;border-radius:4px;">
У вашей учётной записи скрыты контакты клиента. Поля «Эл. почта», «Телефон» и переключатель «Зарубежный телефон» недоступны для просмотра и редактирования. Изменения этих полей не сохранятся. У вашей учётной записи скрыты контакты клиента. Поля «Эл. почта», «Телефон» и переключатель «Зарубежный телефон» недоступны для просмотра и редактирования. Изменения этих полей не сохранятся.
</div> </div>
<?php endif; ?> <?php endif; ?>
@ -4729,6 +4729,7 @@
margin-right: 10px; margin-right: 10px;
margin-bottom: 10px; margin-bottom: 10px;
display: inline-block; display: inline-block;
word-break: break-all;
} }
.label_file i{ .label_file i{
margin-right: 10px; margin-right: 10px;
@ -4801,6 +4802,7 @@
} }
</style> </style>
<div class="hidden" id="app_deal"></div>
<div id="app_step" class="hidden"> <div id="app_step" class="hidden">
<input type="hidden" id="nowUserId" value="<?=$_SESSION['id']?>"/> <input type="hidden" id="nowUserId" value="<?=$_SESSION['id']?>"/>
<input type="hidden" id="clientAgencyId" value="<?=$user->agencyId?>"/> <input type="hidden" id="clientAgencyId" value="<?=$user->agencyId?>"/>
@ -5322,8 +5324,11 @@
</div> </div>
</div> </div>
<?php
$allowed_users_deal = [18388];
if (in_array((int)$_SESSION['id'], $allowed_users_deal)) {
?>
<div v-if="step.create_deal == 1 && currentPage.includes('/requisitions.php')" class="form-block"> <div v-if="step.create_deal == 1 && currentPage.includes('/requisitions.php')" class="form-block">
{{ step.is_deal }}
<template v-if="step.is_deal === 1"> <template v-if="step.is_deal === 1">
<div style="color: green; font-weight: bold;">Сделка успешно создана</div> <div style="color: green; font-weight: bold;">Сделка успешно создана</div>
</template> </template>
@ -5338,6 +5343,8 @@
</button> </button>
</template> </template>
</div> </div>
<?php } ?>
</div> </div>
</div> </div>
</div> </div>