partial update products
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
@extends('layouts.backapp')
|
||||
|
||||
@section('content')
|
||||
<div class="kt-portlet kt-portlet--mobile" id="kt_blockui_datatable">
|
||||
<div class="kt-portlet__head kt-portlet__head--lg">
|
||||
<div class="kt-portlet__head-label">
|
||||
<span class="kt-portlet__head-icon">
|
||||
<i class="kt-font-brand flaticon2-plus"></i>
|
||||
</span>
|
||||
<h3 class="kt-portlet__head-title">
|
||||
Tambah Opname
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="kt-portlet__body">
|
||||
<form action="{{ route('opnames.store') }}" method="POST" id="opnameForm">
|
||||
@csrf
|
||||
|
||||
<div class="form-group">
|
||||
<label for="product"><strong>Produk</strong></label>
|
||||
<input type="text" class="form-control" name="product" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="dealer"><strong>Dealer</strong></label>
|
||||
<input type="text" class="form-control" name="dealer" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="system_quantity"><strong>Total Sistem</strong></label>
|
||||
<input type="number" class="form-control" name="system_quantity" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="phisycal_quantity"><strong>Total Sistem</strong></label>
|
||||
<input type="number" class="form-control" name="phisycal_quantity" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="difference"><strong>Perbedaan</strong></label>
|
||||
<input type="number" class="form-control" name="difference" />
|
||||
</div>
|
||||
|
||||
<div class="form-group mt-4">
|
||||
<button type="submit" class="btn btn-primary">Simpan</button>
|
||||
<a href="{{ route('opnames.index') }}" class="btn btn-secondary">Batal</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('javascripts')
|
||||
<script src="{{mix('js/warehouse_management/stock_opnames/create.js')}}"></script>
|
||||
@endsection
|
||||
@@ -5,13 +5,13 @@
|
||||
<div class="kt-portlet__head kt-portlet__head--lg">
|
||||
<div class="kt-portlet__head-label">
|
||||
<span class="kt-portlet__head-icon">
|
||||
<i class="kt-font-brand flaticon2-line-chart"></i>
|
||||
<i class="kt-font-brand flaticon2-list-1"></i>
|
||||
</span>
|
||||
<h3 class="kt-portlet__head-title">
|
||||
Tabel Mutasi Stock Produk
|
||||
Tabel Stock Opname
|
||||
</h3>
|
||||
</div>
|
||||
@can('create', $menus['mutations.index'])
|
||||
@can('create', $menus['opnames.index'])
|
||||
<div class="kt-portlet__head-toolbar">
|
||||
<div class="kt-portlet__head-wrapper">
|
||||
<div class="kt-portlet__head-actions">
|
||||
|
||||
Reference in New Issue
Block a user