|
|
@@ -26,6 +26,7 @@ use common\helpers\Cache;
|
|
|
use common\helpers\Date;
|
|
|
use common\helpers\Form;
|
|
|
use common\helpers\LoggerTool;
|
|
|
+use common\models\Countries;
|
|
|
use common\models\CurrencyConversions;
|
|
|
use common\models\DeclarationPackage;
|
|
|
use common\models\DecOrder;
|
|
|
@@ -969,6 +970,8 @@ class ShopController extends BaseController {
|
|
|
|
|
|
$order['ORDER_TYPE'] = $order['ORDER_TYPE'] === 'ZC' ? Yii::t('ctx', 'shopOrderListOrderTypeZc') : Yii::t('ctx', 'shopOrderListOrderTypeFx');
|
|
|
|
|
|
+ $order['COUNTRY'] = Countries::getById($order['COUNTRY_ID'])['NAME'] ?? '';
|
|
|
+
|
|
|
// 订单已挂网,不可调整
|
|
|
$period = Period::getInfoByPeriodNum($order['PERIOD_NUM']);
|
|
|
if (!$period) {
|