本文整理汇总了PHP中Batch::setBatchUnderProgress方法的典型用法代码示例。如果您正苦于以下问题:PHP Batch::setBatchUnderProgress方法的具体用法?PHP Batch::setBatchUnderProgress怎么用?PHP Batch::setBatchUnderProgress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Batch
的用法示例。
在下文中一共展示了Batch::setBatchUnderProgress方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: count
//new commitment remarks
if (isset($_POST['hcodes'])) {
$hcodes = $_POST['hcodes'];
}
//heat codes for updating
if (isset($_POST['bmcid'])) {
$bmcid = $_POST['bmcid'];
}
if (isset($_POST['dddb'])) {
$dddb = $_POST['dddb'];
}
if (isset($_POST['ddremark'])) {
$ddremark = $_POST['ddremark'];
}
if (isset($_POST['batchprogress'])) {
$bn->setBatchUnderProgress($_POST['batchprogress']);
}
$bn->saveBatch();
$i = 0;
if (isset($cddb)) {
$j = count($cddb);
} else {
$j = '';
}
if ($j != '') {
while ($i < $j) {
$bn->setBatchID($_POST['Batch_ID']);
$bn->setCommitedDate($cddb[$i]);
$bn->setCommitedQty($cqty[$i]);
$bn->setCommitedRemarks($cremark[$i]);
$bn->saveCommitment();