230 lines
11 KiB
HTML
230 lines
11 KiB
HTML
title = "sewer/new"
|
|
url = "/sewer/new"
|
|
layout = "platform_main"
|
|
is_hidden = 0
|
|
|
|
[sewer]
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
$this["employees"] = Romanah\Gokbakja\Models\Employee::where("status", 1)->where("is_sewer", 1)->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']);
|
|
}])
|
|
->where("stock_id", $stockId)
|
|
->where("status_accountant", "accept")
|
|
->where("status_director", "accept")
|
|
->addSelect(DB::raw("SUM(amount) as quantity"))
|
|
->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">Tikinçi Saýlaň</label>
|
|
<select class="form-control select2" name="employee_id">
|
|
<option value="0">Saýla</option>
|
|
{% for employee in employees %}
|
|
<option value="{{employee.id}}">{{employee.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">
|
|
|
|
<span class="input-group-text"><i class="mdi mdi-calendar"></i></span>
|
|
</div>
|
|
</div>
|
|
<div class="col-3">
|
|
<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.bag_size.width}} x
|
|
{{machineProduction.product.bag_size.height}} 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">
|
|
</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">
|
|
</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">
|
|
</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;">Tikinçiler boýunça</h3>
|
|
<p class="card-title-desc" style="color: #6c6ff5;">Hasabat</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>
|
|
<th style="width: 5%;">№</th>
|
|
<th>Önümçilik No</th>
|
|
<th>Halta Görnüş</th>
|
|
<th>Rulon Görnüş</th>
|
|
<th>Tikinçi</th>
|
|
<th>Senesi</th>
|
|
<th>Gram</th>
|
|
<th>Çig mal mukdary</th>
|
|
<th>Tikilen Halta</th>
|
|
<th>Ulanylan</th>
|
|
<th>Galyndy</th>
|
|
<th>Status</th>
|
|
<th>Bellik</th>
|
|
<th>Sazlamalar</th>
|
|
<!-- <th>Настройки</th> -->
|
|
</tr>
|
|
</thead>
|
|
<tbody id="sewer_datas">
|
|
|
|
{% component 'sewer' %}
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th style="width: 5%;">№</th>
|
|
<th>Önümçilik No</th>
|
|
<th>Halta Görnüş</th>
|
|
<th>Rulon Görnüş</th>
|
|
<th>Tikinçi</th>
|
|
<th>Senesi</th>
|
|
<th>Gram</th>
|
|
<th>Çig mal mukdary</th>
|
|
<th>Tikilen Halta</th>
|
|
<th>Ulanylan</th>
|
|
<th>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>
|
|
{% endput %}
|
|
{% partial 'dataTableJs' %}
|