コード例 #1
0
ファイル: _recipes.php プロジェクト: FranHurtado/traza
		<tr>
			<td colspan="8" style="font-size:14pt;font-weight:bold;padding:20px;text-align:center;border: 1px solid #555;">
				FICHA DE PREPARACI&Oacute;N Y PROCESOS
			</td>
		</tr>
		<tr>
			<td style="border: 1px solid #555;"><b>Receta</b></td>
			<td style="border: 1px solid #555;"><b>Ingredientes</b></td>
			<td style="border: 1px solid #555;"><b>Etapas</b></td>
			<td style="border: 1px solid #555;"><b>Observaciones</b></td>
		</tr>
		
		<?php 
$modelRecipes = Recipe::model()->findAll("UserID = 21 OR UserID = " . Yii::app()->user->ID . "");
foreach ($modelRecipes as $Recipe) {
    $modelRecipeRaws = RecipeRaw::model()->findAllByAttributes(array("RecipeID" => $Recipe->ID));
    $finalRecipeRaws = "";
    foreach ($modelRecipeRaws as $RecipeRaw) {
        $finalRecipeRaws .= $RecipeRaw->raw->Name . "(" . $RecipeRaw->Quantity . " " . $RecipeRaw->Type . ")<br /> ";
    }
    ?>
				<tr>
					<td style="border: 1px solid #555;"><?php 
    echo $Recipe->Name;
    ?>
</td>
					<td style="border: 1px solid #555;"><?php 
    echo $finalRecipeRaws;
    ?>
</td>
					<td style="border: 1px solid #555;">- Lavado de ingredientes<br />- Mezclado de ingredientes<br />- Conservacion en condiciones optimas<br />- Emplatado<br />- Servicio<br /></td>
コード例 #2
0
 public function actionDeleteRaw()
 {
     if (isset($_POST['ID'])) {
         $RecipeRaw = RecipeRaw::model()->findByPK($_POST["ID"]);
         $RecipeRaw->delete();
         echo $RecipeID;
         $modelIngredients = RecipeRaw::model()->findAllByAttributes(array("RecipeID" => $RecipeRaw->recipe->ID));
         echo $this->renderPartial("_ingredients", array('modelIngredients' => $modelIngredients));
     } else {
         echo "<span id='error'>No se ha enviado ninguna materia prima</span>";
     }
 }