231 lines
10 KiB
HTML
231 lines
10 KiB
HTML
title = "Production"
|
|
url = "/production"
|
|
layout = "platform_main"
|
|
is_hidden = 0
|
|
|
|
[builderList]
|
|
modelClass = "Romanah\Gokbakja\Models\Product"
|
|
scope = "scopeGetReport"
|
|
scopeValue = "{{ :scope }}"
|
|
displayColumn = "id"
|
|
noRecordsMessage = "No records found"
|
|
detailsPage = "-"
|
|
detailsUrlParameter = "id"
|
|
pageNumber = "{{ :page }}"
|
|
|
|
[production]
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
|
|
$currentDate = Carbon\Carbon::now()->timezone('UTC +05:00');
|
|
|
|
$currentDateFormat = Carbon\Carbon::now()->format('Y-m-d');
|
|
|
|
$this["currentDate"] = $currentDate;
|
|
$this["productions"] = Romanah\Gokbakja\Models\Production::whereDate('created_at', date($currentDateFormat))->with(['pivot_production'])->get();
|
|
|
|
}
|
|
?>
|
|
==
|
|
{% set records = builderList.records %}
|
|
{% set displayColumn = builderList.displayColumn %}
|
|
{% set noRecordsMessage = builderList.noRecordsMessage %}
|
|
{% set detailsPage = builderList.detailsPage %}
|
|
{% set detailsKeyColumn = builderList.detailsKeyColumn %}
|
|
{% set detailsUrlParameter = builderList.detailsUrlParameter %}
|
|
|
|
|
|
|
|
|
|
{% 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" />
|
|
{% endput %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<a href="/all-productions" class="card bg-primary text-white-50">
|
|
<div class="card-body">
|
|
<h5 class="mb-4 text-white"><i class="mdi mdi-bullseye-arrow me-3"></i> HEMMESI</h5>
|
|
<p class="card-text">Bu bölümde hasabatyň aýlar boýunça ählisini görüp bilersiňiz.</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="card bg-primary text-white-50">
|
|
<div class="card-body">
|
|
<h5 class="mb-4 text-white"><i class="mdi mdi-bullseye-arrow me-3"></i> ORTAÇA ÖNÜMÇILIK</h5>
|
|
<p class="card-text">Bu bölümde ortaça önümçilik boýunça hasabat.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- <div class="col-lg-4">
|
|
<div class="card bg-primary text-white-50">
|
|
<div class="card-body">
|
|
<h5 class="mb-4 text-white"><i class="mdi mdi-bullseye-arrow me-3"></i> Primary Card</h5>
|
|
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
|
|
card's content.</p>
|
|
</div>
|
|
</div>
|
|
</div> -->
|
|
|
|
</div>
|
|
<!-- end row -->
|
|
<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;">Çig Mallar Boýunça
|
|
({{currentDate|date('d.m.Y | H:i')}})</h3>
|
|
<p class="card-title-desc" style="color: #6c6ff5;">Hasabat</p>
|
|
</div>
|
|
<!-- <div class="col-md-6" style="text-align: right;">
|
|
<button type="button" class="btn btn-primary waves-effect waves-light"
|
|
data-bs-toggle="offcanvas" data-bs-target="#offcanvasBottom"
|
|
aria-controls="offcanvasBottom">
|
|
<i class="ri-add-line align-middle ms-2" style="font-size: 17px;"></i> Добавить
|
|
</button>
|
|
</div> -->
|
|
</div>
|
|
|
|
|
|
<div class="table-responsive" style="margin-bottom: 20px;">
|
|
<table class="table mb-0">
|
|
|
|
<thead class="table-light">
|
|
|
|
<form data-request="onCreateProduction">
|
|
<tr>
|
|
<th style="background: #daddff;">Täze maglumat</th>
|
|
<th style="background: #daddff;">
|
|
<input type="number" name="all_amount" class="form-control"
|
|
placeholder="JEMI">
|
|
</th>
|
|
{% for key, record in records %}
|
|
<th style="background: #daddff;">
|
|
<input type="number" name="product_{{record.code}}" class="form-control"
|
|
placeholder="{{record.name}} %">
|
|
</th>
|
|
{% endfor %}
|
|
<th style="background: #daddff;">
|
|
<input type="text" name="note" class="form-control" placeholder="Bellik">
|
|
</th>
|
|
<th style="background: #daddff;">
|
|
<button type="submit"
|
|
class="btn btn-primary waves-effect waves-light">Goş</button>
|
|
</th>
|
|
</tr>
|
|
</form>
|
|
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<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>Senesi</th>
|
|
<th>Hemmesi</th>
|
|
{% for key, record in records %}
|
|
<th>{{record.name}}</th>
|
|
{% endfor %}
|
|
<th>Bellik</th>
|
|
<!-- <th>Настройки</th> -->
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
{% for key, report in productions %}
|
|
<tr>
|
|
<td style="font-weight: bold;width: 5%;">{{key + 1}}</td>
|
|
<td><a href="#" style="font-weight: bold;color: #0005c5;">{{report.created_at|date('d.m.Y |
|
|
H:i')}}</a></td>
|
|
<td style="text-align: center;">
|
|
<span class="badge badge-soft-success"
|
|
style="font-size: 14px;">{{report.all_amount|number_format}} kg</span>
|
|
</td>
|
|
|
|
{% for product in report.pivot_production %}
|
|
<td>{{product.amount_percentage}} % {% if product.amount != 0 %}<br> <span style="font-size: 12px;color: darkgray;"> {{product.amount|number_format}} kg</span> {% endif %}</td>
|
|
{% endfor %}
|
|
|
|
<td style="font-weight: bold;color: #0005c5;">{{report.note}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th style="width: 5%;">№</th>
|
|
<th>Senesi</th>
|
|
<th>Hemmesi</th>
|
|
{% for key, record in records %}
|
|
<th>{{record.name}}</th>
|
|
{% endfor %}
|
|
<th>Bellik</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="offcanvas offcanvas-top" tabindex="-1" id="offcanvasBottom"
|
|
aria-labelledby="offcanvasBottomLabel">
|
|
<div class="offcanvas-header">
|
|
<h5 id="offcanvasBottomLabel">Добавить Склад</h5>
|
|
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas"
|
|
aria-label="Close"></button>
|
|
</div>
|
|
<div class="offcanvas-body">
|
|
<form class="needs-validation" novalidate action="/stocks/create" method="POST">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="mb-3">
|
|
<label for="validationCustom01" class="form-label">Имя Склад</label>
|
|
<input type="text" class="form-control" id="validationCustom01"
|
|
placeholder="Имя Склад" name="name" required>
|
|
<div class="valid-feedback">
|
|
Правильно
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="mb-3">
|
|
<label for="validationCustom02" class="form-label">Описание</label>
|
|
<input type="text" class="form-control" name="desc" id="validationCustom02"
|
|
placeholder="Описание" required>
|
|
<div class="valid-feedback">
|
|
Правильно
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<button class="btn btn-primary" type="submit">Добавить</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% partial 'dataTableJs' %}
|