delete the duplicated files
This commit is contained in:
BIN
public/dist/images/modalrms/2.JPG
vendored
BIN
public/dist/images/modalrms/2.JPG
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 5.1 MiB |
352
public/dist/js/BI.js
vendored
352
public/dist/js/BI.js
vendored
@@ -1,352 +0,0 @@
|
||||
// --------------------------------------------------------------
|
||||
|
||||
Chart.defaults.global.defaultFontFamily = 'IRANSansFaNum';
|
||||
|
||||
var pieChartItem = null;
|
||||
var pieChartItemCanvas = $('#pieChart');
|
||||
var cakeChartItem = null;
|
||||
var cakeChartItemCanvas = $('#cakeChart');
|
||||
var lineChartItem = null;
|
||||
var lineChartItemCanvas = $('#lineChart');
|
||||
var barChartItem = null;
|
||||
var barChartItemCanvas = $('#barChart');
|
||||
|
||||
var chartColors = [
|
||||
'rgba(255, 99, 132, 0.6)',
|
||||
'rgba(54, 162, 235, 0.6)',
|
||||
'rgba(255, 206, 86, 0.6)',
|
||||
'rgba(75, 192, 192, 0.6)',
|
||||
'rgba(153, 102, 255, 0.6)',
|
||||
'rgba(255, 159, 64, 0.6)',
|
||||
'rgba(255, 64, 159, 0.6)',
|
||||
'rgba(159, 255, 64, 0.6)',
|
||||
'rgba(255, 64, 255, 0.6)',
|
||||
'rgba(159, 159, 64, 0.6)',
|
||||
];
|
||||
|
||||
function randomScalingFactor() {
|
||||
return Math.round(Math.random() * 100);
|
||||
};
|
||||
|
||||
function randomConfig(num) {
|
||||
let config = null;
|
||||
switch (num) {
|
||||
case 1: {
|
||||
config = {
|
||||
type: 'pie',
|
||||
data: {
|
||||
datasets: [{
|
||||
data: [
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor()
|
||||
],
|
||||
backgroundColor: [
|
||||
chartColors[0],
|
||||
chartColors[1],
|
||||
],
|
||||
label: 'Dataset 1'
|
||||
}],
|
||||
labels: [
|
||||
'احداث',
|
||||
'نگه داری'
|
||||
]
|
||||
},
|
||||
options: {
|
||||
responsive: true,
|
||||
legend: {
|
||||
display: true
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'تفکیک پروژه های راه روستایی',
|
||||
position: 'bottom'
|
||||
},
|
||||
tooltips: {
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
};
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
config = {
|
||||
data: {
|
||||
datasets: [{
|
||||
data: [
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor()
|
||||
],
|
||||
backgroundColor: [
|
||||
chartColors[0],
|
||||
chartColors[1],
|
||||
chartColors[2],
|
||||
chartColors[3],
|
||||
chartColors[4],
|
||||
],
|
||||
label: 'تفکیک پروژه های راه روستایی'
|
||||
}],
|
||||
labels: [
|
||||
'شریانی',
|
||||
'غیرشریانی',
|
||||
'فرعی',
|
||||
'اصلی',
|
||||
'شریانی-اصلی'
|
||||
]
|
||||
},
|
||||
options: {
|
||||
responsive: true,
|
||||
legend: {
|
||||
display: true,
|
||||
position: 'right',
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'تفکیک پروژه های راه روستایی',
|
||||
position: 'bottom'
|
||||
},
|
||||
scale: {
|
||||
ticks: {
|
||||
display: true,
|
||||
beginAtZero: true
|
||||
},
|
||||
reverse: false
|
||||
},
|
||||
animation: {
|
||||
animateRotate: false,
|
||||
animateScale: true
|
||||
},
|
||||
tooltips: {
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
};
|
||||
break;
|
||||
}
|
||||
case 3: {
|
||||
config = {
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: ['فروردین', 'اردیبهشت', 'خرداد', 'تیر', 'مرداد', 'شهریور'],
|
||||
datasets: [{
|
||||
label: 'پیشرفت فیزیکی',
|
||||
backgroundColor: chartColors[0],
|
||||
borderColor: chartColors[0],
|
||||
data: [
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor()
|
||||
],
|
||||
fill: false,
|
||||
}, {
|
||||
label: 'پیشرفت ریالی',
|
||||
fill: false,
|
||||
backgroundColor: chartColors[1],
|
||||
borderColor: chartColors[1],
|
||||
data: [
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor()
|
||||
],
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
responsive: true,
|
||||
legend: {
|
||||
display: true,
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'نسبت پیشرفت فیزیکی به ریالی',
|
||||
position: 'bottom'
|
||||
},
|
||||
tooltips: {
|
||||
enabled: true,
|
||||
mode: 'index',
|
||||
intersect: false,
|
||||
},
|
||||
hover: {
|
||||
mode: 'nearest',
|
||||
intersect: true
|
||||
},
|
||||
scales: {
|
||||
xAxes: [{
|
||||
display: true,
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: 'ماه'
|
||||
}
|
||||
}],
|
||||
yAxes: [{
|
||||
display: true,
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: 'مقدار'
|
||||
}
|
||||
}]
|
||||
}
|
||||
}
|
||||
};
|
||||
break;
|
||||
}
|
||||
case 4: {
|
||||
config = {
|
||||
type: 'bar',
|
||||
data:
|
||||
{
|
||||
labels: ['مهر', 'آبان', 'آذر', 'دی', 'بهمن', 'اسفند'],
|
||||
datasets: [{
|
||||
label: 'راه روستایی',
|
||||
backgroundColor: chartColors[0],
|
||||
borderColor: chartColors[0],
|
||||
borderWidth: 1,
|
||||
data: [
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor()
|
||||
]
|
||||
}, {
|
||||
label: 'راهداری',
|
||||
backgroundColor: chartColors[1],
|
||||
borderColor: chartColors[1],
|
||||
borderWidth: 1,
|
||||
data: [
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor(),
|
||||
randomScalingFactor()
|
||||
]
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
responsive: true,
|
||||
legend: {
|
||||
display: true,
|
||||
position: 'top',
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'تفکیک پروژه های انجام شده تاکنون',
|
||||
position: 'bottom'
|
||||
},
|
||||
scales: {
|
||||
xAxes: [{
|
||||
display: true,
|
||||
}],
|
||||
yAxes: [{
|
||||
display: true,
|
||||
}]
|
||||
},
|
||||
tooltips: {
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
return config;
|
||||
}
|
||||
|
||||
createChartItem();
|
||||
|
||||
function createChartItem() {
|
||||
if (pieChartItem)
|
||||
pieChartItem.destroy();
|
||||
pieChartItem = new Chart(pieChartItemCanvas, randomConfig(1));
|
||||
if (cakeChartItem)
|
||||
cakeChartItem.destroy();
|
||||
cakeChartItem = new Chart.PolarArea(cakeChartItemCanvas, randomConfig(2));
|
||||
if (lineChartItem)
|
||||
lineChartItem.destroy();
|
||||
lineChartItem = new Chart(lineChartItemCanvas, randomConfig(3));
|
||||
if (barChartItem)
|
||||
barChartItem.destroy();
|
||||
barChartItem = new Chart(barChartItemCanvas, randomConfig(4));
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------
|
||||
|
||||
randomNumbers();
|
||||
|
||||
function randomNumbers() {
|
||||
$({ Counter: 0 }).animate({ Counter: Math.floor(Math.random() * 100) + 1100 }, {
|
||||
duration: 1500,
|
||||
easing: 'swing',
|
||||
step: function () {
|
||||
$('#first-number').text(Math.ceil(this.Counter));
|
||||
}
|
||||
});
|
||||
|
||||
$({ Counter: 0 }).animate({ Counter: Math.floor(Math.random() * 100) + 400 }, {
|
||||
duration: 1500,
|
||||
easing: 'swing',
|
||||
step: function () {
|
||||
$('#second-number').text(Math.ceil(this.Counter));
|
||||
}
|
||||
});
|
||||
|
||||
$({ Counter: 0 }).animate({ Counter: Math.floor(Math.random() * 100) + 630 }, {
|
||||
duration: 1500,
|
||||
easing: 'swing',
|
||||
step: function () {
|
||||
$('#third-number').text(Math.ceil(this.Counter));
|
||||
}
|
||||
});
|
||||
|
||||
$({ Counter: 0 }).animate({ Counter: Math.floor(Math.random() * 100) }, {
|
||||
duration: 1500,
|
||||
easing: 'swing',
|
||||
step: function () {
|
||||
$('#fourth-number').text(Math.ceil(this.Counter) + '%');
|
||||
}
|
||||
});
|
||||
|
||||
$({ Counter: 0 }).animate({ Counter: Math.floor(Math.random() * 100) }, {
|
||||
duration: 1500,
|
||||
easing: 'swing',
|
||||
step: function () {
|
||||
$('#fifth-number').text(Math.ceil(this.Counter) + '%');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Map selection
|
||||
|
||||
$('.map-svg-box svg #iran polygon').on('click', function () {
|
||||
randomNumbers();
|
||||
createChartItem();
|
||||
});
|
||||
|
||||
$('.map-svg-box svg #iran polygon').on('mouseover', function () {
|
||||
$(this).addClass('active-polygon');
|
||||
});
|
||||
|
||||
$('.map-svg-box svg #iran polygon').on('mouseout', function () {
|
||||
$(this).removeClass('active-polygon');
|
||||
});
|
||||
|
||||
$('.map-svg-box svg #iran path').on('click', function () {
|
||||
let selectedProvince = provinces.find(entry => entry.id == parseInt(this.id.substring(3)));
|
||||
// console.log(selectedProvince);
|
||||
});
|
||||
|
||||
$('.map-svg-box svg #iran path').on('mouseover', function () {
|
||||
$(this).addClass('active-polygon');
|
||||
});
|
||||
|
||||
$('.map-svg-box svg #iran path').on('mouseout', function () {
|
||||
$(this).removeClass('active-polygon');
|
||||
});
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.1 MiB |
@@ -1,991 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
||||
<link rel="icon" href="../dist/images/fav.ico" type="image/ico" sizes="16x16">
|
||||
<title> 251 نقطه پر تصادف مصوب سال 1395
|
||||
</title>
|
||||
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css" />
|
||||
<link rel="stylesheet" href="../dist/css/adminlte.css" />
|
||||
<link rel="stylesheet" href="../dist/css/fontiran.css">
|
||||
<!-- bootstrap slider -->
|
||||
<link rel="stylesheet" href="../plugins/bootstrap-slider/css/bootstrap-slider.min.css" />
|
||||
<!-- chartjs -->
|
||||
<link rel="stylesheet" href="../plugins/chart.js/Chart.min.css" />
|
||||
<!-- leaflet -->
|
||||
<link rel="stylesheet" href="../dist/css/leaflet.css">
|
||||
<!-- persian-datepicker -->
|
||||
<link rel="stylesheet" href="../dist/css/persian-datepicker.min.css">
|
||||
<!-- select2 -->
|
||||
<link rel="stylesheet" href="../plugins/select2/css/select2.min.css" />
|
||||
<!-- datatable -->
|
||||
<link rel="stylesheet" href="../plugins/datatables-bs4/css/dataTables.bootstrap4.min.css">
|
||||
<!-- datatable button -->
|
||||
<link rel="stylesheet" href="../plugins/datatables-buttons/css/buttons.bootstrap4.min.css">
|
||||
<link rel="stylesheet" href="../dist/css/footer.css" />
|
||||
<link rel="stylesheet" href="../dist/css/tablestyle.css" />
|
||||
<link rel="stylesheet" href="../dist/css/fullstyle.css" />
|
||||
<style>
|
||||
.row {
|
||||
display: unset;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1300px) {
|
||||
.content-center-dataTable {
|
||||
position: absolute;
|
||||
top: -50px;
|
||||
left: 40%;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
@include('layouts.header')
|
||||
|
||||
<div class="modal fade" id="pointedit">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<!-- Modal Header -->
|
||||
<div class="modal-header">
|
||||
<h4 class="modal-title">ویرایش نقطه پرتصادف</h4>
|
||||
<button type="button" class="close" data-dismiss="modal">
|
||||
×
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Modal body -->
|
||||
<div class="modal-body">
|
||||
<form>
|
||||
<input type="hidden" class="form-control" id="pointid" />
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> عملیات موردنیاز </label>
|
||||
<input type="text" class="form-control" id="operation" />
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> توصیف هندسی نقطه </label>
|
||||
<input type="text" class="form-control" id="target" name="date-modal" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputAddress">اقدامات انجام شده </label>
|
||||
<input type="text" class="form-control" id="action" />
|
||||
</div>
|
||||
<div class="form-group" id="sliderphysici">
|
||||
<label class="slider-label" for="inputAddress2">
|
||||
پیشرفت فیزیکی</label>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity">
|
||||
اعتبارات هزینه شده (به میلیون ریال)
|
||||
</label>
|
||||
<input type="number" class="form-control" id="cost" min="1000" />
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> تاریخ خاتمه</label>
|
||||
<input type="text" class="form-control" id="end-date" name="date-modal" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> عرض جغرافیایی </label>
|
||||
<input type="text" class="form-control cord-font" id="ac-point-lat"
|
||||
data-inputmask='"mask": "(99.999999999999999)"' data-mask />
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> طول جغرافیایی </label>
|
||||
<input type="text" class="form-control cord-font" id="ac-point-lng"
|
||||
data-inputmask='"mask": "(99.999999999999999)"' data-mask />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="file-input-modal-container">
|
||||
<div class="file-input-modal">
|
||||
برای آپلود فایل اینجا را کلیک کنید
|
||||
</div>
|
||||
<input class="file-input" style="display: none;" type="file" name="modalUpFile"
|
||||
multiple="" />
|
||||
</label>
|
||||
</div>
|
||||
<button type="button" class="btn btn-primary float-left" id="editpoints">
|
||||
ثبت
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid">
|
||||
<div class="row pt-3 px-4 body-table-style">
|
||||
<div class="col-12">
|
||||
<div class="d-flex content-center-dataTable">
|
||||
<span class="ml-1 pt-1">251 نقطه پر تصادف مصوب سال 1395</span>
|
||||
<!-- <button id="add-project-button">
|
||||
پروژه جدید +
|
||||
</button> -->
|
||||
</div>
|
||||
|
||||
|
||||
<table id="example" dir="rtl" class="table table-striped table-bordered" style="width: 100%;">
|
||||
<thead>
|
||||
<th>ردیف</th>
|
||||
<th class="text-nowrap">اداره کل</th>
|
||||
<th class="text-nowrap">نام محور</th>
|
||||
<th class="text-nowrap">توصیف هندسی نقطه</th>
|
||||
<th class="text-nowrap">عملیات مورد نیاز</th>
|
||||
<th class="text-nowrap">اقدامات انجام شده</th>
|
||||
<th class="text-nowrap">اعتبارات هزینه شده(میلیون ریال)</th>
|
||||
<th class="text-nowrap">پیشرفت فیزیکی (درصد)</th>
|
||||
<th class="text-nowrap">تاریخ خاتمه</th>
|
||||
<th class="text-nowrap">اخرین تاریخ بروزرسانی</th>
|
||||
<th class="text-nowrap">عملیات</th>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
<div id="stepModalmaintenance" class="modal animated zoomIn fade">
|
||||
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">
|
||||
ثبت پروژه رفع نقاط حادثه خیز / پرتصادف
|
||||
</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<!-- Modal body -->
|
||||
<div class="modal-body">
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4">
|
||||
<label>
|
||||
اداره کل / استان
|
||||
</label>
|
||||
<select class="form-control" name="province" id="province-id">
|
||||
</select>
|
||||
<label for="axis-name-id">
|
||||
نام محور
|
||||
</label>
|
||||
<input type="text" class="form-control" name="axis-name" id="axis-name-id"
|
||||
placeholder="نام محور" maxlength="50" />
|
||||
<label>
|
||||
نوع محور
|
||||
</label>
|
||||
<select class="form-control" name="axis-type" id="axis-type-id">
|
||||
<option value="0">انتخاب نوع محور</option>
|
||||
<option value="1">شریانی</option>
|
||||
<option value="2">اصلی</option>
|
||||
<option value="3">فرعی</option>
|
||||
<option value="4">روستایی</option>
|
||||
</select>
|
||||
<label> عنوان پروژه </label>
|
||||
<input type="text" class="form-control" name="edit-project-title" id="project-title-id"
|
||||
placeholder="عنوان" maxlength="50" />
|
||||
<label> نام پیمانکار </label>
|
||||
<input type="text" class="form-control" name="edit-contractor" id="contractor-id"
|
||||
placeholder="پیمانکار" maxlength="50" />
|
||||
<label>
|
||||
سال شروع
|
||||
</label>
|
||||
<input type="number" class="form-control"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) {this.value =this.value.slice(0, this.maxLength);}else if(this.value.slice(0 , 2) != 13){this.value = 13}"
|
||||
placeholder="(سال شروع)" id="yearshown" maxlength="4" value="13" />
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
<div class="col-md-12 mb-3">
|
||||
<div class="abrar-map-layout">
|
||||
<span class="abrar-map-title d-inline">ثبت موقعیت پروژه روی
|
||||
نقشه</span>
|
||||
<span class="abrar-map-title2 d-inline">موقعیت پایان اختیاری است</span>
|
||||
<div id="abrar-map"></div>
|
||||
<div class="row map-latlng-input-row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group map-latlng-form">
|
||||
<label class="required-label d-block text-center map-latlng-label">
|
||||
ثبت دستی مختصات
|
||||
</label>
|
||||
<input name="abrar-project-latlng-start" type="text"
|
||||
class="form-control input-cord map-latlng-input map-latlng-first-input"
|
||||
data-inputmask="'mask': '(99.999999) - (99.999999)'" data-mask
|
||||
placeholder="(شروع) => (طول جغرافیایی) - (عرض جغرافیایی)" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input name="abrar-project-latlng-end" type="text"
|
||||
class="form-control input-cord map-latlng-input map-latlng-sec-input"
|
||||
data-inputmask="'mask': '(99.999999) - (99.999999)'" data-mask
|
||||
placeholder="(پایان) => (طول جغرافیایی) - (عرض جغرافیایی)" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<div class="col-md-1">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-1">
|
||||
<i class="fa fa-plus-circle" style="
|
||||
font-size: 20px;
|
||||
margin-top: 30px;
|
||||
color: #007bff;
|
||||
" aria-hidden="true" onclick="addTownBox()"></i>
|
||||
<i class="fa fa-minus-circle" style="
|
||||
font-size: 20px;
|
||||
color: #007bff;" aria-hidden="true" onclick="removeTownBox()"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-11">
|
||||
<div class="row" id="subTown"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
{{-- yasiutest --}}
|
||||
<label>
|
||||
درجه اهمیت پروژه
|
||||
</label>
|
||||
<select class="form-control" name="projectrate" id="projectrateid">
|
||||
<option value="0"> درجه اهمیت پروژه</option>
|
||||
<option value="1">بسیار حائز اهمیت</option>
|
||||
<option value="2">عادی</option>
|
||||
<option value="3">پروژه با اهمیت کم</option>
|
||||
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="col-md-12">
|
||||
<div class="row"></div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal footer -->
|
||||
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger btn-prev cancel" class="cancel">
|
||||
انصراف
|
||||
</button>
|
||||
|
||||
<!-- <button type="button" class="btn btn-primary btn-next">ثبت</button> -->
|
||||
<!-- <button type="button" class="btn btn-danger btn-applyChangeCancel"
|
||||
style="display: none">انصراف</button> -->
|
||||
<button type="button" class="btn btn-primary btn-applyChange" id="submitNewRow">
|
||||
ثبت تغییرات
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="show-projecttool" class="modal animated zoomIn fade">
|
||||
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header-me w-100">
|
||||
<div class="text-left">
|
||||
<button class="btn-closeModal ml-2 mt-2" type="button" data-dismiss="modal" aria-label="Close">
|
||||
<i class="fa fa-times"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<span>
|
||||
طول پروژه به کیلومتر
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Modal body -->
|
||||
<div class="modal-body stylescroll">
|
||||
<div class="col-md-12">
|
||||
<div class="row parent-data-project">
|
||||
<div class="col-md-12">
|
||||
<div class="row ">
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
روکش آسفالت
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-1"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
ماسه آسفالت
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
بازیافت سرد/گرم
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-3"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
میکروسرفیسینگ
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-4"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
چیپ سیل
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-5"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
اسلاری سیل
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-6"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
اسکراب سیل
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-7"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
فوگ سیل
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-8"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
سیل کت
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-9"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
کیپ سیل
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-10"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
آسفالت سرد/ردمیکس
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-11"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
لکه گیری
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-12"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div class="form-group col-md-4 px-4">
|
||||
<label class="d-flex justify-content-center">
|
||||
درزگیری
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-13"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
placeholder="کیلومتر" min="0" maxlength="7" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Modal footer -->
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-success btn-applyChange" id="submitoolfinal">
|
||||
ثبت تغییرات
|
||||
</button>
|
||||
<button type="button" class="btn btn-danger btn-prev cancel" class="cancel" id="rejectoolfinal">
|
||||
انصراف
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Edit Modal -->
|
||||
<div class="modal fade" id="project-update-modal">
|
||||
<div class="modal-dialog modal-dialog-centered ">
|
||||
<div class="modal-content">
|
||||
<!-- Modal Header -->
|
||||
<div class="modal-header-me w-100">
|
||||
<div class="text-left">
|
||||
<button class="btn-closeModal ml-2 mt-2" type="button" data-dismiss="modal" aria-label="Close">
|
||||
<i class="fa fa-times"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<span>
|
||||
بروزرسانی آخرین وضعیت پروژه
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Modal body -->
|
||||
<div class="modal-body modal-body-scroll stylescroll" style="display: block;">
|
||||
<form>
|
||||
<div class="second-round parent-data-project">
|
||||
<p class="second-round-title">
|
||||
پیشرفت عملیات
|
||||
</p>
|
||||
<div class="row" id="item1">
|
||||
<div class="d-inline col-md-12">
|
||||
<label for="project-distance-1">
|
||||
روکش آسفالت
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item1-data">
|
||||
<div class="form-group col-md-4 distance-input tooltipstart1 px-4">
|
||||
<label>کیلومتر
|
||||
<small id="kilo1" style="color: red;display: none;">
|
||||
مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد
|
||||
</small>
|
||||
<small id="kilomin1" style="color: red;display: none;">
|
||||
از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود
|
||||
</small>
|
||||
</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-1-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 distance-input px-4">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-1-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 distance-input px-4">
|
||||
<label id="alertshowprogress1">درصد پیشرفت فیزیکی</label>
|
||||
<br>
|
||||
<input type="text" class="form-control" name="progress-percentage1"
|
||||
id="project-progress-percentage1" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row" id="item2">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-2">
|
||||
ماسه آسفالت
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item2-data">
|
||||
<div class="form-group col-md-4 distance-input tooltipstart2 px-4">
|
||||
<label>کیلومتر <small id="kilo2" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin2" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-2-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 distance-input px-4">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-2-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 distance-input px-4">
|
||||
<label id="alertshowprogress2">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage2"
|
||||
id="project-progress-percentage2" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item3">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-3">
|
||||
بازیافت سرد/گرم
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item3-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart3 px-4">
|
||||
<label>کیلومتر <small id="kilo3" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin3" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-3-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input px-4">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-3-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input px-4">
|
||||
<label id="alertshowprogress3">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage3"
|
||||
id="project-progress-percentage3" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item4">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-4">
|
||||
میکروسرفیسینگ
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item4-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart4 px-4">
|
||||
<label>کیلومتر <small id="kilo4" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin4" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-4-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-4-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress4">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage4"
|
||||
id="project-progress-percentage4" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item5">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-5">
|
||||
چیپ سیل
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item5-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart5">
|
||||
<label>کیلومتر <small id="kilo5" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin5" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-5-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-5-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress5">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage5"
|
||||
id="project-progress-percentage5" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item6">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-6">
|
||||
اسلاری سیل
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item6-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart6">
|
||||
<label>کیلومتر <small id="kilo6" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin6" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-6-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-6-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress6">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage6"
|
||||
id="project-progress-percentage6" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item7">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-7">
|
||||
اسکراب سیل
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item7-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart7">
|
||||
<label>کیلومتر <small id="kilo7" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin7" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-7-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-7-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress7">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage7"
|
||||
id="project-progress-percentage7" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item8">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-8">
|
||||
فوگ سیل
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item8-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart8">
|
||||
<label>کیلومتر <small id="kilo8" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin8" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-8-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-8-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress8">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage8"
|
||||
id="project-progress-percentage8" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item9">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-9">
|
||||
سیل کت
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item9-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart9">
|
||||
<label>کیلومتر <small id="kilo9" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin9" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type=" number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-9-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-9-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress9">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage"
|
||||
id="project-progress-percentage9" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item10">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-10">
|
||||
کیپ سیل
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item10-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart10">
|
||||
<label>کیلومتر <small id="kilo10" style="color: red;display: none;">مقدار باید از
|
||||
طول پروژه کمتر
|
||||
باشد </small><small id="kilomin10" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-10-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-10-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress10">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage10"
|
||||
id="project-progress-percentage10" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item11">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-11">
|
||||
آسفالت سرد/ردمیکس
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item11-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart11">
|
||||
<label>کیلومتر <small id="kilo11" style="color: red;display: none;">مقدار باید از
|
||||
طول پروژه کمتر
|
||||
باشد </small><small id="kilomin11" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-11-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-11-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress11">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage11"
|
||||
id="project-progress-percentage11" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item12">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-12">
|
||||
لکه گیری
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item12-data">
|
||||
<div class="form-group col-md-4 distance-input tooltipstart12 px-4">
|
||||
<label>کیلومتر <small id="kilo12" style="color: red;display: none;">مقدار باید از
|
||||
طول پروژه کمتر
|
||||
باشد </small><small id="kilomin12" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-12-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 distance-input px-4">
|
||||
<label>مترمربع</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-12-2"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-4 distance-input px-4">
|
||||
<label>تناژ</label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-12-3"
|
||||
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
|
||||
maxlength="7" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress12">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage12"
|
||||
id="project-progress-percentage12" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row" id="item13">
|
||||
<div class="d-inline col-md-6">
|
||||
<label for="project-distance-13">
|
||||
درزگیری
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" id="item13-data">
|
||||
<div class="form-group col-md-6 distance-input tooltipstart13">
|
||||
<label>کیلومتر<small id="kilo13" style="color: red;display: none;">مقدار باید از طول
|
||||
پروژه کمتر
|
||||
باشد </small><small id="kilomin13" style="color: red;display: none;">از
|
||||
کیلومتر گذشته
|
||||
نمیتواند کمتر شود </small></label>
|
||||
<input type="number" class="form-control" name="axis-name"
|
||||
id="project-distance-input-13-1" min="0" />
|
||||
</div>
|
||||
<div class="form-group col-md-12 distance-input">
|
||||
<label id="alertshowprogress13">درصد پیشرفت فیزیکی</label>
|
||||
<input type="text" class="form-control" name="progress-percentage13"
|
||||
id="project-progress-percentage13" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-md-6 distance-input">
|
||||
<label>آخرین وضعیت پروژه</label>
|
||||
<select class="form-control" id="project_last_status">
|
||||
<option value="0">توسط استان بروز رسانی نشده است </option>
|
||||
<option value="1"> در دست برنامه ریزی اولیه</option>
|
||||
<option value="2"> در دست مطالعه و تهیه اسناد مناقصه</option>
|
||||
<option value="3">در دست مناقصه</option>
|
||||
<option value="4">در حال تجهیز کارگاه</option>
|
||||
<option value="5"> در حال اجرا/فعال</option>
|
||||
<option value="6">در حال اجرا/متوقف </option>
|
||||
<option value="7"> در حال آماده سازی برای افتتاح</option>
|
||||
<option value="8"> تکمیل و خاتمه یافته و بهره برداری شده </option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div id="stop-reason-text-div" class="row form-group col-md-12 distance-input"
|
||||
style="display: none;">
|
||||
<textarea maxlength="190" id="stop-reason-text" class="form-control"></textarea>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 ">
|
||||
<div class="abrar-map-layout">
|
||||
<span class="abrar-map-title d-inline"> موقعیت پروژه و اکیپ روی
|
||||
نقشه</span>
|
||||
<div id="abrar-map-2"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
<button type="button" class="btn btn-success float-left" id="add-update-button">
|
||||
ثبت و بروزرسانی
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Edit Modal -->
|
||||
@include('layouts.footer')
|
||||
|
||||
</body>
|
||||
|
||||
<!-- jQuery -->
|
||||
<script src="../plugins/jquery/jquery.min.js"></script>
|
||||
<script src="../dist/js/jquery.rollNumber.js"></script>
|
||||
<script src="../dist/js/jQuery-Plugin-For-Creating-An-Animated-Counter-kCounter/js/kcounter.js"></script>
|
||||
<!-- Bootstrap 4 -->
|
||||
<script src="../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||
<!-- ChartJS -->
|
||||
<script src="../plugins/chart.js/Chart.min.js"></script>
|
||||
<!-- leaflet -->
|
||||
<script src="../dist/js/leaflet.js"></script>
|
||||
<script src="../dist/js/leaflet.markercluster.js"></script>
|
||||
<script src="../dist/js/leaflet-routing-machine.js"></script>
|
||||
<!-- persian-datepicker -->
|
||||
<script src="../dist/js/persian-datepicker.min.js"></script>
|
||||
<script src="../dist/js/persian-date.min.js"></script>
|
||||
<!-- datatable -->
|
||||
<script src="../plugins/datatables/jquery.dataTables.min.js"></script>
|
||||
<script src="../plugins/datatables-bs4/js/dataTables.bootstrap4.js"></script>
|
||||
<!-- datable button -->
|
||||
<script src="../plugins/datatables-buttons/js/dataTables.buttons.min.js"></script>
|
||||
<script src="../plugins/datatables-buttons/js/buttons.html5.min.js"></script>
|
||||
<script src="../plugins/datatables-buttons/js/buttons.print.min.js"></script>
|
||||
<script src="../dist/js/jszip.min.js"></script>
|
||||
<!-- select2 -->
|
||||
<script src="../plugins/select2/js/select2.full.min.js"></script>
|
||||
<!-- inputmask -->
|
||||
<script src="../plugins/inputmask/min/jquery.inputmask.bundle.min.js"></script>
|
||||
|
||||
<!-- slider-bootstarp -->
|
||||
<script src="../plugins/bootstrap-slider/bootstrap-slider.min.js"></script>
|
||||
<script src="../dist/js/sweetalert2js.js"></script>
|
||||
<script src="../plugins/moment/moment.min.js"></script>
|
||||
<script src="../dist/js/jalali-moment.browser.js"></script>
|
||||
<script src="../dist/js/static.js"></script>
|
||||
<script src="../dist/js/header.js"></script>
|
||||
<!-- script page -->
|
||||
<script src="../dist/js/Accidentpoints251.js"></script>
|
||||
|
||||
</html>
|
||||
@@ -1,339 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
||||
<!-- IRANSans Font -->
|
||||
<!-- Font Awesome Icons -->
|
||||
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css" />
|
||||
<!-- <link rel="stylesheet" href=".././.../plugins/"> -->
|
||||
<!-- IRANSans Font -->
|
||||
<link rel="stylesheet" href="../dist/css/fontiran.css" />
|
||||
<link rel="stylesheet" href="../plugins/bootstrap-slider/css/bootstrap-slider.min.css" />
|
||||
<!-- <link rel="stylesheet" href="../plugins/datatables/css/dataTables.bootstrap4.min.css"> -->
|
||||
<link rel="stylesheet" href="../dist/css/dataTables.bootstrap4.min.css" />
|
||||
<link rel="stylesheet" href="../dist/css/persian-datepicker.min.css" />
|
||||
<link rel="stylesheet" href="../dist/css/buttons.dataTables.min.css" />
|
||||
<!-- Theme style -->
|
||||
<link rel="stylesheet" href="../dist/css/adminlte.css" />
|
||||
<!-- persian datepicker -->
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://unpkg.com/persian-datepicker@1.2.0/dist/css/persian-datepicker.min.css"
|
||||
/>
|
||||
<title>251 نقطه پر تصادف مصوب سال 1395</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: rgb(244, 246, 249);
|
||||
}
|
||||
.div-table {
|
||||
border: 0 solid;
|
||||
border-radius: 0.25rem;
|
||||
margin-top: 20px;
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
|
||||
background-color: #fff;
|
||||
width: 98%;
|
||||
}
|
||||
h6 {
|
||||
font-size: 1.2rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
.thead-style {
|
||||
background-color: #286893;
|
||||
}
|
||||
td {
|
||||
font-size: 12px;
|
||||
}
|
||||
th {
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
color: #fff;
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
label {
|
||||
font-size: 14px;
|
||||
}
|
||||
input {
|
||||
margin-right: 6px;
|
||||
}
|
||||
.dataTables_info {
|
||||
font-size: 14px;
|
||||
}
|
||||
.topBottom-whiteSpace {
|
||||
margin-top: 95px;
|
||||
margin-bottom: 1rem !important;
|
||||
padding-bottom: 1.5rem;
|
||||
}
|
||||
.pagination {
|
||||
margin-top: 30px !important;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
table .dataTable thead .sorting:before,
|
||||
table.dataTable thead .sorting:after,
|
||||
table.dataTable thead .sorting_asc:before,
|
||||
table.dataTable thead .sorting_asc:after,
|
||||
table.dataTable thead .sorting_desc:before,
|
||||
table.dataTable thead .sorting_desc:after,
|
||||
table.dataTable thead .sorting_asc_disabled:before,
|
||||
table.dataTable thead .sorting_asc_disabled:after,
|
||||
table.dataTable thead .sorting_desc_disabled:before,
|
||||
table.dataTable thead .sorting_desc_disabled:after {
|
||||
display: none;
|
||||
}
|
||||
table.dataTable thead .sorting:before,
|
||||
table.dataTable thead .sorting:after,
|
||||
table.dataTable thead .sorting_asc:before,
|
||||
table.dataTable thead .sorting_asc:after,
|
||||
table.dataTable thead .sorting_desc:before,
|
||||
table.dataTable thead .sorting_desc:after,
|
||||
table.dataTable thead .sorting_asc_disabled:before,
|
||||
table.dataTable thead .sorting_asc_disabled:after,
|
||||
table.dataTable thead .sorting_desc_disabled:before,
|
||||
table.dataTable thead .sorting_desc_disabled:after {
|
||||
display: none;
|
||||
}
|
||||
#navbarmenu_top {
|
||||
background-color: #286893;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
}
|
||||
.dataTables_filter {
|
||||
float: left;
|
||||
}
|
||||
.dataTables_length {
|
||||
float: left;
|
||||
}
|
||||
.amaliat-btn {
|
||||
padding: 4px 8px 4px 8px !important;
|
||||
margin-left: 3px;
|
||||
font-weight: 900;
|
||||
font-size: 10px;
|
||||
}
|
||||
td {
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
.clearfix::after {
|
||||
content: "";
|
||||
clear: both;
|
||||
display: table;
|
||||
}
|
||||
.uploadBtn {
|
||||
background-color: #f08a5d;
|
||||
padding: 12px;
|
||||
border-radius: 0.25rem;
|
||||
height: 36px;
|
||||
margin-right: 8px;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ced4da;
|
||||
line-height: 9px;
|
||||
}
|
||||
.file-label {
|
||||
cursor: pointer;
|
||||
font-weight: 300 !important;
|
||||
color: #aca9ac;
|
||||
}
|
||||
.modal-title {
|
||||
font-weight: 700;
|
||||
}
|
||||
.style-pishrafte {
|
||||
padding: 0px !important;
|
||||
width: 156% !important;
|
||||
}
|
||||
.new-style {
|
||||
width: 63%;
|
||||
}
|
||||
.eqdamat-style {
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
#slider11 {
|
||||
width: 100% !important;
|
||||
}
|
||||
.fiziki-style {
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
.eqdamat-input {
|
||||
height: 85%;
|
||||
}
|
||||
.ex2 .slider-selection {
|
||||
background: #8283FF;
|
||||
}
|
||||
.dt-button {
|
||||
background: #28a745 !important;
|
||||
border-color: #28a745 !important;
|
||||
color: white !important;
|
||||
line-height: 30.5px;
|
||||
}
|
||||
div.dt-buttons {
|
||||
position: relative;
|
||||
float: right;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body
|
||||
class="hold-transition sidebar-mini layout-fixed layout-navbar-fixed starter-project-page accident-point-251-page"
|
||||
>
|
||||
<header>
|
||||
<div class="menu_top" id="navbarmenu_top">
|
||||
<div class="rahdariLogo">
|
||||
<a href="http://rmto.ir"
|
||||
><img
|
||||
src="../dist/images/icons/alertInstallAppLogo.png"
|
||||
alt=""
|
||||
title="سازمان راهداری و حمل و نقل جاده ای"
|
||||
/></a>
|
||||
</div>
|
||||
<button
|
||||
class="responsiveTopMenuBtn routinghover"
|
||||
onclick="window.open('/rmto', '_self');"
|
||||
>
|
||||
<img src="../dist/images/icons/home.svg" />صفحه اصلی
|
||||
</button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="modal fade" id="pointedit">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<!-- Modal Header -->
|
||||
<div class="modal-header">
|
||||
<h4 class="modal-title">ویرایش نقطه پرتصادف</h4>
|
||||
<button type="button" class="close" data-dismiss="modal">
|
||||
×
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Modal body -->
|
||||
<div class="modal-body">
|
||||
<form>
|
||||
<input type="hidden" class="form-control" id="pointid" />
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> عملیات موردنیاز </label>
|
||||
<input type="text" class="form-control" id="operation" />
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> توصیف هندسی نقطه </label>
|
||||
<input type="text" class="form-control" id="target" name="date-modal" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputAddress">اقدامات انجام شده </label>
|
||||
<input type="text" class="form-control" id="action" />
|
||||
</div>
|
||||
<div class="form-group" id="sliderphysici">
|
||||
<label class="slider-label" for="inputAddress2">
|
||||
پیشرفت فیزیکی</label>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity">
|
||||
اعتبارات هزینه شده (به میلیون ریال)
|
||||
</label>
|
||||
<input type="number" class="form-control" id="cost" min="1000" />
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> تاریخ خاتمه</label>
|
||||
<input type="text" class="form-control" id="end-date" name="date-modal" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> عرض جغرافیایی </label>
|
||||
<input type="text" class="form-control cord-font" id="ac-point-lat"
|
||||
data-inputmask='"mask": "(99.999999999999999)"' data-mask />
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label for="inputCity"> طول جغرافیایی </label>
|
||||
<input type="text" class="form-control cord-font" id="ac-point-lng"
|
||||
data-inputmask='"mask": "(99.999999999999999)"' data-mask />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="file-input-modal-container">
|
||||
<div class="file-input-modal">
|
||||
برای آپلود فایل اینجا را کلیک کنید
|
||||
</div>
|
||||
<input class="file-input" type="file" name="modalUpFile" multiple="" />
|
||||
</label>
|
||||
</div>
|
||||
<button type="button" class="btn btn-primary float-left" id="editpoints">
|
||||
ثبت
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid px-4 div-table topBottom-whiteSpace">
|
||||
<br />
|
||||
<h6>251 نقطه پر تصادف مصوب سال 1395</h6>
|
||||
<hr />
|
||||
<div class="col-12">
|
||||
<table
|
||||
id="example"
|
||||
class="table table-hover table-bordered table-striped"
|
||||
width="100%"
|
||||
>
|
||||
<thead class="thead-style">
|
||||
<tr>
|
||||
<th width="3%">ردیف</th>
|
||||
<th width="7%">اداره کل</th>
|
||||
<th width="7%">نام محور</th>
|
||||
<th width="8%">توصیف هندسی نقطه</th>
|
||||
<th width="13%">عملیات مورد نیاز</th>
|
||||
<th width="12%">اقدامات انجام شده</th>
|
||||
<th width="8%">اعتبارات هزینه شده(میلیون ریال)</th>
|
||||
<th width="8%">پیشرفت فیزیکی (درصد)</th>
|
||||
<th width="6%">تاریخ خاتمه</th>
|
||||
<th width="10%">اخرین تاریخ بروزرسانی</th>
|
||||
<th width="10%">عملیات</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- jQuery -->
|
||||
<script src="../plugins/jquery/jquery.min.js"></script>
|
||||
<!-- Bootstrap 4 -->
|
||||
<script src="../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
<!-- Persian DatePicker -->
|
||||
<script src="../dist/js/persian-date.min.js"></script>
|
||||
<script src="../dist/js/persian-datepicker.min.js"></script>
|
||||
<!-- AdminLTE App -->
|
||||
<script src="../dist/js/adminlte.min.js"></script>
|
||||
<script src="../plugins/bootstrap-slider/bootstrap-slider.min.js"></script>
|
||||
<script src="../plugins/datatables/jquery.dataTables.min.js"></script>
|
||||
<script src="../dist/js/dataTables.bootstrap4.min.js"></script>
|
||||
<script src="../dist/js/datatables/persian.js"></script>
|
||||
<script src="../plugins/datatables-buttons/js/dataTables.buttons.min.js"></script>
|
||||
<script src="../plugins/datatables-buttons/js/buttons.html5.min.js"></script>
|
||||
<!-- <script src="../plugins/datatables-buttons/js/buttons.print.min.js"></script> -->
|
||||
<script src="../dist/js/jszip.min.js"></script>
|
||||
<script src="../plugins/sweetalert2/sweetalert2.all.min.js"></script>
|
||||
<!-- Moment.js -->
|
||||
<script src="../plugins/moment/moment.min.js"></script>
|
||||
<script src="../dist/js/jalali-moment.browser.js"></script>
|
||||
<!-- Page Script -->
|
||||
<script src="../dist/js/251pointss.js"></script>
|
||||
<script src=""></script>
|
||||
<!-- <script src="../dist/js/panel.js"></script>
|
||||
<script src="../dist/js/panel-managment.js"></script> -->
|
||||
<!-- Page Script -->
|
||||
<!-- <script src="../dist/js/user-list.js"></script> -->
|
||||
<!-- persian datepicker -->
|
||||
<script src="https://unpkg.com/persian-date@1.1.0/dist/persian-date.min.js"></script>
|
||||
<script src="https://unpkg.com/persian-datepicker@1.2.0/dist/js/persian-datepicker.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user