2018-02-23 19:04:05 +01:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-02-23 19:04:05 +01:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
?><form action="" method="post" id="add-form" enctype="multipart/form-data">
|
2020-08-06 18:51:56 +02:00
|
|
|
<input type="hidden" name="op" value="add">
|
2018-02-23 19:04:05 +01:00
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
2020-08-06 18:51:56 +02:00
|
|
|
{[ "type": "file", "label": "<?php echo tr('File'); ?>", "name": "file", "required": 1, "accept": ".csv" ]}
|
2018-02-23 19:04:05 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
2021-02-26 11:04:06 +01:00
|
|
|
{[ "type": "select", "label": "<?php echo tr('Modulo'); ?>", "name": "id_import", "required": 1, "values": "query=SELECT id, name AS text FROM zz_imports" ]}
|
2018-02-23 19:04:05 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- PULSANTI -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 text-right">
|
2020-08-06 18:51:56 +02:00
|
|
|
<button id="example" type="button" class="btn btn-info hidden">
|
|
|
|
<i class="fa fa-file"></i> <?php echo tr('Scarica esempio CSV'); ?>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
<i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?>
|
|
|
|
</button>
|
2018-02-23 19:04:05 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-05-23 11:54:49 +02:00
|
|
|
|
|
|
|
<script>
|
2021-02-26 11:04:06 +01:00
|
|
|
$("#id_import").change(function () {
|
2020-08-06 18:51:56 +02:00
|
|
|
if ($(this).val()) {
|
|
|
|
$("#example").removeClass("hidden");
|
|
|
|
} else {
|
|
|
|
$("#example").addClass("hidden");
|
|
|
|
}
|
|
|
|
});
|
2018-05-23 11:54:49 +02:00
|
|
|
|
2020-08-06 18:51:56 +02:00
|
|
|
$("#example").click(function() {
|
|
|
|
$.ajax({
|
|
|
|
url: globals.rootdir + "/actions.php",
|
|
|
|
type: "post",
|
|
|
|
data: {
|
|
|
|
op: "example",
|
|
|
|
id_module: globals.id_module,
|
2021-02-26 11:04:06 +01:00
|
|
|
id_import: $('#id_import').val(),
|
2020-08-06 18:51:56 +02:00
|
|
|
},
|
|
|
|
success: function(data) {
|
|
|
|
if (data) {
|
|
|
|
window.location = data;
|
|
|
|
}
|
2018-09-19 09:51:36 +02:00
|
|
|
|
2020-08-06 18:51:56 +02:00
|
|
|
$('#main_loading').fadeOut();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2018-09-19 09:51:36 +02:00
|
|
|
</script>
|