159 lines
7.0 KiB
PHP
Executable File
159 lines
7.0 KiB
PHP
Executable File
<?php
|
||
|
||
$MaterialCode = '';
|
||
$MaterialName = '';
|
||
$MaterialType = '';
|
||
$UOM = '';
|
||
$IsActive = '';
|
||
|
||
if(!empty($materialDetails))
|
||
{
|
||
foreach ($materialDetails as $MD)
|
||
{
|
||
$MaterialCode = $MD->MaterialCode;
|
||
$MaterialName = $MD->MaterialName;
|
||
$MaterialType = $MD->MaterialType;
|
||
$UOM = $MD->UOM;
|
||
$chk = $MD->IsActive;
|
||
|
||
if($chk == 1)
|
||
{
|
||
$IsActive = 'checked';
|
||
}
|
||
else
|
||
{
|
||
$IsActive = '';
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
?>
|
||
|
||
<div class="content-wrapper">
|
||
<!-- Content Header (Page header) -->
|
||
<section class="content-header">
|
||
<h1>
|
||
<center>Siddharth Industries - Edit Material -<?php echo $MaterialCode; ?> </center>
|
||
|
||
</h1>
|
||
</section>
|
||
|
||
<section class="content">
|
||
<div style="text-align:right;">
|
||
<a href="<?php echo base_url() ?>rawmaterialdetails/rawmaterialListing" class="btn btn-info" value="Back"/>Back</a>
|
||
</div>
|
||
<br/>
|
||
<div class="row">
|
||
<!-- left column -->
|
||
<div class="col-md-12">
|
||
<!-- general form elements -->
|
||
|
||
|
||
|
||
<div class="box box-primary">
|
||
<div class="box-header">
|
||
<center> <h3 class="box-title"></h3></center>
|
||
</div><!-- /.box-header -->
|
||
<!-- form start -->
|
||
|
||
<form role="form" action="<?php echo base_url() ?>rawmaterialdetails/editRawmaterial" method="post" id="editRawmaterial" role="form">
|
||
<div class="box-body">
|
||
<div class="row">
|
||
<div class="col-md-6">
|
||
<div class="form-group">
|
||
<label for="MaterialName">Material Name</label>
|
||
<input type="text" class="form-control required " id="MaterialName" name="MaterialName" maxlength="255" value="<?php echo $MaterialName;?>">
|
||
<input type="hidden" class="form-control required " id="MaterialCode" value="<?php echo $MaterialCode;?>"name="MaterialCode" maxlength="255">
|
||
</div>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<div class="form-group">
|
||
<label for="MaterialType">Material Type</label>
|
||
<select class="form-control required" id="MaterialType" name="MaterialType">
|
||
<option value="<?php echo $MaterialType;?> "><?php echo $MaterialType;?></option>
|
||
<?php
|
||
if(!empty($materialType))
|
||
{
|
||
foreach ($materialType as $MID)
|
||
{
|
||
?>
|
||
<option value="<?php echo $MID->ConfigValue ?>"><?php echo $MID->ConfigValue ?></option>
|
||
<?php
|
||
}
|
||
}
|
||
?>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<div class="form-group">
|
||
<label for="UOM">Unit of Measurement</label>
|
||
<select class="form-control required" id="UOM" name="UOM">
|
||
<option value="<?php echo $UOM;?>" ><?php echo $UOM;?></option>
|
||
<?php
|
||
if(!empty($UOMList))
|
||
{
|
||
foreach ($UOMList as $UM)
|
||
{
|
||
?>
|
||
<option value="<?php echo $UM->ConfigValue; ?>"><?php echo $UM->ConfigValue ?>
|
||
<?php
|
||
}
|
||
}
|
||
?>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
<div class="col-md-3">
|
||
<div class="form-group">
|
||
<span for="Active">IsActive</span> <br>
|
||
<input type="checkbox" id="isactive" name="isactive" <?php echo $IsActive; ?> >
|
||
</div>
|
||
|
||
|
||
|
||
</div>
|
||
</div><!-- /.box-body -->
|
||
|
||
<div class="box-footer" style="text-align:right">
|
||
<input type="submit" class="btn btn-info" value="Submit" />
|
||
<!-- <input type="reset" class="btn btn-default" value="Reset" />-->
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
<div class="col-md-4">
|
||
<?php
|
||
$this->load->helper('form');
|
||
$error = $this->session->flashdata('error');
|
||
if($error)
|
||
{
|
||
?>
|
||
<div class="alert alert-danger alert-dismissable">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<?php echo $this->session->flashdata('error'); ?>
|
||
</div>
|
||
<?php } ?>
|
||
<?php
|
||
$success = $this->session->flashdata('success');
|
||
if($success)
|
||
{
|
||
?>
|
||
<div class="alert alert-success alert-dismissable">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<?php echo $this->session->flashdata('success'); ?>
|
||
</div>
|
||
<?php } ?>
|
||
|
||
<div class="row">
|
||
<div class="col-md-12">
|
||
<?php echo validation_errors('<div class="alert alert-danger alert-dismissable">', ' <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>'); ?>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
|
||
<script src="<?php echo base_url(); ?>assets/js/editUser.js" type="text/javascript"></script>
|