23 lines
417 B
PHP
23 lines
417 B
PHP
<?php
|
|
|
|
namespace addon\saasagent\shop\controller;
|
|
use app\shop\controller\BaseShop;
|
|
class bill extends BaseShop
|
|
{
|
|
|
|
|
|
public function unsettled(){
|
|
$this->forthMenu();
|
|
return $this->fetch('bill/list');
|
|
}
|
|
|
|
|
|
public function settled(){
|
|
$this->forthMenu();
|
|
return $this->fetch('bill/list');
|
|
}
|
|
|
|
public function payconfig(){
|
|
return $this->fetch('bill/list');
|
|
}
|
|
} |