add contract > ticket installment/ticket expiration date changes

This commit is contained in:
2016-09-12 07:53:11 +02:00
parent 2828a6f236
commit 5a562677c7
4 changed files with 166 additions and 65 deletions

View File

@@ -2,27 +2,17 @@
namespace backend\controllers;
use common\models\City;
use yii\web\Controller;
use backend\models\GiroBeszedForm;
/**
* CityController implements the CRUD actions for City model.
*/
class TestController extends Controller
{
public function actionCreateBeszed(){
$model = new GiroBeszedForm();
if ($model->load(\Yii::$app->request->post()) ) {
$model->run();
}
return $this->render("_create_beszed",['model' => $model]);
public function actionIndex(){
return "ok";
}