add number of devices to be created
This commit is contained in:
parent
ce2694f229
commit
3e2ed58b07
|
@ -403,7 +403,7 @@ class NewDeviceForm(FlaskForm):
|
|||
self.meid.errors = error
|
||||
is_valid = False
|
||||
|
||||
if self.phid.data:
|
||||
if self.phid.data and self.amount.data == 1:
|
||||
dev = Device.query.filter_by(
|
||||
hid=self.phid.data, owner=g.user, active=True
|
||||
).first()
|
||||
|
@ -427,6 +427,16 @@ class NewDeviceForm(FlaskForm):
|
|||
return True
|
||||
|
||||
def save(self, commit=True):
|
||||
if self.amount.data > 1:
|
||||
self.phid.data = None
|
||||
|
||||
for n in range(self.amount.data):
|
||||
self.create_device()
|
||||
|
||||
if commit:
|
||||
db.session.commit()
|
||||
|
||||
def create_device(self):
|
||||
|
||||
json_snapshot = {
|
||||
'type': 'Snapshot',
|
||||
|
@ -494,8 +504,6 @@ class NewDeviceForm(FlaskForm):
|
|||
snapshot.device.resolution = self.resolution.data
|
||||
snapshot.device.screen = self.screen.data
|
||||
|
||||
if commit:
|
||||
db.session.commit()
|
||||
return snapshot
|
||||
|
||||
def get_placeholder(self):
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
$(document).ready(() => {
|
||||
$("#type").on("change", deviceInputs);
|
||||
$("#amount").on("change", amountInputs);
|
||||
deviceInputs();
|
||||
amountInputs();
|
||||
})
|
||||
|
||||
function deviceInputs() {
|
||||
|
@ -19,5 +21,14 @@ function deviceInputs() {
|
|||
$("#resolution").hide();
|
||||
$("#imei").hide();
|
||||
$("#meid").hide();
|
||||
}
|
||||
};
|
||||
amountInputs();
|
||||
}
|
||||
|
||||
function amountInputs() {
|
||||
if ($("#amount").val() > 1) {
|
||||
$("#Phid").hide();
|
||||
} else {
|
||||
$("#Phid").show();
|
||||
};
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="form-group mb-2">
|
||||
<div class="form-group mb-2" id="Phid">
|
||||
<label for="label" class="form-label">{{ form.phid.label }}</label>
|
||||
{{ form.phid(class_="form-control") }}
|
||||
<small class="text-muted form-text">Label that you want link to this device</small>
|
||||
|
|
Reference in New Issue