You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
463 B
PHP
17 lines
463 B
PHP
<?php
|
|
class OrderOperateModalWidget extends ZcWidget {
|
|
|
|
/**
|
|
* @var OrderPrintService
|
|
*/
|
|
private $orderPrintService;
|
|
|
|
public function __construct($route) {
|
|
$this->orderPrintService = Zc::singleton('OrderPrintService');
|
|
}
|
|
|
|
public function render($renderData = '') {
|
|
$renderData['logisticsMap'] = $this->orderPrintService->getLogisticsMapByPlatform(AppConst::appPlatformPdd);
|
|
return $this->renderFile('order/order_operate_modal', $renderData);
|
|
}
|
|
} |