Version Notes
Patch release for Magento Connect.
1. Added compatibility to run in php 5.6.x
Download this release
Release Info
Developer | Raymond Lai |
Extension | pitneybowes_gsp |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- ReadMe.txt +66 -0
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php +4 -3
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php +4 -3
- app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php +4 -3
- app/code/local/Pb/Pbgsp/Block/Form.php +4 -3
- app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php +4 -3
- app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Api.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/Category.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/File.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/Product.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Credentials.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Handlingoptions.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Helper.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Inboundparcel.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Messages.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Observer.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Ordernumber.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Quote/Duty.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Util.php +4 -3
- app/code/local/Pb/Pbgsp/Model/Variable.php +4 -3
- app/code/local/Pb/Pbgsp/data/pb_pbgsp_setup/data-install-1.0.0.php +4 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php +4 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.0.0-1.0.1.php +4 -3
- package.xml +7 -6
ReadMe.txt
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
========================================================
|
2 |
+
INSTALLATION
|
3 |
+
========================================================
|
4 |
+
Disclaimer: We recommend to install ANY extension you purchase/download in a testing environment before deploying it to your production environment. Please also backup your Magento installation (files and database) before installing any extension and make sure no conflicting extensions are installed. All extensions are tested in clean Magento installations without third party extensions and we can't guarantee for compatibility with third party extensions.
|
5 |
+
|
6 |
+
If you're using the Magento compiler - or if you are not sure if you're doing so - please log into the Magento backend and go to System > Tools > Compilation and turn it off. If you don't do so there's a good chance you'll temporarily break your Magento installation. Also, it is recommended to disable the cache before installing any extension.
|
7 |
+
|
8 |
+
Open the extension ZIP file and extract it to a directory on your computer using a tool like WinRar, WinZIP or similar.
|
9 |
+
|
10 |
+
Upload the extracted folders and files into the root directory of your Magento installation. The root directory of Magento is the folder that contains the directories "app", "js", "skin", "lib" and more. All folders should match the existing folder structure. If one of our extensions is already installed and you're updating it, make sure to overwrite the existing files of the extension.
|
11 |
+
|
12 |
+
Go to System > Cache Management and click both the 'Flush Magento Cache' as well as the 'Flush Cache Storage' button. This is required to activate the extension.
|
13 |
+
|
14 |
+
Log out of the Magento admin and log back in - you'll see a 404 Error when trying to open the configuration section if you don't log out / log in once.
|
15 |
+
|
16 |
+
If you're using the Magento compiler and had it enabled before installing this extension, go to System > Tools > Compilation and click on 'Run Compilation Process' to re-compile Magento and enable it again by clicking on 'Enable'.
|
17 |
+
|
18 |
+
========================================================
|
19 |
+
CONFIGURATION
|
20 |
+
========================================================
|
21 |
+
Attention!! Be sure to logout & re-login before configuration else you will get '404 Error (Page not found)' in System > Configuration Page.
|
22 |
+
1> After installation go to Admin:
|
23 |
+
System >> Configuration >> Shipping Methods >> Pitney Bowes PBGSP >> Manage your setting here.
|
24 |
+
Be sure to review the full documentation found here http://wiki.ecommerce.pb.com
|
25 |
+
|
26 |
+
Your Pitney Bowes project manager will provide you with the necessary credentials needed to complete the installation.
|
27 |
+
|
28 |
+
GNUPG encryption
|
29 |
+
In order to take advantage of the file encryption setting in the extension configs your server will need to have the GNUGP module installed. You can find out more about that here: https://www.gnupg.org
|
30 |
+
|
31 |
+
========================================================
|
32 |
+
CHANGELOG
|
33 |
+
========================================================
|
34 |
+
v. 1.0.2
|
35 |
+
|
36 |
+
Added compatibility to run in php 5.6.x
|
37 |
+
|
38 |
+
|
39 |
+
v. 1.0.2
|
40 |
+
|
41 |
+
Resolved issue where orders with shipments were not passing additional ASNs. Now an ASN is generated for each shipment per order
|
42 |
+
|
43 |
+
v. 1.0.1
|
44 |
+
|
45 |
+
Fixed a production issue when exportedFiles variable is null
|
46 |
+
Added City to the Pitney Bowes Hub address provided to store admin on order details
|
47 |
+
Update PB tracking URL to https://parceltracking.pb.com/app/#/dashboard/UPIDHERE
|
48 |
+
Fixed issue with international tracking url
|
49 |
+
Fixed a production issue when exportedFiles variable is null
|
50 |
+
Fixed issue with ASN request not sending correct commodity quantity.
|
51 |
+
Made the PGP extension not required for installation thru the Magento Connect process.
|
52 |
+
Added Input values in config to allow customer return address when shipment is rejected
|
53 |
+
|
54 |
+
v. 1.0.0 -
|
55 |
+
- Initial Application build, see documentation for details
|
56 |
+
|
57 |
+
|
58 |
+
========================================================
|
59 |
+
BUGS / NEW FEATURE REQUEST
|
60 |
+
========================================================
|
61 |
+
PB-Magento-GSP-Support@pb.com
|
62 |
+
#################(RAY, we can add a support email here that will be PB specific but that will also forward to my team)
|
63 |
+
========================================================
|
64 |
+
FOR SUPPORT
|
65 |
+
========================================================
|
66 |
+
PB-Magento-GSP-Support@pb.com
|
app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
|
9 |
|
10 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php
|
app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
|
9 |
|
10 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php
|
app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
|
9 |
|
10 |
* File: app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php
|
app/code/local/Pb/Pbgsp/Block/Form.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Block/Form.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Block/Form.php
|
app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
|
9 |
|
10 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php
|
app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php
|
app/code/local/Pb/Pbgsp/Model/Api.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Api.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Api.php
|
app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
|
9 |
|
10 |
* File: app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php
|
app/code/local/Pb/Pbgsp/Model/Catalog/Category.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Category.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Category.php
|
app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php
|
app/code/local/Pb/Pbgsp/Model/Catalog/File.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/File.php
|
8 |
* Copyright: Copyright (c) 2015 Pitney Bowes <info@pb.com> / All rights reserved.
|
9 |
*/
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/File.php
|
9 |
* Copyright: Copyright (c) 2015 Pitney Bowes <info@pb.com> / All rights reserved.
|
10 |
*/
|
app/code/local/Pb/Pbgsp/Model/Catalog/Product.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Product.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Product.php
|
app/code/local/Pb/Pbgsp/Model/Credentials.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Credentials.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Credentials.php
|
app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php
|
app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
app/code/local/Pb/Pbgsp/Model/Helper.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Helper.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Helper.php
|
app/code/local/Pb/Pbgsp/Model/Inboundparcel.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Inboundparcel.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Inboundparcel.php
|
app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php
|
app/code/local/Pb/Pbgsp/Model/Messages.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Messages.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Messages.php
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php
|
app/code/local/Pb/Pbgsp/Model/Observer.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Observer.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Observer.php
|
app/code/local/Pb/Pbgsp/Model/Ordernumber.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Ordernumber.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Ordernumber.php
|
app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php
|
app/code/local/Pb/Pbgsp/Model/Quote/Duty.php
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.0.
|
5 |
-
* Packaged: 2015-09-
|
6 |
-
* Last Modified: 2015-
|
|
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Quote/Duty.php
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.0.3)
|
5 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
6 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
7 |
+
|
8 |
|
9 |
|
10 |
* File: app/code/local/Pb/Pbgsp/Model/Quote/Duty.php
|
app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php
|
app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php
|
app/code/local/Pb/Pbgsp/Model/Util.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Util.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Util.php
|
app/code/local/Pb/Pbgsp/Model/Variable.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/Model/Variable.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/Model/Variable.php
|
app/code/local/Pb/Pbgsp/data/pb_pbgsp_setup/data-install-1.0.0.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2015 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
8 |
* Copyright: Copyright (c) 2015 Pitney Bowes <info@pb.com> / All rights reserved.
|
9 |
*/
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.0.0-1.0.1.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.0.
|
4 |
-
* Packaged: 2015-09-
|
5 |
-
* Last Modified: 2015-
|
|
|
6 |
|
7 |
|
8 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.0.3)
|
4 |
+
* Packaged: 2015-09-1T15:12:28+00:00
|
5 |
+
* Last Modified: 2015-08-25T15:12:28+00:00
|
6 |
+
|
7 |
|
8 |
|
9 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>pitneybowes_gsp</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -24,11 +24,12 @@ To learn more, go to <a href="http://www.pb.com/ecom">http://www.pb.com/ec
|
|
24 |
</description>
|
25 |
<notes>Patch release for Magento Connect.
|
26 |

|
27 |
-
1.
|
|
|
28 |
<authors><author><name>Raymond Lai</name><user>r3lai</user><email>raymond.lai@pb.com</email></author></authors>
|
29 |
-
<date>2015-
|
30 |
-
<time>
|
31 |
-
<contents><target name="magelocal"><dir name="Pb"><dir name="Pbgsp"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Totals.php" hash="
|
32 |
<compatible/>
|
33 |
-
<dependencies><required><php><min>5.1.0</min><max>5.
|
34 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>pitneybowes_gsp</name>
|
4 |
+
<version>1.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
24 |
</description>
|
25 |
<notes>Patch release for Magento Connect.
|
26 |

|
27 |
+
1. Added compatibility to run in php 5.6.x 
|
28 |
+
</notes>
|
29 |
<authors><author><name>Raymond Lai</name><user>r3lai</user><email>raymond.lai@pb.com</email></author></authors>
|
30 |
+
<date>2015-09-01</date>
|
31 |
+
<time>14:00:28</time>
|
32 |
+
<contents><target name="magelocal"><dir name="Pb"><dir name="Pbgsp"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Totals.php" hash="5729ef35e0d5b5169fe1f2df768cfc90"/></dir><file name="Totals.php" hash="2d2c9b96e8ff872bb6cb0c215f662136"/></dir></dir></dir><dir name="Checkout"><dir name="Shipping"><dir name="Method"><file name="Available.php" hash="5bacd3499beb6b51ebdb194aad9d0d81"/></dir></dir></dir><file name="Form.php" hash="a47d85b1475121bd2807bd46f0f9bea7"/><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Totals.php" hash="17aea44fb0c0a3f7cdc387bf48d63d83"/></dir><file name="Totals.php" hash="ab45e407fda85eade5a78abba3936438"/></dir></dir></dir><dir name="Model"><file name="Api.php" hash="93e1169d82d93bf87a3104a121ad8fe6"/><dir name="Carrier"><file name="ShippingMethod.php" hash="a3d9a814f18008836b3efc8085612893"/></dir><dir name="Catalog"><file name="Category.php" hash="a6c4588eafba5c07143f8df8b17afec6"/><file name="Cron.php" hash="1e3adeb6114ba180b4761e52e03300cc"/><file name="File.php" hash="a6a5eccd24b67966fbcf64353ac8d88c"/><file name="Product.php" hash="cd4a721d64e19652fd4c10244154e46a"/></dir><file name="Credentials.php" hash="6c82fac0d3d1e00ba0385963809dd7ef"/><dir name="Creditmemo"><file name="Duty.php" hash="74e5628248244a926075d6be298a701a"/></dir><file name="Handlingoptions.php" hash="7bb3ec54956010d7a9f76d57b90e412b"/><file name="Helper.php" hash="6f5571cf56e7bdb93616f26fc577fa6d"/><file name="Inboundparcel.php" hash="2eb5ccbb316b527a034808f090ff98db"/><dir name="Invoice"><file name="Duty.php" hash="f02d6ab7786864467946b924b544ccec"/></dir><file name="Messages.php" hash="24dc9bc170fdf77c7846c493a90e003d"/><dir name="Mysql4"><dir name="Inboundparcel"><file name="Collection.php" hash="a621601118262beb7987c5174658e58e"/></dir><file name="Inboundparcel.php" hash="b331929da71aa9a350b017f163511514"/><dir name="Ordernumber"><file name="Collection.php" hash="adc47bdd5635ffc4a1cbd853a184384b"/></dir><file name="Ordernumber.php" hash="9252b9a383ee8308bd816184c23f7585"/><dir name="Variable"><file name="Collection.php" hash="ea9246deb738136e360e78a5d767cdf6"/></dir><file name="Variable.php" hash="42944333611ac890a5ad69c4ea1d5e18"/></dir><file name="Observer.php" hash="c458ac3550ba95916f350703054aee58"/><file name="Ordernumber.php" hash="6be30597ab59461955989db13e2ad222"/><dir name="Pdf"><file name="Tax.php" hash="37928ac79f1df8478a0443481dbf1812"/></dir><dir name="Quote"><file name="Duty.php" hash="6212b9d6d13fa6308be26258d7556b5b"/></dir><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="8bfe25d9abf012676a5df01e635103dc"/></dir></dir><dir name="Sales"><dir name="Order"><file name="Shipment.php" hash="fd3513b69a2f648f62dcfcb0ecc45f02"/></dir></dir><file name="Util.php" hash="2ec986a8a53813cd78a43d8ec0f257db"/><file name="Variable.php" hash="ec2d892e10386f8dab17edff79863b23"/></dir><file name="README" hash="e7ad1d9a7ba016753e381a9ca92b696e"/><dir name="data"><dir name="pb_pbgsp_setup"><file name="data-install-1.0.0.php" hash="d972293cdbf3b18b02ea8553ee073fae"/></dir></dir><dir name="etc"><file name="config.xml" hash="cd07d8dcac33bc08cc62eb66e7bd8761"/><file name="system.xml" hash="32456da492543f56536323a99fd4cc00"/></dir><dir name="sql"><dir name="pbgsp_setup"><file name="mysql4-install-1.0.0.php" hash="23b4c71dffa85b0031e1585aaa362ed5"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="b5ef7ba8af7d1bc89b8d92aca6c0dd61"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Pb_Pbgsp.xml" hash="8475d60d4719f8ea7761a4ca39016e48"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Pb_Clearpath.csv" hash="aa4b7a650feb1709a34b6c053b56811c"/><dir name="template"><dir name="email"><file name="pbgsp_shipment_new.html" hash="2cc5cdbeaa719f4dab6a7c9e29fd6574"/></dir></dir></dir></target><target name="mageweb"><dir name="."><file name="ReadMe.txt" hash="d848909c198484c430b55b1d5636a73e"/></dir></target></contents>
|
33 |
<compatible/>
|
34 |
+
<dependencies><required><php><min>5.1.0</min><max>5.6.0</max></php></required></dependencies>
|
35 |
</package>
|