[TBID:opensource]

1、支持天猫加急发货功能
2、支持京东厂直售后
3、优化视频号订单金额
4、优化失败订单恢复逻辑
This commit is contained in:
chenping
2026-07-07 20:57:38 +08:00
parent c4a50a7e69
commit 677d749c0a
82 changed files with 3675 additions and 1511 deletions

View File

@@ -20,6 +20,7 @@
*/
class ome_ctl_admin_receipts_print extends desktop_controller {
const URGENT_LABEL_CODE = 'SOMS_URGENT_SHIP';
var $name = "发货中心";
var $workground = "delivery_center";
@@ -97,9 +98,14 @@ class ome_ctl_admin_receipts_print extends desktop_controller {
'filter' => $tmp_filter,
'optional' => false
);
$sub_menu[$c++] = array(
'label' => app::get('base')->_('加急发货'),
'filter' => array_merge($tmp_filter, array('delivery_label_code' => self::URGENT_LABEL_CODE)),
'optional' => false
);
#第三方发货时,显示已发货、未发货
if($_GET['ctl'] == 'admin_receipts_outer') {
$c = 3;#物流公司view在未发货之后
$c = $c + 2;
$outer_filter = $tmp_filter;
#让已发货、未发货显示在全部之后
$outer = $this->shipStatus();