Jump to content

[已解决]EMS单号问题


esoso

Recommended Posts

我在订单模块里面更改订单状态,改成shipped,好像没有一个地方可以填写EMS单号,很郁闷!有没有一个模块可以填写EMS发货单号的,这样自动按模板发邮件给客户呢?

Link to comment
Share on other sites

在这里(Back Office >> Shipping >> Carriers >> URL),该订单所使用的carrier是否已正确添加(用于在线跟踪包裹的)URL?



EMS 的在线url 不知道怎么样弄的 我填了一个EMS 网站的链接 然后在shipped 那里填单号的时候 单号直接在链接后面 比如单号
eb2348902834cn 在账户里面点那个链接出来的是错误的

怎么样弄成客户收到的邮件是这个样子的

Your order is currently in transit. Your tracking number is: eb2348902834cn

You can track your package by clicking on the following link:
http://www.ems.com.cn/qcgzOutQueryAction.do?reqCode=gotoSearchE
Link to comment
Share on other sites

找到一个帖子 然后试了一下搞定了 呵呵

1. Go to your admin folder —> tabs —>and look for: ‘AdminOrders.php’

2. Find the line containing the following code (for me it is line 83):

'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),

3. Add a new line of code below that line:

'{shipping_number}' => $order->shipping_number,

4. Save the AdminOrders.php file

5. Go to the mails folder and open in_transit.html

6. Add somewhere in the file:

Your tracking number is: {shipping_number}

7. Save the in_transit.html file!

客人收到的邮件就是这样的

Your order is currently in transit. Your tracking number is: eb2348902834cn

You can track your package by clicking on the following link: http://www.ems.com.cn/english-main.jsp

You can also review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.

Link to comment
Share on other sites

找到一个帖子 然后试了一下搞定了 呵呵

1. Go to your admin folder —> tabs —>and look for: ‘AdminOrders.php’

2. Find the line containing the following code (for me it is line 83):

'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),

3. Add a new line of code below that line:

'{shipping_number}' => $order->shipping_number,

4. Save the AdminOrders.php file

5. Go to the mails folder and open in_transit.html

6. Add somewhere in the file:

Your tracking number is: {shipping_number}

7. Save the in_transit.html file!

客人收到的邮件就是这样的

Your order is currently in transit. Your tracking number is: eb2348902834cn

You can track your package by clicking on the following link: http://www.ems.com.cn/english-main.jsp

You can also review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.


你好,你的pp版本是?我找不到{followup}' => str_replace('@', $order->shipping_number, $carrier->url???这语句
Link to comment
Share on other sites

找到一个帖子 然后试了一下搞定了 呵呵

1. Go to your admin folder —> tabs —>and look for: ‘AdminOrders.php’

2. Find the line containing the following code (for me it is line 83):

'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),

3. Add a new line of code below that line:

'{shipping_number}' => $order->shipping_number,

4. Save the AdminOrders.php file

5. Go to the mails folder and open in_transit.html

6. Add somewhere in the file:

Your tracking number is: {shipping_number}

7. Save the in_transit.html file!

客人收到的邮件就是这样的

Your order is currently in transit. Your tracking number is: eb2348902834cn

You can track your package by clicking on the following link: http://www.ems.com.cn/english-main.jsp

You can also review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.


你好,你的pp版本是?我找不到{followup}' => str_replace('@', $order->shipping_number, $carrier->url???这语句


去你网站空间里面装ps的admin文件夹里面找tab 然后找到 AdminOrders.php 编辑
ctrl+f 找'{followup}' => str_replace 这一句就可以找到了 我用 1.3.02版本的

ems的单号不会跟查询网站链接粘一块 香港小包就粘一块了还是跟在查询链接后面 不过香港小包用的少无所谓只有人家可以访问香港小包查询网站就可以了
Link to comment
Share on other sites

找到一个帖子 然后试了一下搞定了 呵呵

1. Go to your admin folder —> tabs —>and look for: ‘AdminOrders.php’

2. Find the line containing the following code (for me it is line 83):

'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),

3. Add a new line of code below that line:

'{shipping_number}' => $order->shipping_number,

4. Save the AdminOrders.php file

5. Go to the mails folder and open in_transit.html

6. Add somewhere in the file:

Your tracking number is: {shipping_number}

7. Save the in_transit.html file!

客人收到的邮件就是这样的

Your order is currently in transit. Your tracking number is: eb2348902834cn

You can track your package by clicking on the following link: http://www.ems.com.cn/english-main.jsp

You can also review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.


你好,你的pp版本是?我找不到{followup}' => str_replace('@', $order->shipping_number, $carrier->url???这语句


去你网站空间里面装ps的admin文件夹里面找tab 然后找到 AdminOrders.php 编辑
ctrl+f 找'{followup}' => str_replace 这一句就可以找到了 我用 1.3.02版本的

ems的单号不会跟查询网站链接粘一块 香港小包就粘一块了还是跟在查询链接后面 不过香港小包用的少无所谓只有人家可以访问香港小包查询网站就可以了


谢谢,已找到,还有2个问题请教一下。1.是不是在后台shipping>>carriers>>编辑EMS时,出现的url,要怎么填?只要填“http://www.ems.com.cn/english-main.jsp”就可以了吗?2.EMS的单号在哪输?然后,在order>>修改状态为shipped,客人就能收到邮件?
Link to comment
Share on other sites

找到一个帖子 然后试了一下搞定了 呵呵

1. Go to your admin folder —> tabs —>and look for: ‘AdminOrders.php’

2. Find the line containing the following code (for me it is line 83):

'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),

3. Add a new line of code below that line:

'{shipping_number}' => $order->shipping_number,

4. Save the AdminOrders.php file

5. Go to the mails folder and open in_transit.html

6. Add somewhere in the file:

Your tracking number is: {shipping_number}

7. Save the in_transit.html file!

客人收到的邮件就是这样的

Your order is currently in transit. Your tracking number is: eb2348902834cn

You can track your package by clicking on the following link: http://www.ems.com.cn/english-main.jsp

You can also review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.


你好,你的pp版本是?我找不到{followup}' => str_replace('@', $order->shipping_number, $carrier->url???这语句


去你网站空间里面装ps的admin文件夹里面找tab 然后找到 AdminOrders.php 编辑
ctrl+f 找'{followup}' => str_replace 这一句就可以找到了 我用 1.3.02版本的

ems的单号不会跟查询网站链接粘一块 香港小包就粘一块了还是跟在查询链接后面 不过香港小包用的少无所谓只有人家可以访问香港小包查询网站就可以了


谢谢,已找到,还有2个问题请教一下。1.是不是在后台shipping>>carriers>>编辑EMS时,出现的url,要怎么填?只要填“http://www.ems.com.cn/english-main.jsp”就可以了吗?2.EMS的单号在哪输?然后,在order>>修改状态为shipped,客人就能收到邮件?


你选了shipped右边 会出来一个 货运栏的 你填一下单号就会发到客人邮箱里面的. 你看一下附件图片就知道了
你自己可以注册一个买家账户试一下 收不收的到邮件 你qq多少大家交流一下

20265_xbtfX3K8Bt9x8OXMclT8_t

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...