225 lines
9.2 KiB
HTML
225 lines
9.2 KiB
HTML
title = "machine"
|
|
url = "/machine"
|
|
layout = "platform_main"
|
|
is_hidden = 0
|
|
|
|
[builderList]
|
|
modelClass = "Romanah\Gokbakja\Models\Building"
|
|
scope = "-"
|
|
scopeValue = "{{ :scope }}"
|
|
displayColumn = "id"
|
|
noRecordsMessage = "No records found"
|
|
detailsPage = "-"
|
|
detailsUrlParameter = "id"
|
|
pageNumber = "{{ :page }}"
|
|
|
|
[builderList builderList2]
|
|
modelClass = "Romanah\Gokbakja\Models\Machine"
|
|
scope = "-"
|
|
scopeValue = "{{ :scope }}"
|
|
displayColumn = "id"
|
|
noRecordsMessage = "No records found"
|
|
detailsPage = "-"
|
|
detailsUrlParameter = "id"
|
|
pageNumber = "{{ :page }}"
|
|
|
|
[builderList builderList3]
|
|
modelClass = "Romanah\Gokbakja\Models\BagSize"
|
|
scope = "-"
|
|
scopeValue = "{{ :scope }}"
|
|
displayColumn = "id"
|
|
noRecordsMessage = "No records found"
|
|
detailsPage = "-"
|
|
detailsUrlParameter = "id"
|
|
pageNumber = "{{ :page }}"
|
|
|
|
[builderList builderList4]
|
|
modelClass = "Romanah\Gokbakja\Models\BagType"
|
|
scope = "-"
|
|
scopeValue = "{{ :scope }}"
|
|
displayColumn = "id"
|
|
noRecordsMessage = "No records found"
|
|
detailsPage = "-"
|
|
detailsUrlParameter = "id"
|
|
pageNumber = "{{ :page }}"
|
|
|
|
[machineProduction]
|
|
|
|
[builderList builderList5]
|
|
modelClass = "Romanah\Gokbakja\Models\BagColor"
|
|
scope = "-"
|
|
scopeValue = "{{ :scope }}"
|
|
displayColumn = "id"
|
|
noRecordsMessage = "No records found"
|
|
detailsPage = "-"
|
|
detailsUrlParameter = "id"
|
|
pageNumber = "{{ :page }}"
|
|
==
|
|
{% set records = builderList.records %}
|
|
{% set displayColumn = builderList.displayColumn %}
|
|
{% set noRecordsMessage = builderList.noRecordsMessage %}
|
|
{% set detailsPage = builderList.detailsPage %}
|
|
{% set detailsKeyColumn = builderList.detailsKeyColumn %}
|
|
{% set detailsUrlParameter = builderList.detailsUrlParameter %}
|
|
|
|
{% set machines = builderList2.records %}
|
|
{% set types = builderList4.records %}
|
|
{% set sizes = builderList3.records %}
|
|
{% set colors = builderList5.records %}
|
|
|
|
{% put styles %}
|
|
<link href="{{'assets/libs/datatables.net-bs4/css/dataTables.bootstrap4.min.css'|theme}}" rel="stylesheet"
|
|
type="text/css" />
|
|
<link href="{{'assets/libs/datatables.net-buttons-bs4/css/buttons.bootstrap4.min.css'|theme}}" rel="stylesheet"
|
|
type="text/css" />
|
|
<link href="{{'assets/libs/datatables.net-select-bs4/css/select.bootstrap4.min.css'|theme}}" rel="stylesheet"
|
|
type="text/css" />
|
|
|
|
<link href="{{'assets/libs/select2/css/select2.min.css'|theme}}" rel="stylesheet" type="text/css">
|
|
{% endput %}
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
<div class="collapse multi-collapse" id="multiCollapseExample1">
|
|
<div class="card card-body">
|
|
|
|
<form data-request="onCreateMachineProduction" data-request-flash>
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
<select class="form-control select2" name="machine_id">
|
|
<option value="0">Enjam Saýla</option>
|
|
{% for machine in machines %}
|
|
<option value="{{machine.id}}">{{machine.name}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col">
|
|
<!-- <input type="date" name="date" class="form-control" placeholder="Sene"> -->
|
|
<div class="input-group" id="datepicker2">
|
|
<input type="text" class="form-control" name="date" placeholder="Sene"
|
|
data-date-format="d.m.yyyy" data-date-container='#datepicker2' data-provide="datepicker"
|
|
data-date-autoclose="true">
|
|
|
|
<span class="input-group-text"><i class="mdi mdi-calendar"></i></span>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<select class="form-control select2" name="size_id">
|
|
<option value="0">Ölçeg Saýla</option>
|
|
{% for size in sizes %}
|
|
<option value="{{size.id}}">{{size.name}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col">
|
|
<select class="form-control select2" name="type_id">
|
|
<option value="0">Görnüş Saýla</option>
|
|
{% for type in types %}
|
|
<option value="{{type.id}}">{{type.name}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col">
|
|
<select class="form-control select2" name="color_id">
|
|
<option value="0">Reňk Saýla</option>
|
|
{% for color in colors %}
|
|
<option value="{{color.id}}">{{color.name}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col">
|
|
<input type="number" name="produced_weight" class="form-control"
|
|
placeholder="Mukdar (kg)">
|
|
</div>
|
|
<div class="col">
|
|
<input type="text" name="note" class="form-control" placeholder="Bellik">
|
|
</div>
|
|
<div class="col">
|
|
<button type="submit" class="btn btn-primary waves-effect waves-light" style="width: 100%;">Goş</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h3 class="card-title" style="font-size: 22px;color: #1e2038;">Enjamlar boýunça
|
|
(Şu günki sene: {{currentDate|date('d.m.Y | H:i')}}) <font id="validationq" style="color: darkred;font-size: 17px;"></font></h3>
|
|
<p class="card-title-desc" style="color: #6c6ff5;">Hasabat</p>
|
|
|
|
</div>
|
|
<div class="col-md-6" style="text-align: right;">
|
|
<a class="btn btn-primary" data-bs-toggle="collapse" href="#multiCollapseExample1"
|
|
role="button" aria-expanded="false" aria-controls="multiCollapseExample1">Täze
|
|
Maglumat</a>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- <h1>{{machineProductions}}</h1> -->
|
|
|
|
|
|
<table id="datatable-buttons" class="table table-striped table-bordered dt-responsive nowrap"
|
|
style="border-collapse: collapse; border-spacing: 0; width: 100%;">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 5%;">№</th>
|
|
<th>Öndürlen Sene</th>
|
|
<th>Bina No</th>
|
|
<th>Enjam No</th>
|
|
<th>Rulon Ölçegi</th>
|
|
<th>Rulon Görnüşi</th>
|
|
<th>Rulon Reňki</th>
|
|
<th>Önen Önüm (kg)</th>
|
|
<th>Ady Familiýasy</th>
|
|
<th>Mehanik</th>
|
|
<th>Bellik</th>
|
|
<!-- <th>Настройки</th> -->
|
|
</tr>
|
|
</thead>
|
|
<tbody id="machine_datas">
|
|
{% component 'machineProduction' %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th style="width: 5%;">№</th>
|
|
<th>Öndürlen Sene</th>
|
|
<th>Bina No</th>
|
|
<th>Enjam No</th>
|
|
<th>Rulon Ölçegi</th>
|
|
<th>Rulon Görnüşi</th>
|
|
<th>Rulon Reňki</th>
|
|
<th>Önen Önüm (kg)</th>
|
|
<th>Ady Familiýasy</th>
|
|
<th>Mehanik</th>
|
|
<th>Bellik</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% put scripts %}
|
|
<script src="{{'assets/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'|theme}}"></script>
|
|
<script src="{{'assets/libs/select2/js/select2.min.js'|theme}}"></script>
|
|
<script src="{{'assets/js/pages/form-advanced.init.js'|theme}}"></script>
|
|
{% endput %}
|
|
|
|
{% partial 'dataTableJs' %}
|