|
@@ -653,9 +653,8 @@ class Fullorder extends Start_Controller {
|
|
|
{
|
|
|
$info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz;
|
|
|
//如果是云尚快线那么需要展示一个可以查全程的运单号
|
|
|
- $transfer_number = $this->logic_order->getTransferNumber($value);
|
|
|
- if(!empty($transfer_number)){
|
|
|
- $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$transfer_number."</p>";
|
|
|
+ if(in_array($value['express'],[71,75]) && !empty($value['waybillid'])){
|
|
|
+ $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$value['waybillid']."</p>";
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1374,9 +1373,8 @@ class Fullorder extends Start_Controller {
|
|
|
//查询净重开始
|
|
|
$post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
|
|
|
unset($post[0]);
|
|
|
+
|
|
|
//查询净重结束
|
|
|
-
|
|
|
- $post = $this->logic_order->setTransferNumber($post);
|
|
|
if($this->fullorder->save($post,$id))
|
|
|
{
|
|
|
if($data['printtime'] == '0')
|
|
@@ -1418,9 +1416,6 @@ class Fullorder extends Start_Controller {
|
|
|
$fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
|
|
|
$country = $this->country->find_all('1=1','id,name','name asc');//所有国家信息
|
|
|
$express = $this->express->find_all('1=1');//所有快递配置信息
|
|
|
-
|
|
|
- //获取转单号
|
|
|
- $fullorder['transfer_number'] = $this->logic_order->getTransferNumber($fullorder);
|
|
|
$this->data['fullorder'] = $fullorder;
|
|
|
if($fullorder['express'] == 2)
|
|
|
{
|
|
@@ -1973,8 +1968,6 @@ class Fullorder extends Start_Controller {
|
|
|
$this->data['returngoods'] = $returngoods?1:0;
|
|
|
$fullorder['shipremarks'] = str_replace(array('<','>'),array('<','>'),$fullorder['shipremarks']);
|
|
|
$fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
|
|
|
- //获取转单号
|
|
|
- $fullorder['transfer_number'] = $this->logic_order->getTransferNumber($fullorder);
|
|
|
$this->data['fullorder'] = $fullorder;
|
|
|
if($fullorder['express'] == 2)
|
|
|
{
|