282 lines
13 KiB
HTML
282 lines
13 KiB
HTML
title = "sewer/new"
|
|
url = "/sewer/new"
|
|
layout = "platform_main"
|
|
is_hidden = 0
|
|
|
|
[sewer]
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
$this["shifts"] = Romanah\Gokbakja\Models\Shift::get();
|
|
$this["sewerMachines"] = Romanah\Gokbakja\Models\SewerMachine::get();
|
|
|
|
|
|
//dd($pivotSewersWorking);
|
|
$stock = Romanah\Gokbakja\Models\Stock::where("type", 'rulon')->first();
|
|
$stockId = $stock->id;
|
|
|
|
$this["rulonsInStock"] = Romanah\Gokbakja\Models\RulonAction::select('romanah_gokbakja_rulon_action.*')
|
|
->with(['product' => function($q){
|
|
$q->with(['bag_type', 'bag_size', 'color', 'machine']);
|
|
}])
|
|
->where("stock_id", $stockId)
|
|
->addSelect(DB::raw("SUM(amount) as quantity"))
|
|
->having('quantity', '>', 0)
|
|
->groupBy('romanah_gokbakja_rulon_action.product_id')
|
|
->orderBy('id', 'DESC')
|
|
->get();
|
|
|
|
}
|
|
?>
|
|
==
|
|
{% 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">
|
|
{% if crudSewerProduction %}
|
|
<div class="col-md-12">
|
|
<div class="collapse multi-collapse" id="multiCollapseExample1">
|
|
<form data-request="onCreateSewerProduction" data-request-flash>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col">
|
|
<label class="form-label">Sürülmedikmi?</label>
|
|
<select class="form-control select2" name="is_sewed" onchange="setField(this.value);">
|
|
<option value="1">Ýok</option>
|
|
<option value="0">Hawa</option>
|
|
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<label class="form-label">Smen Saýlaň</label>
|
|
<select class="form-control select2" name="shift_id">
|
|
<option value="0">Saýla</option>
|
|
{% for shift in shifts %}
|
|
<option value="{{shift.id}}">{{shift.desc}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<label class="form-label">Stanok Saýlaň</label>
|
|
<select class="form-control select2" name="sewer_machine_id">
|
|
<option value="0">Saýla</option>
|
|
{% for sewerMachine in sewerMachines %}
|
|
<option value="{{sewerMachine.id}}">{{sewerMachine.name}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<label class="form-label">Sene</label>
|
|
<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" required>
|
|
|
|
<span class="input-group-text"><i class="mdi mdi-calendar"></i></span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-3" id="rulon_section">
|
|
<label class="form-label">Rulon Saýlaň</label>
|
|
<select class="form-control select2" name="rulon_action_id">
|
|
<option value="0">Saýla</option>
|
|
{% for machineProduction in rulonsInStock %}
|
|
{% if machineProduction.quantity > 0 %}
|
|
<option value="{{machineProduction.id}}">
|
|
#Rulon{{machineProduction.product_id}}-
|
|
|
|
{{machineProduction.product.machine.name}} /
|
|
{{machineProduction.product.width}} x
|
|
{{machineProduction.product.gram}} m2,
|
|
{{machineProduction.product.bag_type.name}},
|
|
{{machineProduction.product.color.name}}
|
|
|
|
--({{machineProduction.quantity}} kg)
|
|
</option>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col">
|
|
<div>
|
|
<label class="form-label">Halta Ini</label>
|
|
|
|
<input type="number" name="width" step="0.01" class="form-control"
|
|
placeholder="Halta Ini" required>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<div>
|
|
<label class="form-label">Halta Boýy</label>
|
|
|
|
<input type="number" name="height" step="0.01" class="form-control"
|
|
placeholder="Halta Boýy" required>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<div>
|
|
<label class="form-label">Halta agramy (gr)</label>
|
|
|
|
<input type="number" step="0.01" name="bag_gram" class="form-control"
|
|
placeholder="Halta gramy" required>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="col">
|
|
<div>
|
|
<label class="form-label">Bellik</label>
|
|
|
|
<input type="text" name="note" class="form-control" placeholder="Bellik">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="col">
|
|
<button type="submit" class="btn btn-primary waves-effect waves-light"
|
|
style="margin-top: 30px;width: 100%;">Goş</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="row">
|
|
<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;">Halta Tikýän Stanoklar</h3>
|
|
<p class="card-title-desc" style="color: #6c6ff5;">Hasabaty</p>
|
|
</div>
|
|
<div class="col-md-6" style="text-align: right;">
|
|
{% if crudSewerProduction %}
|
|
<a class="btn btn-primary" data-bs-toggle="collapse" href="#multiCollapseExample1"
|
|
role="button" aria-expanded="false" aria-controls="multiCollapseExample1">Täze
|
|
Maglumat</a>
|
|
{% endif %}
|
|
</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%;" data-page-length='13'>
|
|
<thead>
|
|
<tr>
|
|
<td rowspan="2">No</td>
|
|
<th rowspan="2">Senesi</th>
|
|
<th rowspan="2">Önümçilik No</th>
|
|
<th colspan="2" style="background: #ccd9e3;">Berilen Rulon</th>
|
|
<th colspan="3" style="background: #c7e4fd;">Halta Maglumaty</th>
|
|
<th colspan="3" style="background: bisque;">Tikilen Halta</th>
|
|
<th colspan="2" style="background: #ffbbbb;">Ulanylan Rulon</th>
|
|
<th rowspan="2">Status</th>
|
|
<th rowspan="2">Bellik</th>
|
|
<th rowspan="2">Sazlamalar</th>
|
|
</tr>
|
|
<tr>
|
|
|
|
|
|
<th>Rulon Görnüş</th>
|
|
<th>Çig mal mukdary</th>
|
|
<th>Halta Görnüş</th>
|
|
<th>Stanok</th>
|
|
<th>Gram</th>
|
|
<th>Halta (arassa)</th>
|
|
<th>BRAK Halta</th>
|
|
<th>Sürülmedik</th>
|
|
<th>Ulanylan</th>
|
|
<th>Galyndy</th>
|
|
|
|
|
|
<!-- <th>Настройки</th> -->
|
|
</tr>
|
|
</thead>
|
|
<tbody id="sewer_datas">
|
|
|
|
{% component 'sewer' %}
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th style="width: 5%;">№</th>
|
|
<th>Senesi</th>
|
|
<th>Önümçilik No</th>
|
|
<th style="background: #ccd9e3;">Rulon Görnüş</th>
|
|
<th style="background: #ccd9e3;">Çig mal mukdary</th>
|
|
<th style="background: #c7e4fd;">Halta Görnüş</th>
|
|
<th style="background: #c7e4fd;">Stanok</th>
|
|
<th style="background: #c7e4fd;">Gram</th>
|
|
<th style="background: bisque;">Halta (arassa)</th>
|
|
<th style="background: bisque;">BRAK Halta</th>
|
|
<th style="background: bisque;">Sürülmedik</th>
|
|
<th style="background: #ffbbbb;">Ulanylan</th>
|
|
<th style="background: #ffbbbb;">Galyndy</th>
|
|
<th>Status</th>
|
|
<th>Bellik</th>
|
|
<th>Sazlamalar</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="modal fade bs-example-modal-sm-1" tabindex="-1" role="dialog"
|
|
aria-labelledby="mySmallModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content" id="modal-form">
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</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>
|
|
|
|
<script>
|
|
setField(1);
|
|
|
|
function setField(isNotSewed){
|
|
|
|
if(isNotSewed == 1){
|
|
$('#rulon_section').show();
|
|
}else if(isNotSewed == 0){
|
|
$('#rulon_section').hide();
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
{% endput %}
|
|
{% partial 'dataTableJs' %} |