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


PHP Batch::createBatchList方法代码示例

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


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

示例1: selectlist

     if (isset($_GET['miid'])) {
         $mi->setInwardID($_GET['miid']);
     }
     $mi->createPartMaterialList();
     $sel = new selectlist('MI_Drg_Qty_ID', $mi->getPartMaterialList(), 'Select Part', 'MI_Drg_Qty_ID', 'des', '', '');
     break;
 case 'batch':
     //batch details for editing
     $bn = new Batch();
     if (isset($_GET['did'])) {
         $bn->setPartID($_GET['did']);
     }
     if (isset($_GET['openonly'])) {
         $bn->setOpenOnly($_GET['openonly']);
     }
     $bn->createBatchList();
     $sel = new selectlist('Batch_ID', $bn->getBatchList(), 'Select Batch', 'Batch_ID', 'Mfg_Batch_NO', '', '', '1');
     break;
 case 'activity':
     //activity list
     $ac = new Activity();
     if (isset($_GET['aid'])) {
         $ac->setActivityID($_GET['aid']);
     }
     $ac->createActivityList();
     $sel = new selectlist('Activity_ID', $ac->getActivityList(), 'Select Activity', 'Activity_ID', 'Activity_Name', 'class="required"', '', '1');
     break;
 case 'machine':
     //machine list
     $mc = new Machine();
     if (isset($_GET['mid'])) {
开发者ID:sknagesh,项目名称:divyaeng2,代码行数:31,代码来源:class.selectlist.php

示例2: showActivityUI


//.........这里部分代码省略.........
                $qe = "SELECT cust.Customer_ID,Machine_ID,comp.Drawing_ID,ope.Operation_ID,Batch_ID,Operator_ID,prod.Program_NO,Quantity,Remarks,actl.Activity_ID,\n\t\t\t\t\t\tDATE_FORMAT(Start_Date_Time,'%d-%m-%Y %h:%i%p') as sdte,Start_Date_Time,DATE_FORMAT(End_Date_Time,'%d-%m-%Y %h:%i%p') as edte,End_Date_Time FROM ActivityLog as actl \n\t\t\t\t\t\tINNER JOIN Production AS prod ON prod.Activity_Log_ID=actl.Activity_Log_ID\n\t\t\t\t\t\tINNER JOIN Operation as ope ON ope.Operation_ID=prod.Operation_ID\n\t\t\t\t\t\tINNER JOIN Component as comp ON comp.Drawing_ID=ope.Drawing_ID\n\t\t\t\t\t\tINNER JOIN Customer as cust ON cust.Customer_ID=comp.Customer_ID WHERE actl.Activity_Log_ID={$this->activitylogid}";
                //print("<br>$qe");
                if (!($rese = $cxn->query($qe))) {
                    echo "error :", $cxn->error;
                    exit;
                }
                $rowe = mysqli_fetch_assoc($rese);
                $ac = new Activity();
                $ac->setActivityID($rowe['Activity_ID']);
                $ac->createActivityList();
                $sel = new selectlist('Activity_ID', $ac->getActivityList(), 'Select Activity', 'Activity_ID', 'Activity_Name', 'class="required"', $rowe['Activity_ID'], '1');
                $mc = new Machine();
                $mc->createMachineList();
                $sel = new selectlist('Machine_ID', $mc->getMachineList(), 'Select Machine', 'Machine_ID', 'mnslno', 'class="required"', $rowe['Machine_ID'], '1');
                $cust = new Customer();
                $cust->createCustomerList();
                $sel = new selectlist('Customer_ID', $cust->getCustomerList(), 'Select Customer', 'Customer_ID', 'Customer_Name_Short', 'class="required"', $rowe['Customer_ID'], '1');
                $part = new Part();
                $part->createPartList($rowe['Customer_ID']);
                $req = 'class=required';
                echo '<div id="drawe">';
                $selc = new selectlist('Drawing_ID', $part->getPartList(), 'Select Drawing', 'Drawing_ID', 'name', 'class="required"', $rowe['Drawing_ID'], '1');
                echo '</div>';
                $ope = new Operation();
                $ope->createOperationList($rowe['Drawing_ID']);
                echo '<div id="operatione">';
                $sel = new selectlist('Operation_ID', $ope->getOperationList(), 'Select Operation', 'Operation_ID', 'Operation_Desc', 'class="required"', $rowe['Operation_ID'], '1');
                echo '</div>';
                $operator = new Operator();
                $operator->createOperatorList();
                $sel = new selectlist("Operator_ID", $operator->getOperatorList(), 'Select Name', 'Operator_ID', 'Operator_Name', 'class="required"', $rowe['Operator_ID'], '1');
                $bn = new Batch();
                $bn->setPartID($rowe['Drawing_ID']);
                $bn->createBatchList();
                echo '<div id="batche">';
                $sel = new selectlist('Batch_ID', $bn->getBatchList(), 'Select Batch', 'Batch_ID', 'Mfg_Batch_NO', 'class="required"', $rowe['Batch_ID'], '1');
                echo '</div>';
                echo <<<_END
\t\t\t\t\t\t<fieldset>
\t\t\t\t\t\t<legend>Activity Details</legend>

\t\t   \t\t\t\t<p>
\t\t     \t\t\t\t<label>Start Date and Time</label>
\t\t     \t\t\t\t<input id="sdt" name="sdt" rclass="equired" value="{$rowe['sdte']}"/>
\t\t     \t\t\t\t<input id="sdtdb" name="sdtdb" type="hidden" value="{$rowe['Start_Date_Time']}">
\t\t   \t\t\t\t</p>
\t\t   \t\t\t\t<p>
\t\t     \t\t\t\t<label>End Date and Time</label>
\t\t     \t\t\t\t<input id="edt" name="edt" class="required" value="{$rowe['edte']}"/>
\t\t     \t\t\t\t<input id="edtdb" name="edtdb" type="hidden" value="{$rowe['End_Date_Time']}">
\t\t   \t\t\t\t</p>
\t\t   \t\t\t\t<p>
\t\t     \t\t\t\t<label>Program No</label>
\t\t     \t\t\t\t<input id="programno" name="programno" class="required" value="{$rowe['Program_NO']}"/>
\t\t   \t\t\t\t</p>
\t\t   \t\t\t\t<p>
\t\t     \t\t\t\t<label>Quantity</label>
\t\t     \t\t\t\t<input id="quantity" name="quantity" class="required number" value="{$rowe['Quantity']}"/>
\t\t   \t\t\t\t</p>
\t\t   \t\t\t\t<p>
\t\t     \t\t\t\t<label>Remarks</label>
\t\t     \t\t\t\t<textarea id="remarks" name="remarks" rows="5" cols="40"  maxlength="300">{$rowe['Remarks']}</textarea>
\t\t   \t\t\t\t</p>
\t\t   \t\t\t\t</fieldset>
_END;
            }
开发者ID:sknagesh,项目名称:divyaeng2,代码行数:67,代码来源:class.Activitylog.php


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