本文整理汇总了PHP中Pedido::pedido_cambiarestado方法的典型用法代码示例。如果您正苦于以下问题:PHP Pedido::pedido_cambiarestado方法的具体用法?PHP Pedido::pedido_cambiarestado怎么用?PHP Pedido::pedido_cambiarestado使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pedido
的用法示例。
在下文中一共展示了Pedido::pedido_cambiarestado方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<?php
include "menu.php";
?>
</td>
</tr>
<tr>
<td align="center">
<?php
if ($_REQUEST['id'] === '2') {
$pedido->pedido_cambiarestado($_REQUEST['ped_id'], '2');
}
?>
<form name="form1" id="form1">
<table width="658" border="0" align="center" cellpadding="0">
<tr>
<td colspan="4"> </td>
</tr>
<tr align="center">
<td colspan="4" class="titulo">PEDIDOS EN PROCESO</td>
</tr>
<tr>
<td width="70" align="right" class="enfasis"> </td>
<td width="21" align="center" class="enfasis"> </td>
示例2: while
$rsv = $pedido->detalle_pedido_listar($_REQUEST['ped_codigo']);
while ($campov = mysql_fetch_array($rsv)) {
$venta->grabar_detalle_venta($_SESSION['venta_codigo'], $campov['pro_id'], $campov['dped_cantidad'], $campov['dped_unidades'], $campov['dped_precio_cantidad'], $campov['dped_totalcantidad'], $campov['dped_preciounidades'], $campov['dped_preciototal']);
$producto->disminuye_stock($campov['pro_id'], $campov['dped_totalcantidad']);
}
if ($_REQUEST['tipo_documento'] == 1) {
$campo = 'pcom_nro_factura';
}
if ($_REQUEST['tipo_documento'] == 2) {
$campo = 'pcom_nro_boleta';
}
if ($_REQUEST['tipo_documento'] == 9) {
$campo = 'pcom_nro_notacredito';
}
$parametro->parametro_aumentar_codigo($campo);
$rs2 = $pedido->pedido_cambiarestado($_REQUEST['ped_codigo'], '1');
if ($rs2) {
if ($_REQUEST['tipo_documento'] == 1) {
echo "<script LANGUAGE='JavaScript'>\r\n\t\t\t\t\r\n\t\t\t\tventana = window.open('factura_impresion.php?venta=" . $_SESSION['venta_codigo'] . "', '_blank', 'resizable,height=550,width=700,scrollbars=yes');\r\n\t\t\t\t\r\n\t\t\t\t</script>";
}
if ($_REQUEST['tipo_documento'] == 2 || $_REQUEST['tipo_documento'] == 9) {
echo "<script LANGUAGE='JavaScript'>\t\t\t\t\r\n\t\t\t\tventana = window.open('boleta_impresion.php?venta=" . $_SESSION['venta_codigo'] . "', '_blank', 'resizable,height=550,width=700,scrollbars=yes');\r\n\t\t\t\t\r\n\t\t\t\t</script>";
}
echo "<script LANGUAGE='JavaScript'> window.opener.location.href = 'ventas.php';\r\n\t\t\twindow.close();\r\n\t\t\t</script>";
}
}
}
?>
<form name="form1" id="form1">