|
@@ -1375,6 +1375,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')
|
|
@@ -1416,6 +1418,9 @@ 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)
|
|
|
{
|
|
@@ -1968,6 +1973,8 @@ 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)
|
|
|
{
|