예제 #1
0
 /**
  * Finds the Tipoproveedores model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Tipoproveedores the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Tipoproveedores::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('La página solicitada no existe.');
     }
 }
예제 #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Tipoproveedores::find();
     // add conditions that should always apply here
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     // grid filtering conditions
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'tipoproveedor', $this->tipoproveedor]);
     return $dataProvider;
 }
예제 #3
0
파일: _form.php 프로젝트: rvences/mopoua
        <?php 
echo Html::activeLabel($model, 'Proveedor', ['label' => 'Proveedor', 'class' => 'col-sm-2 control-label']);
?>

        <div class="col-sm-2">
            <?php 
echo $form->field($model, 'nombre_corto', ['showLabels' => false])->textInput(['placeholder' => 'Nombre Comercial']);
?>
        </div>

        <div class="col-sm-3">
            <?php 
// = $form->field($model, 'tipoproveedor_id',['showLabels'=>false])->textInput(['placeholder'=>'Tipo de Proveedor']);
?>
            <?php 
$dato = \yii\helpers\ArrayHelper::map(\backend\modules\mrp\models\Tipoproveedores::find()->asArray()->all(), 'id', 'tipoproveedor');
echo $form->field($model, 'tipoproveedor_id', ['showLabels' => false])->dropDownList($dato);
?>
        </div>

        <div class="col-sm-3">
            <?php 
echo $form->field($model, 'razon_social', ['showLabels' => false])->textInput(['placeholder' => 'Razón Social']);
?>
        </div>

        <div class="col-sm-2">
            <?php 
echo $form->field($model, 'rfc', ['showLabels' => false])->textInput(['placeholder' => 'R F C - Hacienda']);
?>
        </div>