Example #1
0
<?php

require_once "../../../lib/stock.class.php";
require_once '../../../lib/defination.class.php';
$manu_id = $_GET['manu_id'];
$machine_id = $_GET['machine_id'];
$section_id = $_GET['section_id'];
$dept_id = $_GET['dept_id'];
$stock = new Stock();
$StockManufacturer = $stock->getManufacturerById($manu_id);
$stockAllManufacturer = $stock->retriveManufecturer();
$rowManuYear = count($stockAllManufacturer);
$stockMacName = $stock->retriveMachineName();
$rowMacName = count($stockMacName);
$stockDeptName = $stock->retriveStockDepartmentListAll();
$rowDeptName = count($stockDeptName);
$stockSection = $stock->retriveStockSection();
$rowStockSection = count($stockSection);
?>



	<form  id="CreateManufactureGroup" name="CreateManufactureGroup" method="post" action="includes/model/stock_manufacture_update_actions.php" >
	<div id="note"> </div>
	  <table width="100%" border="0" align="center" cellpadding="2" cellspacing="2">
	<?php 
require_once "../partials/_form_manufacture.php";
?>
	  
                  <td align="center" valign="middle"><input type="hidden" value="<?php 
echo $manu_id;
<?php

require_once "../../../lib/stock.class.php";
$objManufacturerListAll = new Stock();
$StockManufacturerListAll = $objManufacturerListAll->retriveManufecturer();
$rowStockManufacturerListAll = count($StockManufacturerListAll);
?>


<body>
<table width="100%" border="0">
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td align="right"><a class="thickbox" href="includes/contents/create_stock_manufacture.php?height=200&width=500" title="Manufacture List" >Back</a></td>
  </tr>
  <tr>
    <td width="142"><b>Manufacturer Name</b></td>
    <td width="138"><strong>Year</strong></td>
    <td width="139"><b>Machine Name</b></td>
    <td width="142"><b>Section Name</b></td>
    <td width="169"><b>Department Name</b></td>
    <td width="63">&nbsp;</td>
    <td width="85">&nbsp;</td>
  </tr>
<?php 
for ($i = 0; $i < $rowStockManufacturerListAll; $i++) {
Example #3
0
//// Retrive Stock Group Name
$objStockGroupInfo = new Stock();
$stock = new Stock();
$StockGrpInfo = $objStockGroupInfo->retriveStockGroupUnderInfo();
$StockGrpInfo_options = options_for_select($StockGrpInfo, 'stock_group_id', 'stock_group_name', true);
/////////////////////////////////
//// Retrive Stock Catagory Name
$objStockCatInfo = new Stock();
$StockCatInfo = $objStockCatInfo->retriveStockCatUnderInfo();
////////////////////////////////////////////////
$StockCatInfo_options = options_for_select($StockCatInfo, 'stock_cat_id', 'stock_cat_name', true);
$stockDept = options_for_select($stock->retriveStockDepartmentInfo(), 'stock_dept_id', 'stock_dept_name', true);
$stockSection = options_for_select($stock->retriveStockSection(), 'sec_id', 'sec_name', true);
$stockMachineName = options_for_select($stock->retriveMachineName(), 'm_id', 'm_name', true);
$stockMachineModelName = options_for_select($stock->retriveMachineModelName(), 'machine_model_id', 'machine_model_name', true);
$stockManufecturer = options_for_select($stock->retriveManufecturer(), 'manu_id', 'manu_name', true);
$stockItemName = options_for_select($stock->retriveStockItem(), 'stock_item_id', 'stock_item_name', true);
/////////////////////////////////
//// Retrive Stock Unit Name
$unitName = options_for_select($stock->retriveStockUnit(), 'stock_item_unit_id', 'stock_item_unit_name', true);
/////////////////////////////////
@session_start();
$user_level = $_SESSION[user_level];
$stc_itm_id = $_GET['stc_itm_id'];
$stockItemByID = $objStockGroupInfo->retriveStockItemByid($stc_itm_id);
$allStockItem = $objStockGroupInfo->retriveStockItem();
$rowStockItem = count($allStockItem);
$stock_p_id = $stockItemByID["0"]["stock_p_id"];
$allStockItemUnit = $objStockGroupInfo->retriveStockUnit();
$rowStockItemUnit = count($allStockItemUnit);
$stock_item_unit_id = $stockItemByID["0"]["stock_item_unit_id"];