1
public function actionEquipmentLoanRequestCreate()
{



    if(isset($_POST['EquipmentRequest']))
    {
        $ids = $_POST['EquipmentRequest']['equipID'];
        $equipment = Equipment::model()->findAllByPk($ids);
        $requests = self::instantiateEquipmentRequests($equipment);
        //echo "<pre>";
        //die(count($requests)." ".CActiveForm::validate($requests));


        $booking = new EquipmentBooking;



        if(isset($_POST['EquipmentRequest']) && $_POST['EquipmentBooking'])
        {
            $booking->attributes = $_POST['EquipmentBooking'];
            $requestPostedVars = $_POST['EquipmentRequest'];
            //have posted collection of equipment
            //need to take count
            //request below not really useful???
            $equipmentRequests = array();
            foreach($requestPostedVars as $request)
            {
                if(isset($request))
                {
                    $equipmentRequest = new EquipmentRequest('loanRequest');
                    $equipmentRequest->attributes = $request;
                    array_push($equipmentRequests,$equipmentRequest);


                }

            }
            $models = $equipmentRequests;
            $models[]=$booking;
            $this->performAjaxValidation($models);
            $booking->equipment = $equipmentRequests;
            if ($booking->save()){
                self::assignBookingIds($equipmentRequests,$booking);
                $this->redirect('index');
            }


        }
        //displays view to create loan request
        $this->render('equipment-loan-request',array('requests' => $requests,'booking' => $booking));  


    } else {
            Yii::app()->user->setFlash('error', "You need to select equipment first!");
            $this->redirect(array('simulation/equipment'), true);
    }


}

public function instantiateEquipmentRequests($equipment)
{
    $equipmentRequests = array();
    foreach($equipment as $item)
    {
        $request = new EquipmentRequest('loanRequest');
        $request->equipment = $item;
        $request->qty = 1;

        array_push($equipmentRequests,$request);
    }
    return $equipmentRequests;
}    

フォームビューは後で交換する余分なボタンを無視します-iveは、予約だけではなく、リクエストを直接呼び出しようとしましたが、以下の両方も役に立ちませんでした。

<?php $form=$this->beginWidget('CActiveFormExtended', array(
        'id' => 'equipment-booking-form',
        'enableAjaxValidation' => true,
        'clientOptions' => array(
          'validateOnSubmit' => true,
          'validateOnChange'=>true,

          ),

  )); ?>
  <div class="content-bg">        

  <?php 
  echo  $form->errorSummary($requests); 



   if(isset($requests) && count($requests) > 0) {
          foreach($requests as $i => $request) { 
            $this->renderPartial('_requestedEquipment', array("index" => $i, "request" => $request, "form"=> $form)); 
          }
        }?>
  </div>
  <br />


  <hr class="brown"/>



    <h2>Request Details</h2>
    <div class="content-bg">
      <h3>Step 1</h3>
      <?php echo $form->label($booking,'organisation'); ?>
      <?php echo $form->dropDownList($booking, 'organisation', $booking::$organisations,array('id' => 'organisation', 'class' => "selectfield",'empty' => 'Select')); ?>
    </div>
    <br />
    <div class="content-bg">
      <h3>Step 2</h3>
      <?php echo $form->label($booking,'name'); ?>
      <?php echo $form->textField($booking,'name',array('size'=>60,'maxlength'=>255)); ?>
      <?php echo $form->error($booking,'name'); ?>

      <?php echo $form->label($booking,'email'); ?>
      <?php echo $form->textField($booking,'email',array('size'=>60,'maxlength'=>255)); ?>
      <?php echo $form->error($booking,'email'); ?>

      <?php echo $form->label($booking,'phone'); ?>
      <?php echo $form->textField($booking,'phone',array('size'=>60,'maxlength'=>255)); ?>
      <?php echo $form->error($booking,'phone'); ?>

    </div>
    <br />
    <div class="content-bg">
      <h3>Step 3</h3>
      <?php echo $form->label($booking,'address'); ?>
      <?php echo $form->textField($booking,'address',array('size'=>60,'maxlength'=>255)); ?>
      <?php echo $form->error($booking,'address'); ?>

      <?php echo $form->label($booking,'suburb'); ?>
      <?php echo $form->textField($booking,'suburb',array('size'=>60,'maxlength'=>255)); ?>
      <?php echo $form->error($booking,'suburb'); ?>

      <?php echo $form->label($booking,'postcode'); ?>
      <?php echo $form->textField($booking,'postcode',array('size'=>60,'maxlength'=>255)); ?>
      <?php echo $form->error($booking,'postcode'); ?>

    </div>

    <br />
    <div class="content-bg">
      <h3>Step 4</h3>
      <div class="five columns alpha">
      <?php echo $form->label($booking,'pickupDate'); ?>
      <?php echo $form->dropDownDayList($booking, 'pickupDate',array('class' => 'date-day pickup_select','id' => 'pickup')); ?>
      <?php echo $form->dropDownYearList($booking,1, 'pickupDate',array('class' => 'date-monthyear pickup_select','id' => 'pickup-month')); ?>
      <?php echo $form->hiddenField($booking, 'pickupDate',array('id' => 'pickupData')); ?>
      <?php echo $form->error($booking,'pickupDate'); ?>

      </div>
      <div class="five columns alpha">
      <?php echo $form->label($booking,'returnDate'); ?>
      <?php echo $form->dropDownDayList($booking, 'returnDate',array('class' => 'date-day return_select','id' => 'return')); ?>
      <?php echo $form->dropDownYearList($booking,1, 'returnDate',array('class' => 'date-monthyear return_select','id' => 'return-month')); ?>
      <?php echo $form->hiddenField($booking, 'returnDate',array('id' => 'returnData')); ?>
      <?php echo $form->error($booking,'returnDate'); ?>

      </div>
      <br class="clear"/>
    </div>

    <br />
    <div class="content-bg">
      <h2>Terms &amp; Conditions</h2>
      <p>By submitting this loan enquiry you agree to and acknowledge our <a href="equiploanterms">Equipment Loan Terms and Conditions</a>.</p>
    </div>
    <?php echo CHtml::submitButton('Submit'); ?>
    <br />
<input class="orange-btn right" type="submit" value="Submit Loan Request">

<?php $this->endWidget(); ?>
    </div>

EquipmentRequest部分的

<div class="selected-equipment" id="request_<?php echo $request->equipment->equipName; ?>">
<div class="equipment-selected"><a href="#"><?php echo $request->equipment->equipName; ?></a></div>
    <div class="equipment-qty"><?php echo $form->textField($request, "[$index]qty", array('value' => 1,'class' => 'requestQuantity')); ?></div>
    <?php echo $form->error($request,"[$index]qty"); ?>

    <div class="equipment-update"><a href="#" class="brown-btn small"><span>Remove</span></a></div>
    <?php echo $form->hiddenField($request, "[$index]equipID",array('value' => $request->equipment->equipID)); ?>
     <?php echo $form->error($request,"[$index]equipID"); ?>

    <br class="clear">
</div>

編集 上記の問題を修正したことに注意してください。これは主に、performAjaxValidateの誤った使用法が原因でした。これは、equipmentRequestsの予約と収集の両方を呼び出すように設定しました。

これにより、2つの検証エラーメッセージオブジェクトが返されます。両方のモデルに1つです。ただし、予約モデルのみがエラーサマリーdivに渡されます。

@ bool.devこれまでのご協力に感謝します。上記のアイデアは、機器リクエストオブジェクトと予約オブジェクトのコレクションをerrorSummaryの1つの引数呼び出しにマージしようとしました。

上記を編集して、更新されたコントローラーのアクションとビューを表示しました

4

1 に答える 1

1

errorSummary()複数のモデルが必要な場合は、次を使用します。

$form->errorSummary(array($model1,$model2,$model3));
于 2012-06-21T07:09:46.590 に答える