当前位置: 首页>>代码示例>>PHP>>正文


PHP Supplier::retriveSupplierInfo方法代码示例

本文整理汇总了PHP中Supplier::retriveSupplierInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP Supplier::retriveSupplierInfo方法的具体用法?PHP Supplier::retriveSupplierInfo怎么用?PHP Supplier::retriveSupplierInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Supplier的用法示例。


在下文中一共展示了Supplier::retriveSupplierInfo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Stock

require_once '../../lib/defination.class.php';
require_once "../../lib/stock.class.php";
require_once '../../lib/defination.class.php';
include '../../lib/supplier.class.php';
include '../../lib/lc.class.php';
include '../../lib/lot.class.php';
//// Retrive Stock Group Name
$objStockGroupInfo = new Stock();
$stock = new Stock();
$StockGrpInfo = $objStockGroupInfo->retriveStockGroupUnderInfo();
$StockGrpInfo_options = options_for_select($StockGrpInfo, 'stock_group_name', 'stock_group_name', true);
//// Retrive Stock Unit Name
$unitName = options_for_select($stock->retriveStockUnit(), 'stock_item_unit_name', 'stock_item_unit_name', true);
$Supplier = new Supplier();
$outputSupplierItem = options_for_select($Supplier->retriveSupplierInfo(), 'sup_name', 'sup_name', true);
$LC = new LC();
$outputLC = options_for_select($LC->retriveLcInfo(), 'lc_name', 'lc_name', true);
$Lot = new Lot();
$outputLot = options_for_select($Lot->retriveLotInfo(), 'lot_name', 'lot_name', true);
$StockLocationInfo = $stock->retriveLocation();
$rowStockLocation = count($StockLocationInfo);
/////////////////////////////////
@session_start();
$user_level = $_SESSION[user_level];
?>

<div id="test">
<form  id="CreateStockItem" name="CreateStockItem" method="post"   action="includes/model/raw_item_actions.php"><table width="100%" border="0" cellspacing="2" cellpadding="2">
  <tr>
    <td>Name</td>
开发者ID:rajibahmed,项目名称:IIMS,代码行数:30,代码来源:create_raw_item.php

示例2: Supplier

<?php

require_once '../../../lib/defination.class.php';
require_once "../../../lib/supplier.class.php";
$objSupplierInfo = new Supplier();
$SupplierInfo = $objSupplierInfo->retriveSupplierInfo();
$rowSupplierInfo = count($SupplierInfo);
?>


<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>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td align="right"><a class="thickbox" href="includes/contents/create_import_goods.php?height=500&width=600" title="Import Goods" >Back</a></td>
  </tr>
  <tr>
    <td width="148"><b>Supplier Name</b></td>
    <td width="97"><b>Catagory:</b></td>
    <td width="103"><b>Supplier E-mail</b></td>
    <td width="109"><b>Supplier Address</b></td>
    <td width="109"><b>Supplier Phone</b></td>
开发者ID:rajibahmed,项目名称:IIMS,代码行数:31,代码来源:list_all_supplier.php


注:本文中的Supplier::retriveSupplierInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。