add reception customer update changes

This commit is contained in:
2015-09-30 11:25:32 +02:00
parent 2b57f95b1e
commit 640d04cb76
20 changed files with 1185 additions and 15 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace frontend\components;
use yii\base\Widget;
class ReceptionMenuWidget extends Widget{
public $number;
public $route;
public $customer;
public $card;
public $viewFile = '//common/_menu_reception';
public function run(){
echo $this->render($this->viewFile,['card' => $this->card, 'customer' =>$this->customer ]);
}
}