11 lines
438 B
PHP
11 lines
438 B
PHP
<!-- o = Model_Account -->
|
|
<?php echo View::factory('welcome/user/view')->set('o',$o); ?>
|
|
|
|
<?php echo Block::factory()
|
|
->title(sprintf('InActive Services for Account: %s',$o->refnum()))
|
|
->title_icon('fa fa-barcode')
|
|
->span(6)
|
|
->body(View::factory('service/user/list/inactive')->set('o',$o->service->where('status','!=',1)->or_where('status','IS',null)->find_all())); ?>
|
|
|
|
<?php echo View::factory('invoice/user/next')->set('o',$o); ?>
|