-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
118 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/* @var $this PaymentController */ | ||
/* @var $data PaymentRecord */ | ||
?> | ||
|
||
<div class="view"> | ||
|
||
<span style="color:blue;"><?php echo $data->id?></span> | ||
| ||
<b><?php echo CHtml::encode($data->getAttributeLabel('catv_costs')); ?>:</b> | ||
<?php echo CHtml::encode($data->catv_costs); ?> | ||
| ||
<br /> | ||
<div style="float:right"> | ||
<div style="padding: 5px 0; font-weight:bold;"> | ||
<?php echo CHtml::encode($data->hh->building->name . ' ' . $data->hh->entrance . ' 单元 ' . $data->hh->floor . ' 层 #' . $data->hh->number); ?> | ||
| ||
</div> | ||
<?php echo CHtml::link('查看详细', array('view', 'id'=>$data->id)); ?> | ||
| ||
<?php echo CHtml::encode($data->date); ?> | ||
</div> | ||
<div style="clear: both;"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
/* @var $this PaymentController */ | ||
/* @var $data PaymentRecord */ | ||
?> | ||
|
||
<div class="view"> | ||
|
||
<div style="left"> | ||
<div style="padding: 5px 0; font-weight:bold;"> | ||
<?php echo CHtml::encode($data->building->name . ' ' . $data->entrance . ' 单元 ' . $data->floor . ' 层 #' . $data->number); ?> | ||
| ||
</div> | ||
<?php echo CHtml::link('查看缴费信息', array('chistory', 'hid'=>$data->id)); ?> | ||
<?php echo CHtml::link('查看住户信息', array('//resident/hhview', 'id'=>$data->id)); ?> | ||
</div> | ||
<div style="clear: both;"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
/* @var $this PaymentController */ | ||
/* @var $dataProvider CActiveDataProvider */ | ||
|
||
$this->breadcrumbs=array( | ||
'缴费'=>array('index'), | ||
'有线电视欠费住户'=>array('parr'), | ||
CHtml::encode($model->building->name . ' ' . $model->entrance . ' 单元 ' . $model->floor . ' 层 #' . $model->number) | ||
); | ||
?> | ||
<h1><?php echo CHtml::encode($model->building->name . ' ' . $model->entrance . ' 单元 ' . $model->floor . ' 层 #' . $model->number); ?> 物业费缴费记录</h1> | ||
<?php $this->widget('zii.widgets.CListView', array( | ||
'dataProvider'=>$dataProvider, | ||
'itemView'=>'_chview', | ||
)); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
/* @var $this PaymentController */ | ||
/* @var $dataProvider CActiveDataProvider */ | ||
|
||
$this->breadcrumbs=array( | ||
'缴费'=>array('index'), | ||
'有线电视欠费住户', | ||
); | ||
?> | ||
<h1>有线电视欠费住户</h1> | ||
<?php $this->widget('zii.widgets.CListView', array( | ||
'dataProvider'=>$dataProvider, | ||
'itemView'=>'_cunpaidView', | ||
)); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters