|
@@ -20,12 +20,13 @@ require_once(BASE_ROOT_PATH . '/helper/user_session/fcode.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/search/tcp_client.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/search/tcp_client.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/message/publisher.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/message/publisher.php');
|
|
|
|
|
|
-require_once(BASE_ROOT_PATH . '/helper/async_push/IPusher.php');
|
|
|
|
-require_once(BASE_ROOT_PATH . '/helper/async_push/status.php');
|
|
|
|
-require_once(BASE_ROOT_PATH . '/helper/async_push/register.php');
|
|
|
|
-require_once(BASE_ROOT_PATH . '/helper/async_push/order.php');
|
|
|
|
-require_once(BASE_ROOT_PATH . '/helper/order_helper.php');
|
|
|
|
|
|
+require_once(BASE_ROOT_PATH . '/helper/async/IAsync.php');
|
|
|
|
+require_once(BASE_ROOT_PATH . '/helper/async/status.php');
|
|
|
|
+require_once(BASE_ROOT_PATH . '/helper/async/register.php');
|
|
|
|
+require_once(BASE_ROOT_PATH . '/helper/async/order.php');
|
|
|
|
+require_once(BASE_ROOT_PATH . '/helper/async/ugc.php');
|
|
|
|
|
|
|
|
+require_once(BASE_ROOT_PATH . '/helper/order_helper.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/fcode/present_manager.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/fcode/present_manager.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/schema_helper.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/schema_helper.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/url_helper.php');
|
|
require_once(BASE_ROOT_PATH . '/helper/url_helper.php');
|
|
@@ -332,7 +333,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\status($member_id);
|
|
|
|
|
|
+ $iPusher = new async\status($member_id);
|
|
$iPusher->run();
|
|
$iPusher->run();
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
@@ -359,7 +360,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\register($user,$inviter);
|
|
|
|
|
|
+ $iPusher = new async\register($user,$inviter);
|
|
$iPusher->run();
|
|
$iPusher->run();
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
@@ -370,7 +371,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\order($pay_sn);
|
|
|
|
|
|
+ $iPusher = new async\order($pay_sn);
|
|
$iPusher->onPaied();
|
|
$iPusher->onPaied();
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
@@ -381,7 +382,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\order($pay_sn);
|
|
|
|
|
|
+ $iPusher = new async\order($pay_sn);
|
|
$iPusher->onSended($logistics_no,$logistics_company);
|
|
$iPusher->onSended($logistics_no,$logistics_company);
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
@@ -392,7 +393,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\order($pay_sn);
|
|
|
|
|
|
+ $iPusher = new async\order($pay_sn);
|
|
$iPusher->onComplete();
|
|
$iPusher->onComplete();
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
@@ -403,7 +404,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\order($pay_sn);
|
|
|
|
|
|
+ $iPusher = new async\order($pay_sn);
|
|
$iPusher->onCancel();
|
|
$iPusher->onCancel();
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
@@ -414,7 +415,7 @@ class account_helper
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- $iPusher = new async_push\order($pay_sn);
|
|
|
|
|
|
+ $iPusher = new async\order($pay_sn);
|
|
$iPusher->onEvaluate();
|
|
$iPusher->onEvaluate();
|
|
} catch (Exception $ex) {
|
|
} catch (Exception $ex) {
|
|
Log::record($ex->getMessage(),Log::ERR);
|
|
Log::record($ex->getMessage(),Log::ERR);
|