當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Flash::gruposion方法代碼示例

本文整理匯總了PHP中Flash::gruposion方法的典型用法代碼示例。如果您正苦於以下問題:PHP Flash::gruposion方法的具體用法?PHP Flash::gruposion怎麽用?PHP Flash::gruposion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Flash的用法示例。


在下文中一共展示了Flash::gruposion方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: busqueda

 public function busqueda($page = 1)
 {
     $i = $this->request("inicio");
     $f = $this->request("fin");
     $this->results = $this->Tiemposincomprar->getTsincomprar($i, $f);
     $this->campos = array('ORDEN' => 'max', 'CLIENTE' => 'company', 'RIF o CI' => 'vm_rif', 'TELEFONO' => 'phone_1', 'FECHA' => 'fecha');
     $this->tfoot = '<tr><th></th><th></th><th></th><th></th><th></th></tr>';
     $f = $this->Cfecha($f);
     $i = $this->Cfecha($i);
     Flash::gruposion("La Busqueda de Tiempo Sin Comprar\n                         se realizo desde {$i} hasta {$f}");
 }
開發者ID:al3jandro,項目名稱:Tellus,代碼行數:11,代碼來源:tsincomprar_controller.php

示例2: busqueda

    public function busqueda()
    {
        $vendedor = $this->request('vendedor');
        $a = $this->Gsvendedor->find($vendedor);
        $this->results = $this->Asignar->getBuscar($vendedor);
        $cont = $this->Asignar->getContar($vendedor);
        $this->campos = array('CLIENTE' => 'company', 'RIF O CI' => 'vm_rif', 'NOMBRE' => 'first_name', 'APELLIDO' => 'last_name', 'USUARIO' => 'username', 'TELEFONO' => 'phone_1');
        $this->tfoot = '<tr><th></th><th></th><th></th><th></th><th></th>
			<th></th></tr>';
        $this->paginator = 'extended';
        $this->url = 'gsquery/clientesporvendedor/busqueda';
        Flash::gruposion("El Vendedor(a) " . $a->Nombres . "  tiene " . $cont . " Clientes Asignados ");
    }
開發者ID:al3jandro,項目名稱:Tellus,代碼行數:13,代碼來源:clientesporvendedor_controller.php

示例3: clientetotal

 public function clientetotal($page = 1)
 {
     $i = $this->request("inicio");
     $f = $this->request("fin");
     $this->results = $this->Topcliente->getTopcliente($i, $f);
     $this->conteo = '';
     $this->campos = array('COMPAÑIA' => 'nombre', 'TOTAL EN VENTAS' => 'suma');
     $this->tfoot = '<tr><th></th><th></th></tr>';
     $this->paginator = 'extended';
     $this->url = 'top/clientetotal';
     $f = $this->Cfecha($f);
     $i = $this->Cfecha($i);
     Flash::gruposion("La Busqueda de Top Cliente se realizo desde {$i} hasta {$f}");
 }
開發者ID:al3jandro,項目名稱:Tellus,代碼行數:14,代碼來源:top_controller.php

示例4: calcular

    public function calcular()
    {
        $vendedor = $this->request("vendedor");
        $inicio = $this->request("inicio");
        $fin = $this->request("fin");
        if ($vendedor && $inicio && $fin) {
            $this->JosVmOrders->Upcomision($vendedor, $inicio, $fin);
            $this->results = $this->Comisionsp->getCalcula($vendedor, $inicio, $fin);
            $this->campos = array('Orden' => 'orden', 'Fecha' => 'Fecha', 'Cliente' => 'company', 'Vendedor' => 'Nombres', 'Venta' => 'montol', 'Comision' => 'tasa_comision', 'Total' => 'total');
            $this->tfoot = '<tr><th></th><th></th><th></th><th></th><th></th>
			<th></th><th></th></tr>';
            $contar = $this->Comisionsp->getContar($vendedor, $inicio, $fin);
            $total = $this->Comisionsp->getTotal($vendedor, $inicio, $fin);
            Flash::gruposion('
                <div style="font-size: 13px; font-style: italic; font-weight: bold;">
                El Total General de la Comision es de BsF.&nbsp;' . $total . '
                <br />El Total de Ordenes con que se Calculo la Comision es de: &nbsp;' . $contar . '</div>');
        }
    }
開發者ID:al3jandro,項目名稱:Tellus,代碼行數:19,代碼來源:comision_controller.php


注:本文中的Flash::gruposion方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。