This commit is contained in:
2023-05-30 17:34:56 +08:00
parent e728c66786
commit 9da1c4cf30
194 changed files with 10680 additions and 9060 deletions

View File

@ -204,7 +204,7 @@
$('#dialog_textaddress').val('');
$('#dialog_contact .dialog-title span.title').text('Add Contact');
$('#mask_bg').show();
showmaskbg(true);
$('#dialog_contact')
.attr('act', 'add')
.css({
@ -233,7 +233,7 @@
$('#dialog_textaddress').val(contact.TextAddress);
$('#dialog_contact .dialog-title span.title').text('Edit Contact');
$('#mask_bg').show();
showmaskbg(true);
$('#dialog_contact')
.attr('act', 'edit')
.css({
@ -445,7 +445,7 @@
var title = "Asset Assignment";// + "    " + jobsite.Name + "    " + "Radius_UOM: " + jobsite.Radius_UOM
$('#dialog_managemahchine .dialog-title span.title').html(title);
$('#mask_bg').show();
showmaskbg(true);
$('#dialog_managemahchine')
.css({
'height': 500,
@ -766,7 +766,7 @@
var title = "Jobsite Assignment";
$('#dialog_managejobsite .dialog-title span.title').html(title);
$('#mask_bg').show();
showmaskbg(true);
$('#dialog_managejobsite')
.css({
'height': 500,
@ -1076,15 +1076,15 @@
$('#dialog_contact').dialog(function () {
$('#mask_bg').hide();
showmaskbg(false);
});
$('#dialog_managemahchine').dialog(function () {
$('#mask_bg').hide();
showmaskbg(false);
});
$('#dialog_managejobsite').dialog(function () {
$('#mask_bg').hide();
showmaskbg(false);
});
$('#sel_machine_type').change(getMatchAvailableMachines);