Added Action Button "Recv. Electronic"

这个提交包含在:
HB9HIL 2023-10-04 19:38:38 +02:00
父节点 fdd71365be
当前提交 df57a23a57
共有 2 个文件被更改,包括 6 次插入0 次删除

查看文件

@ -327,6 +327,7 @@ $options = json_decode($options);
<button type="button" class="btn btn-sm btn-warning mr-1" id="notRequired"><?php echo lang('filter_actions_qsl_n_required'); ?></button> <button type="button" class="btn btn-sm btn-warning mr-1" id="notRequired"><?php echo lang('filter_actions_qsl_n_required'); ?></button>
<button type="button" class="btn btn-sm btn-warning mr-1" id="receivedBureau"><?php echo lang('filter_actions_recv_bureau'); ?></button> <button type="button" class="btn btn-sm btn-warning mr-1" id="receivedBureau"><?php echo lang('filter_actions_recv_bureau'); ?></button>
<button type="button" class="btn btn-sm btn-warning mr-1" id="receivedDirect"><?php echo lang('filter_actions_recv_direct'); ?></button> <button type="button" class="btn btn-sm btn-warning mr-1" id="receivedDirect"><?php echo lang('filter_actions_recv_direct'); ?></button>
<button type="button" class="btn btn-sm btn-warning mr-1" id="receivedElectronic"><?php echo lang('filter_actions_recv_electronic'); ?></button>
<button type="button" class="btn btn-sm btn-info mr-1" id="exportAdif"><?php echo lang('filter_actions_create_adif'); ?></button> <button type="button" class="btn btn-sm btn-info mr-1" id="exportAdif"><?php echo lang('filter_actions_create_adif'); ?></button>
<button type="button" class="btn btn-sm btn-info mr-1" id="printLabel"><?php echo lang('filter_actions_print_label'); ?></button> <button type="button" class="btn btn-sm btn-info mr-1" id="printLabel"><?php echo lang('filter_actions_print_label'); ?></button>
<button type="button" class="btn btn-sm btn-info mr-1" id="qslSlideshow"><?php echo lang('filter_actions_qsl_slideshow'); ?></button> <button type="button" class="btn btn-sm btn-info mr-1" id="qslSlideshow"><?php echo lang('filter_actions_qsl_slideshow'); ?></button>

查看文件

@ -449,10 +449,15 @@ $(document).ready(function () {
$('#receivedBureau').click(function (event) { $('#receivedBureau').click(function (event) {
handleQslReceived('Y','B', 'receivedBureau'); handleQslReceived('Y','B', 'receivedBureau');
}); });
$('#receivedDirect').click(function (event) { $('#receivedDirect').click(function (event) {
handleQslReceived('Y','D', 'receivedDirect'); handleQslReceived('Y','D', 'receivedDirect');
}); });
$('#receivedElectronic').click(function (event) {
handleQslReceived('Y','E', 'receivedElectronic');
});
$('#searchGridsquare').click(function (event) { $('#searchGridsquare').click(function (event) {
quickSearch('gridsquare'); quickSearch('gridsquare');
}); });