Version Notes
1. Cleaned up the layout of the shipping methods configuration screen. Organized fields by relevant groups for easier management.
2. Addition of commodities and seller details in api calls during checkout for marketplace customers. Added shipping method configs to enable/disable seller details.
Download this release
Release Info
Developer | Shane Bogdan |
Extension | pitneybowes_gsp |
Version | 1.4.0 |
Comparing to | |
See all releases |
Code changes from version 1.3.9 to 1.4.0
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Categorysettings.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Categorysettings/Grid.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Adminhtml/Version.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Form.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php +3 -3
- app/code/local/Pb/Pbgsp/Block/Tax/Checkout/Tax.php +3 -3
- app/code/local/Pb/Pbgsp/Helper/Data.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Api.php +18 -16
- app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/Category.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/File.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Catalog/Product.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Credentials.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Environmentconfig.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Handledata.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Handlingoptions.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Helper.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Inboundparcel.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Messages.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Newhandlingoptions.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Observer.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Ordernumber.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Phonetype.php +23 -0
- app/code/local/Pb/Pbgsp/Model/Productattributesource/Productconditions.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Quote/Duty.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Sellertype.php +23 -0
- app/code/local/Pb/Pbgsp/Model/Util.php +3 -3
- app/code/local/Pb/Pbgsp/Model/Variable.php +3 -3
- app/code/local/Pb/Pbgsp/controllers/Adminhtml/CategorysettingsController.php +3 -3
- app/code/local/Pb/Pbgsp/data/pb_pbgsp_setup/data-install-1.0.0.php +3 -3
- app/code/local/Pb/Pbgsp/etc/config.xml +2 -1
- app/code/local/Pb/Pbgsp/etc/system.xml +339 -157
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php +3 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.0.0-1.0.1.php +3 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.1.1-1.1.2.php +3 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.2.0-1.2.1.php +3 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.3.0-1.3.1.php +3 -3
- app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.3.5-1.3.6.php +3 -3
- package.xml +8 -5
app/code/local/Pb/Pbgsp/Block/Adminhtml/Categorysettings.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
*/
|
7 |
|
8 |
class Pb_Pbgsp_Block_Adminhtml_Categorysettings extends Mage_Adminhtml_Block_Widget_Grid_Container {
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
*/
|
7 |
|
8 |
class Pb_Pbgsp_Block_Adminhtml_Categorysettings extends Mage_Adminhtml_Block_Widget_Grid_Container {
|
app/code/local/Pb/Pbgsp/Block/Adminhtml/Categorysettings/Grid.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
*/
|
7 |
|
8 |
class Pb_Pbgsp_Block_Adminhtml_Categorysettings_Grid extends Mage_Adminhtml_Block_Widget_Grid {
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
*/
|
7 |
|
8 |
class Pb_Pbgsp_Block_Adminhtml_Categorysettings_Grid extends Mage_Adminhtml_Block_Widget_Grid {
|
app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Invoice/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Adminhtml/Sales/Order/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Block/Adminhtml/Version.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
|
7 |
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
|
7 |
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.
|
5 |
-
* Packaged: 2016-07-
|
6 |
-
* Last Modified: 2016-
|
7 |
* File: app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php
|
8 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
9 |
*/
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.4.0)
|
5 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
6 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
7 |
* File: app/code/local/Pb/Pbgsp/Block/Checkout/Shipping/Method/Available.php
|
8 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
9 |
*/
|
app/code/local/Pb/Pbgsp/Block/Form.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Form.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Form.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Invoice/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Block/Sales/Order/Totals.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Block/Tax/Checkout/Tax.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.
|
5 |
-
* Packaged: 2016-07-
|
6 |
-
* Last Modified: 2016-
|
7 |
*/
|
8 |
class Pb_Pbgsp_Block_Tax_Checkout_Tax extends Mage_Tax_Block_Checkout_Tax
|
9 |
{
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.4.0)
|
5 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
6 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
7 |
*/
|
8 |
class Pb_Pbgsp_Block_Tax_Checkout_Tax extends Mage_Tax_Block_Checkout_Tax
|
9 |
{
|
app/code/local/Pb/Pbgsp/Helper/Data.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
|
7 |
*/
|
8 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
|
7 |
*/
|
8 |
|
app/code/local/Pb/Pbgsp/Model/Api.php
CHANGED
@@ -269,29 +269,29 @@ class Pb_Pbgsp_Model_Api
|
|
269 |
|
270 |
// added seller information 30/06/2016
|
271 |
$contactdetail=array(
|
272 |
-
'familyName' => Mage::getStoreConfig('carriers/
|
273 |
-
'givenName' => Mage::getStoreConfig('carriers/
|
274 |
-
'email' => Mage::getStoreConfig('carriers/
|
275 |
'phoneNumbers'=> array(
|
276 |
array(
|
277 |
-
'number' => Mage::getStoreConfig('carriers/
|
278 |
-
'type' => Mage::getStoreConfig('carriers/
|
279 |
)
|
280 |
)
|
281 |
);
|
282 |
|
283 |
$sellerAddress= array(
|
284 |
-
'street1' => Mage::getStoreConfig('carriers/
|
285 |
-
'city' => Mage::getStoreConfig('carriers/
|
286 |
-
'provinceOrState' => Mage::getStoreConfig('carriers/
|
287 |
-
'postalOrZipCode' => Mage::getStoreConfig('carriers/
|
288 |
-
'country' => Mage::getStoreConfig('carriers/
|
289 |
);
|
290 |
|
291 |
$seller= array(
|
292 |
-
'
|
293 |
-
|
294 |
-
'
|
295 |
'address'=>$sellerAddress
|
296 |
);
|
297 |
|
@@ -305,10 +305,12 @@ class Pb_Pbgsp_Model_Api
|
|
305 |
'basketLines' => $basketLines,
|
306 |
'toHubTransportations' => $toHubTransportations,
|
307 |
'consignee' => $consignee,
|
308 |
-
'shippingAddress' => $shippingAddress
|
309 |
-
//'seller' => $seller
|
310 |
-
);
|
311 |
|
|
|
|
|
|
|
|
|
312 |
|
313 |
return $basket;
|
314 |
|
269 |
|
270 |
// added seller information 30/06/2016
|
271 |
$contactdetail=array(
|
272 |
+
'familyName' => Mage::getStoreConfig('carriers/pbgsp/seller_family_name'),
|
273 |
+
'givenName' => Mage::getStoreConfig('carriers/pbgsp/seller_given_name'),
|
274 |
+
'email' => Mage::getStoreConfig('carriers/pbgsp/seller_email'),
|
275 |
'phoneNumbers'=> array(
|
276 |
array(
|
277 |
+
'number' => Mage::getStoreConfig('carriers/pbgsp/seller_phone'),
|
278 |
+
'type' => Mage::getStoreConfig('carriers/pbgsp/seller_phone_type')
|
279 |
)
|
280 |
)
|
281 |
);
|
282 |
|
283 |
$sellerAddress= array(
|
284 |
+
'street1' => Mage::getStoreConfig('carriers/pbgsp/seller_street_address'),
|
285 |
+
'city' => Mage::getStoreConfig('carriers/pbgsp/seller_city'),
|
286 |
+
'provinceOrState' => Mage::getStoreConfig('carriers/pbgsp/seller_province_state'),
|
287 |
+
'postalOrZipCode' => Mage::getStoreConfig('carriers/pbgsp/seller_zip'),
|
288 |
+
'country' => Mage::getStoreConfig('carriers/pbgsp/seller_country'),
|
289 |
);
|
290 |
|
291 |
$seller= array(
|
292 |
+
'sellerId'=> Mage::getStoreConfig('carriers/pbgsp/seller_id'),
|
293 |
+
'sellerType'=> Mage::getStoreConfig('carriers/pbgsp/seller_type'),
|
294 |
+
'contactDetails'=>$contactdetail,
|
295 |
'address'=>$sellerAddress
|
296 |
);
|
297 |
|
305 |
'basketLines' => $basketLines,
|
306 |
'toHubTransportations' => $toHubTransportations,
|
307 |
'consignee' => $consignee,
|
308 |
+
'shippingAddress' => $shippingAddress
|
|
|
|
|
309 |
|
310 |
+
);
|
311 |
+
if(Mage::getStoreConfig('carriers/pbgsp/seller_active')) {
|
312 |
+
$basket['seller'] = $seller;
|
313 |
+
}
|
314 |
|
315 |
return $basket;
|
316 |
|
app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Carrier/ShippingMethod.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Catalog/Category.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Category.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Category.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Cron.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Catalog/File.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Product: Pb_Pbgsp (1.
|
5 |
-
* Packaged: 2016-07-
|
6 |
-
* Last Modified: 2016-
|
7 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/File.php
|
8 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
9 |
*/
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Product: Pb_Pbgsp (1.4.0)
|
5 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
6 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
7 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/File.php
|
8 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
9 |
*/
|
app/code/local/Pb/Pbgsp/Model/Catalog/Product.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Product.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Catalog/Product.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Credentials.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Credentials.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Credentials.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Creditmemo/Duty.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Environmentconfig.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Environmentconfig.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Environmentconfig.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Handledata.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Helper.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Helper.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Helper.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Inboundparcel.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Inboundparcel.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Inboundparcel.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Invoice/Duty.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Messages.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Messages.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Messages.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Inboundparcel/Collection.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Ordernumber/Collection.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Mysql4/Variable/Collection.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Newhandlingoptions.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Handlingoptions.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Observer.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Observer.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Observer.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Ordernumber.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Ordernumber.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Ordernumber.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Pdf/Tax.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Phonetype.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Product: Pb_Pbgsp (1.3.8)
|
4 |
+
* Packaged: 2016-06-23T10:40:00+00:00
|
5 |
+
* Last Modified: 2016-06-01T14:02:28+00:00
|
6 |
+
* File: app/code/local/Pb/Pbgsp/Model/Environmentconfig.php
|
7 |
+
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
+
*/
|
9 |
+
class Pb_Pbgsp_Model_Phonetype{
|
10 |
+
|
11 |
+
public function toOptionArray()
|
12 |
+
{
|
13 |
+
return array(
|
14 |
+
array('value'=>"mobile", 'label'=>'Mobile'),
|
15 |
+
array('value'=>"home", 'label'=>'Home'),
|
16 |
+
array('value'=>"work", 'label'=>'Work'),
|
17 |
+
|
18 |
+
|
19 |
+
);
|
20 |
+
}
|
21 |
+
|
22 |
+
|
23 |
+
}
|
app/code/local/Pb/Pbgsp/Model/Productattributesource/Productconditions.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
|
7 |
*/
|
8 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
|
7 |
*/
|
8 |
|
app/code/local/Pb/Pbgsp/Model/Quote/Duty.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Quote/Duty.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Quote/Duty.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Resource/Mysql4/Setup.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Sales/Order/Shipment.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Sellertype.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Product: Pb_Pbgsp (1.3.8)
|
4 |
+
* Packaged: 2016-06-23T10:40:00+00:00
|
5 |
+
* Last Modified: 2016-06-01T14:02:28+00:00
|
6 |
+
* File: app/code/local/Pb/Pbgsp/Model/Environmentconfig.php
|
7 |
+
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
+
*/
|
9 |
+
class Pb_Pbgsp_Model_Sellertype{
|
10 |
+
|
11 |
+
public function toOptionArray()
|
12 |
+
{
|
13 |
+
return array(
|
14 |
+
array('value'=>"", 'label'=>'Select'),
|
15 |
+
array('value'=>"BUSINESS", 'label'=>'BUSINESS'),
|
16 |
+
array('value'=>"CONSUMER", 'label'=>'CONSUMER'),
|
17 |
+
|
18 |
+
|
19 |
+
);
|
20 |
+
}
|
21 |
+
|
22 |
+
|
23 |
+
}
|
app/code/local/Pb/Pbgsp/Model/Util.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Util.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Util.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/Model/Variable.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Variable.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/Model/Variable.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/controllers/Adminhtml/CategorysettingsController.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
*/
|
7 |
|
8 |
class Pb_Pbgsp_Adminhtml_CategorysettingsController extends Mage_Adminhtml_Controller_Action {
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
*/
|
7 |
|
8 |
class Pb_Pbgsp_Adminhtml_CategorysettingsController extends Mage_Adminhtml_Controller_Action {
|
app/code/local/Pb/Pbgsp/data/pb_pbgsp_setup/data-install-1.0.0.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Pb_Pbgsp>
|
5 |
-
<version>1.
|
6 |
</Pb_Pbgsp>
|
7 |
</modules>
|
8 |
<global>
|
@@ -474,6 +474,7 @@
|
|
474 |
<display>Quantity exceeded for Country of Destination.</display>
|
475 |
</_1007008>
|
476 |
</error_messages>
|
|
|
477 |
</pbgsp>
|
478 |
</carriers>
|
479 |
</default>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Pb_Pbgsp>
|
5 |
+
<version>1.4.0</version>
|
6 |
</Pb_Pbgsp>
|
7 |
</modules>
|
8 |
<global>
|
474 |
<display>Quantity exceeded for Country of Destination.</display>
|
475 |
</_1007008>
|
476 |
</error_messages>
|
477 |
+
<seller_active>0</seller_active>
|
478 |
</pbgsp>
|
479 |
</carriers>
|
480 |
</default>
|
app/code/local/Pb/Pbgsp/etc/system.xml
CHANGED
@@ -20,15 +20,23 @@
|
|
20 |
<show_in_website>1</show_in_website>
|
21 |
<show_in_store>1</show_in_store>
|
22 |
</version>
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
<environment translate="label">
|
33 |
<label>Environment</label>
|
34 |
<frontend_type>select</frontend_type>
|
@@ -100,6 +108,7 @@
|
|
100 |
<show_in_website>1</show_in_website>
|
101 |
<show_in_store>1</show_in_store>
|
102 |
</checkout_endpoint>
|
|
|
103 |
<order_mgmt_api translate="label">
|
104 |
<label>ASN Endpoint</label>
|
105 |
<frontend_type>text</frontend_type>
|
@@ -170,6 +179,59 @@
|
|
170 |
<show_in_website>1</show_in_website>
|
171 |
<show_in_store>1</show_in_store>
|
172 |
</ftpdir>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
<catalog_diff translate="label">
|
174 |
<label>Catalog update period (hours, min 1 hour)</label>
|
175 |
<frontend_type>text</frontend_type>
|
@@ -204,15 +266,7 @@
|
|
204 |
<show_in_website>1</show_in_website>
|
205 |
<show_in_store>1</show_in_store>
|
206 |
</catalog_sender_id>
|
207 |
-
|
208 |
-
<label>Admin Email</label>
|
209 |
-
<frontend_type>text</frontend_type>
|
210 |
-
<validate>validate-email</validate>
|
211 |
-
<sort_order>110</sort_order>
|
212 |
-
<show_in_default>1</show_in_default>
|
213 |
-
<show_in_website>1</show_in_website>
|
214 |
-
<show_in_store>1</show_in_store>
|
215 |
-
</admin_email>
|
216 |
<catalog_encryption_enabled translate="label">
|
217 |
<label>Catalog Encryption Enabled</label>
|
218 |
<frontend_type>select</frontend_type>
|
@@ -262,25 +316,51 @@
|
|
262 |
<show_in_website>1</show_in_website>
|
263 |
<show_in_store>1</show_in_store>
|
264 |
</notify_catalog_err>
|
265 |
-
<
|
266 |
-
<label>
|
267 |
-
<
|
268 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
<sort_order>125</sort_order>
|
270 |
<show_in_default>1</show_in_default>
|
271 |
<show_in_website>1</show_in_website>
|
272 |
<show_in_store>1</show_in_store>
|
273 |
-
</
|
274 |
-
<
|
275 |
-
<label>
|
276 |
<frontend_type>select</frontend_type>
|
277 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
278 |
<sort_order>126</sort_order>
|
|
|
|
|
279 |
<show_in_default>1</show_in_default>
|
280 |
<show_in_website>1</show_in_website>
|
281 |
<show_in_store>1</show_in_store>
|
282 |
-
</
|
283 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
<label>Override Shipping Address</label>
|
285 |
<frontend_type>select</frontend_type>
|
286 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
@@ -288,61 +368,70 @@
|
|
288 |
<show_in_default>1</show_in_default>
|
289 |
<show_in_website>1</show_in_website>
|
290 |
<show_in_store>1</show_in_store>
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
<frontend_type>select</frontend_type>
|
316 |
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
317 |
-
<sort_order>
|
318 |
<show_in_default>1</show_in_default>
|
319 |
<show_in_website>1</show_in_website>
|
320 |
<show_in_store>1</show_in_store>
|
321 |
-
</
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
</sort_order>
|
331 |
-
<title translate="label">
|
332 |
-
<label>Title</label>
|
333 |
-
<validate>required-entry</validate>
|
334 |
-
<frontend_type>text</frontend_type>
|
335 |
-
<validate>required-entry</validate>
|
336 |
-
<sort_order>240</sort_order>
|
337 |
-
<show_in_default>1</show_in_default>
|
338 |
-
<show_in_website>1</show_in_website>
|
339 |
-
<show_in_store>1</show_in_store>
|
340 |
-
</title>
|
341 |
-
<!-- added by BigPixel 6/5/2012 -->
|
342 |
<handlingfee translate="label">
|
343 |
<label>Handling Fee</label>
|
344 |
<frontend_type>text</frontend_type>
|
345 |
-
<sort_order>
|
346 |
<show_in_default>1</show_in_default>
|
347 |
<show_in_website>1</show_in_website>
|
348 |
<show_in_store>1</show_in_store>
|
@@ -351,7 +440,7 @@
|
|
351 |
<label>Handling Fee Apply As</label>
|
352 |
<frontend_type>select</frontend_type>
|
353 |
<source_model>pb_pbgsp/handlingoptions</source_model>
|
354 |
-
<sort_order>
|
355 |
<show_in_default>1</show_in_default>
|
356 |
<show_in_website>1</show_in_website>
|
357 |
<show_in_store>1</show_in_store>
|
@@ -359,7 +448,7 @@
|
|
359 |
<domestic_shipping_fee translate="label">
|
360 |
<label>Domestic Shipping Fee</label>
|
361 |
<frontend_type>text</frontend_type>
|
362 |
-
<sort_order>
|
363 |
<show_in_default>1</show_in_default>
|
364 |
<show_in_website>1</show_in_website>
|
365 |
<show_in_store>1</show_in_store>
|
@@ -368,73 +457,34 @@
|
|
368 |
<label>Apply Domestic shipping fee as</label>
|
369 |
<frontend_type>select</frontend_type>
|
370 |
<source_model>pb_pbgsp/handlingoptions</source_model>
|
371 |
-
<sort_order>
|
372 |
<show_in_default>1</show_in_default>
|
373 |
<show_in_website>1</show_in_website>
|
374 |
<show_in_store>1</show_in_store>
|
375 |
</domestic_shipping_option>
|
376 |
-
<
|
377 |
-
<label>
|
378 |
-
<frontend_type>
|
379 |
-
<
|
380 |
-
<sort_order>
|
381 |
<show_in_default>1</show_in_default>
|
382 |
<show_in_website>1</show_in_website>
|
383 |
<show_in_store>1</show_in_store>
|
384 |
-
</
|
385 |
-
|
386 |
-
|
387 |
-
<
|
388 |
-
<
|
389 |
-
<sort_order>
|
390 |
<show_in_default>1</show_in_default>
|
391 |
<show_in_website>1</show_in_website>
|
392 |
-
|
393 |
-
|
394 |
-
<!-- added by BigPixel 6/5/2012 -->
|
395 |
-
<sallowspecific translate="label">
|
396 |
-
<label>Ship to applicable countries</label>
|
397 |
-
<frontend_type>select</frontend_type>
|
398 |
-
<sort_order>250</sort_order>
|
399 |
-
<frontend_class>shipping-applicable-country</frontend_class>
|
400 |
-
<source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
|
401 |
-
<show_in_default>1</show_in_default>
|
402 |
-
<show_in_website>1</show_in_website>
|
403 |
-
<show_in_store>1</show_in_store>
|
404 |
-
</sallowspecific>
|
405 |
-
<specificcountry translate="label">
|
406 |
-
<label>Ship to Specific countries</label>
|
407 |
-
<frontend_type>multiselect</frontend_type>
|
408 |
-
<sort_order>251</sort_order>
|
409 |
-
<source_model>adminhtml/system_config_source_country</source_model>
|
410 |
-
<show_in_default>1</show_in_default>
|
411 |
-
<show_in_website>1</show_in_website>
|
412 |
-
<show_in_store>1</show_in_store>
|
413 |
-
</specificcountry>
|
414 |
-
<showmethod translate="label">
|
415 |
-
<label>Show Method if Not Applicable</label>
|
416 |
-
<frontend_type>select</frontend_type>
|
417 |
-
<sort_order>260</sort_order>
|
418 |
-
<frontend_class>shipping-skip-hide</frontend_class>
|
419 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
420 |
-
<show_in_default>1</show_in_default>
|
421 |
-
<show_in_website>1</show_in_website>
|
422 |
-
<show_in_store>0</show_in_store>
|
423 |
-
</showmethod>
|
424 |
-
<specificerrmsg translate="label">
|
425 |
-
<label>Displayed Error Message</label>
|
426 |
-
<frontend_type>textarea</frontend_type>
|
427 |
-
<sort_order>270</sort_order>
|
428 |
-
<show_in_default>1</show_in_default>
|
429 |
-
<show_in_website>1</show_in_website>
|
430 |
-
<show_in_store>1</show_in_store>
|
431 |
-
</specificerrmsg>
|
432 |
-
<!-- test comments -->
|
433 |
<trackinglink translate="label">
|
434 |
<label>Enable Tracking Links</label>
|
435 |
<frontend_type>select</frontend_type>
|
436 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
437 |
-
<sort_order>
|
438 |
<show_in_default>1</show_in_default>
|
439 |
<show_in_website>1</show_in_website>
|
440 |
<show_in_store>1</show_in_store>
|
@@ -442,49 +492,52 @@
|
|
442 |
<suppress_domestic_tracking translate="label">
|
443 |
<label>Suppress Domestic Leg Tracking</label>
|
444 |
<frontend_type>select</frontend_type>
|
445 |
-
<sort_order>
|
446 |
<frontend_class>shipping-skip-hide</frontend_class>
|
447 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
448 |
<show_in_default>1</show_in_default>
|
449 |
<show_in_website>1</show_in_website>
|
450 |
<show_in_store>1</show_in_store>
|
451 |
</suppress_domestic_tracking>
|
452 |
-
<custom_shipment_email_subject translate="label">
|
453 |
-
<label>Custom Shipment Email Subject</label>
|
454 |
-
<frontend_type>text</frontend_type>
|
455 |
|
456 |
-
|
457 |
-
<
|
458 |
-
<show_in_website>1</show_in_website>
|
459 |
-
<show_in_store>1</show_in_store>
|
460 |
-
</custom_shipment_email_subject>
|
461 |
-
<custom_shipment_email_template>
|
462 |
-
<label>Custom Shipment Email</label>
|
463 |
-
<frontend_type>textarea</frontend_type>
|
464 |
-
<sort_order>282</sort_order>
|
465 |
-
<show_in_default>1</show_in_default>
|
466 |
-
<show_in_website>1</show_in_website>
|
467 |
-
<show_in_store>1</show_in_store>
|
468 |
-
</custom_shipment_email_template>
|
469 |
-
<enablelogging translate="label">
|
470 |
-
<label>Enable Logging</label>
|
471 |
<frontend_type>select</frontend_type>
|
472 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
473 |
-
<sort_order>
|
474 |
<show_in_default>1</show_in_default>
|
475 |
<show_in_website>1</show_in_website>
|
476 |
<show_in_store>1</show_in_store>
|
477 |
-
</
|
478 |
-
<
|
479 |
-
<label>
|
480 |
<frontend_type>select</frontend_type>
|
481 |
-
<sort_order>284</sort_order>
|
482 |
-
<frontend_class>shipping-skip-hide</frontend_class>
|
483 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
|
|
484 |
<show_in_default>1</show_in_default>
|
485 |
<show_in_website>1</show_in_website>
|
486 |
<show_in_store>1</show_in_store>
|
487 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
<return_address_street1 translate="label">
|
489 |
<label>Return Address Street 1</label>
|
490 |
<frontend_type>text</frontend_type>
|
@@ -539,8 +592,137 @@
|
|
539 |
<show_in_website>1</show_in_website>
|
540 |
<show_in_store>1</show_in_store>
|
541 |
</customer_service_number>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
</fields>
|
543 |
</pbgsp>
|
|
|
544 |
</groups>
|
545 |
</carriers>
|
546 |
|
20 |
<show_in_website>1</show_in_website>
|
21 |
<show_in_store>1</show_in_store>
|
22 |
</version>
|
23 |
+
<active translate="label">
|
24 |
+
<label>Enabled</label>
|
25 |
+
<frontend_type>select</frontend_type>
|
26 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
27 |
+
<sort_order>1</sort_order>
|
28 |
+
<show_in_default>1</show_in_default>
|
29 |
+
<show_in_website>1</show_in_website>
|
30 |
+
<show_in_store>1</show_in_store>
|
31 |
+
</active>
|
32 |
+
<shipping_heading1 translate="label">
|
33 |
+
<label>Core Settings</label>
|
34 |
+
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
35 |
+
<sort_order>2</sort_order>
|
36 |
+
<show_in_default>1</show_in_default>
|
37 |
+
<show_in_website>1</show_in_website>
|
38 |
+
</shipping_heading1>
|
39 |
+
|
40 |
<environment translate="label">
|
41 |
<label>Environment</label>
|
42 |
<frontend_type>select</frontend_type>
|
108 |
<show_in_website>1</show_in_website>
|
109 |
<show_in_store>1</show_in_store>
|
110 |
</checkout_endpoint>
|
111 |
+
|
112 |
<order_mgmt_api translate="label">
|
113 |
<label>ASN Endpoint</label>
|
114 |
<frontend_type>text</frontend_type>
|
179 |
<show_in_website>1</show_in_website>
|
180 |
<show_in_store>1</show_in_store>
|
181 |
</ftpdir>
|
182 |
+
<admin_email translate="label">
|
183 |
+
<label>Admin Email</label>
|
184 |
+
<frontend_type>text</frontend_type>
|
185 |
+
<validate>validate-email</validate>
|
186 |
+
<sort_order>81</sort_order>
|
187 |
+
<show_in_default>1</show_in_default>
|
188 |
+
<show_in_website>1</show_in_website>
|
189 |
+
<show_in_store>1</show_in_store>
|
190 |
+
</admin_email>
|
191 |
+
<enablelogging translate="label">
|
192 |
+
<label>Enable Logging</label>
|
193 |
+
<frontend_type>select</frontend_type>
|
194 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
195 |
+
<sort_order>82</sort_order>
|
196 |
+
<show_in_default>1</show_in_default>
|
197 |
+
<show_in_website>1</show_in_website>
|
198 |
+
<show_in_store>1</show_in_store>
|
199 |
+
</enablelogging>
|
200 |
+
<separate_log_file translate="label">
|
201 |
+
<label>Log in separate file</label>
|
202 |
+
<frontend_type>select</frontend_type>
|
203 |
+
<sort_order>83</sort_order>
|
204 |
+
<frontend_class>shipping-skip-hide</frontend_class>
|
205 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
206 |
+
<show_in_default>1</show_in_default>
|
207 |
+
<show_in_website>1</show_in_website>
|
208 |
+
<show_in_store>1</show_in_store>
|
209 |
+
</separate_log_file>
|
210 |
+
<showmethod translate="label">
|
211 |
+
<label>Show Method if Not Applicable</label>
|
212 |
+
<frontend_type>select</frontend_type>
|
213 |
+
<sort_order>84</sort_order>
|
214 |
+
<frontend_class>shipping-skip-hide</frontend_class>
|
215 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
216 |
+
<show_in_default>1</show_in_default>
|
217 |
+
<show_in_website>1</show_in_website>
|
218 |
+
<show_in_store>0</show_in_store>
|
219 |
+
</showmethod>
|
220 |
+
<specificerrmsg translate="label">
|
221 |
+
<label>Displayed Error Message</label>
|
222 |
+
<frontend_type>textarea</frontend_type>
|
223 |
+
<sort_order>85</sort_order>
|
224 |
+
<show_in_default>1</show_in_default>
|
225 |
+
<show_in_website>1</show_in_website>
|
226 |
+
<show_in_store>1</show_in_store>
|
227 |
+
</specificerrmsg>
|
228 |
+
<shipping_heading2 translate="label">
|
229 |
+
<label>Catalog Export</label>
|
230 |
+
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
231 |
+
<sort_order>86</sort_order>
|
232 |
+
<show_in_default>1</show_in_default>
|
233 |
+
<show_in_website>1</show_in_website>
|
234 |
+
</shipping_heading2>
|
235 |
<catalog_diff translate="label">
|
236 |
<label>Catalog update period (hours, min 1 hour)</label>
|
237 |
<frontend_type>text</frontend_type>
|
266 |
<show_in_website>1</show_in_website>
|
267 |
<show_in_store>1</show_in_store>
|
268 |
</catalog_sender_id>
|
269 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
<catalog_encryption_enabled translate="label">
|
271 |
<label>Catalog Encryption Enabled</label>
|
272 |
<frontend_type>select</frontend_type>
|
316 |
<show_in_website>1</show_in_website>
|
317 |
<show_in_store>1</show_in_store>
|
318 |
</notify_catalog_err>
|
319 |
+
<shipping_heading3 translate="label">
|
320 |
+
<label>Shipping Settings</label>
|
321 |
+
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
322 |
+
<sort_order>123</sort_order>
|
323 |
+
<show_in_default>1</show_in_default>
|
324 |
+
<show_in_website>1</show_in_website>
|
325 |
+
</shipping_heading3>
|
326 |
+
<sort_order translate="label">
|
327 |
+
<label>Sort order</label>
|
328 |
+
<frontend_type>text</frontend_type>
|
329 |
+
<sort_order>124</sort_order>
|
330 |
+
<show_in_default>1</show_in_default>
|
331 |
+
<show_in_website>1</show_in_website>
|
332 |
+
<show_in_store>1</show_in_store>
|
333 |
+
</sort_order>
|
334 |
+
<title translate="label">
|
335 |
+
<label>Title</label>
|
336 |
+
<validate>required-entry</validate>
|
337 |
+
<frontend_type>text</frontend_type>
|
338 |
+
<validate>required-entry</validate>
|
339 |
<sort_order>125</sort_order>
|
340 |
<show_in_default>1</show_in_default>
|
341 |
<show_in_website>1</show_in_website>
|
342 |
<show_in_store>1</show_in_store>
|
343 |
+
</title>
|
344 |
+
<sallowspecific translate="label">
|
345 |
+
<label>Ship to applicable countries</label>
|
346 |
<frontend_type>select</frontend_type>
|
|
|
347 |
<sort_order>126</sort_order>
|
348 |
+
<frontend_class>shipping-applicable-country</frontend_class>
|
349 |
+
<source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
|
350 |
<show_in_default>1</show_in_default>
|
351 |
<show_in_website>1</show_in_website>
|
352 |
<show_in_store>1</show_in_store>
|
353 |
+
</sallowspecific>
|
354 |
+
<specificcountry translate="label">
|
355 |
+
<label>Ship to Specific countries</label>
|
356 |
+
<frontend_type>multiselect</frontend_type>
|
357 |
+
<sort_order>127</sort_order>
|
358 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
359 |
+
<show_in_default>1</show_in_default>
|
360 |
+
<show_in_website>1</show_in_website>
|
361 |
+
<show_in_store>1</show_in_store>
|
362 |
+
</specificcountry>
|
363 |
+
<override_shipping_address_enabled translate="label">
|
364 |
<label>Override Shipping Address</label>
|
365 |
<frontend_type>select</frontend_type>
|
366 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
368 |
<show_in_default>1</show_in_default>
|
369 |
<show_in_website>1</show_in_website>
|
370 |
<show_in_store>1</show_in_store>
|
371 |
+
</override_shipping_address_enabled>
|
372 |
+
<delivery_adjustment_min_days translate="label">
|
373 |
+
<label>Minimum Delivery Days to PB Hub</label>
|
374 |
+
<frontend_type>text</frontend_type>
|
375 |
+
<validate>validate-number</validate>
|
376 |
+
<sort_order>129</sort_order>
|
377 |
+
<show_in_default>1</show_in_default>
|
378 |
+
<show_in_website>1</show_in_website>
|
379 |
+
<show_in_store>1</show_in_store>
|
380 |
+
</delivery_adjustment_min_days>
|
381 |
+
<delivery_adjustment_max_days translate="label">
|
382 |
+
<label>Maximum Delivery Days to PB Hub</label>
|
383 |
+
<frontend_type>text</frontend_type>
|
384 |
+
<validate>validate-number</validate>
|
385 |
+
<sort_order>130</sort_order>
|
386 |
+
<show_in_default>1</show_in_default>
|
387 |
+
<show_in_website>1</show_in_website>
|
388 |
+
<show_in_store>1</show_in_store>
|
389 |
+
</delivery_adjustment_max_days>
|
390 |
+
<custom_shipment_email_subject translate="label">
|
391 |
+
<label>Custom Shipment Email Subject</label>
|
392 |
+
<frontend_type>text</frontend_type>
|
393 |
+
|
394 |
+
<sort_order>131</sort_order>
|
395 |
+
<show_in_default>1</show_in_default>
|
396 |
+
<show_in_website>1</show_in_website>
|
397 |
+
<show_in_store>1</show_in_store>
|
398 |
+
</custom_shipment_email_subject>
|
399 |
+
<custom_shipment_email_template>
|
400 |
+
<label>Custom Shipment Email</label>
|
401 |
+
<frontend_type>textarea</frontend_type>
|
402 |
+
<sort_order>132</sort_order>
|
403 |
+
<show_in_default>1</show_in_default>
|
404 |
+
<show_in_website>1</show_in_website>
|
405 |
+
<show_in_store>1</show_in_store>
|
406 |
+
</custom_shipment_email_template>
|
407 |
+
<shipping_heading4 translate="label">
|
408 |
+
<label>Fees</label>
|
409 |
+
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
410 |
+
<sort_order>133</sort_order>
|
411 |
+
<show_in_default>1</show_in_default>
|
412 |
+
<show_in_website>1</show_in_website>
|
413 |
+
</shipping_heading4>
|
414 |
+
<free_shipping_enable translate="label">
|
415 |
+
<label>Free shipping with minimum order amount</label>
|
416 |
<frontend_type>select</frontend_type>
|
417 |
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
418 |
+
<sort_order>134</sort_order>
|
419 |
<show_in_default>1</show_in_default>
|
420 |
<show_in_website>1</show_in_website>
|
421 |
<show_in_store>1</show_in_store>
|
422 |
+
</free_shipping_enable>
|
423 |
+
<free_shipping_subtotal translate="label">
|
424 |
+
<label>Minimum order amount for free shipping</label>
|
425 |
+
<frontend_type>text</frontend_type>
|
426 |
+
<sort_order>135</sort_order>
|
427 |
+
<show_in_default>1</show_in_default>
|
428 |
+
<show_in_website>1</show_in_website>
|
429 |
+
<show_in_store>1</show_in_store>
|
430 |
+
</free_shipping_subtotal>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
<handlingfee translate="label">
|
432 |
<label>Handling Fee</label>
|
433 |
<frontend_type>text</frontend_type>
|
434 |
+
<sort_order>140</sort_order>
|
435 |
<show_in_default>1</show_in_default>
|
436 |
<show_in_website>1</show_in_website>
|
437 |
<show_in_store>1</show_in_store>
|
440 |
<label>Handling Fee Apply As</label>
|
441 |
<frontend_type>select</frontend_type>
|
442 |
<source_model>pb_pbgsp/handlingoptions</source_model>
|
443 |
+
<sort_order>145</sort_order>
|
444 |
<show_in_default>1</show_in_default>
|
445 |
<show_in_website>1</show_in_website>
|
446 |
<show_in_store>1</show_in_store>
|
448 |
<domestic_shipping_fee translate="label">
|
449 |
<label>Domestic Shipping Fee</label>
|
450 |
<frontend_type>text</frontend_type>
|
451 |
+
<sort_order>150</sort_order>
|
452 |
<show_in_default>1</show_in_default>
|
453 |
<show_in_website>1</show_in_website>
|
454 |
<show_in_store>1</show_in_store>
|
457 |
<label>Apply Domestic shipping fee as</label>
|
458 |
<frontend_type>select</frontend_type>
|
459 |
<source_model>pb_pbgsp/handlingoptions</source_model>
|
460 |
+
<sort_order>155</sort_order>
|
461 |
<show_in_default>1</show_in_default>
|
462 |
<show_in_website>1</show_in_website>
|
463 |
<show_in_store>1</show_in_store>
|
464 |
</domestic_shipping_option>
|
465 |
+
<free_tax_enable translate="label">
|
466 |
+
<label>Enable zero tax for customer</label>
|
467 |
+
<frontend_type>select</frontend_type>
|
468 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
469 |
+
<sort_order>160</sort_order>
|
470 |
<show_in_default>1</show_in_default>
|
471 |
<show_in_website>1</show_in_website>
|
472 |
<show_in_store>1</show_in_store>
|
473 |
+
</free_tax_enable>
|
474 |
+
|
475 |
+
<shipping_heading4 translate="label">
|
476 |
+
<label>Fulfilment Tracking</label>
|
477 |
+
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
478 |
+
<sort_order>165</sort_order>
|
479 |
<show_in_default>1</show_in_default>
|
480 |
<show_in_website>1</show_in_website>
|
481 |
+
</shipping_heading4>
|
482 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
<trackinglink translate="label">
|
484 |
<label>Enable Tracking Links</label>
|
485 |
<frontend_type>select</frontend_type>
|
486 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
487 |
+
<sort_order>170</sort_order>
|
488 |
<show_in_default>1</show_in_default>
|
489 |
<show_in_website>1</show_in_website>
|
490 |
<show_in_store>1</show_in_store>
|
492 |
<suppress_domestic_tracking translate="label">
|
493 |
<label>Suppress Domestic Leg Tracking</label>
|
494 |
<frontend_type>select</frontend_type>
|
495 |
+
<sort_order>175</sort_order>
|
496 |
<frontend_class>shipping-skip-hide</frontend_class>
|
497 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
498 |
<show_in_default>1</show_in_default>
|
499 |
<show_in_website>1</show_in_website>
|
500 |
<show_in_store>1</show_in_store>
|
501 |
</suppress_domestic_tracking>
|
|
|
|
|
|
|
502 |
|
503 |
+
<asn_generation_enabled translate="label">
|
504 |
+
<label>Generate ASN</label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
<frontend_type>select</frontend_type>
|
506 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
507 |
+
<sort_order>180</sort_order>
|
508 |
<show_in_default>1</show_in_default>
|
509 |
<show_in_website>1</show_in_website>
|
510 |
<show_in_store>1</show_in_store>
|
511 |
+
</asn_generation_enabled>
|
512 |
+
<generate_asn_on_add_track translate="label">
|
513 |
+
<label>Generate ASN after adding tracking number</label>
|
514 |
<frontend_type>select</frontend_type>
|
|
|
|
|
515 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
516 |
+
<sort_order>185</sort_order>
|
517 |
<show_in_default>1</show_in_default>
|
518 |
<show_in_website>1</show_in_website>
|
519 |
<show_in_store>1</show_in_store>
|
520 |
+
</generate_asn_on_add_track>
|
521 |
+
|
522 |
+
<!--
|
523 |
+
If the free_shipping_enable flag enable, the system will check free_shipping_subtotal to give free shipping
|
524 |
+
otherwise will use shopping cart price rule behaviour
|
525 |
+
-->
|
526 |
+
|
527 |
+
|
528 |
+
|
529 |
+
|
530 |
+
|
531 |
+
<!-- added by BigPixel 6/5/2012 -->
|
532 |
+
|
533 |
+
|
534 |
+
<!-- added by BigPixel 6/5/2012 -->
|
535 |
+
|
536 |
+
|
537 |
+
<!-- test comments -->
|
538 |
+
|
539 |
+
|
540 |
+
|
541 |
<return_address_street1 translate="label">
|
542 |
<label>Return Address Street 1</label>
|
543 |
<frontend_type>text</frontend_type>
|
592 |
<show_in_website>1</show_in_website>
|
593 |
<show_in_store>1</show_in_store>
|
594 |
</customer_service_number>
|
595 |
+
<shipping_heading5 translate="label">
|
596 |
+
<label>Seller Settings</label>
|
597 |
+
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
598 |
+
<sort_order>300</sort_order>
|
599 |
+
<show_in_default>1</show_in_default>
|
600 |
+
<show_in_website>1</show_in_website>
|
601 |
+
</shipping_heading5>
|
602 |
+
<seller_active translate="label">
|
603 |
+
<label>Enable Seller Settings</label>
|
604 |
+
<frontend_type>select</frontend_type>
|
605 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
606 |
+
<sort_order>301</sort_order>
|
607 |
+
<show_in_default>1</show_in_default>
|
608 |
+
<show_in_website>1</show_in_website>
|
609 |
+
<show_in_store>1</show_in_store>
|
610 |
+
</seller_active>
|
611 |
+
<seller_id translate="label">
|
612 |
+
<label>Seller ID</label>
|
613 |
+
<frontend_type>text</frontend_type>
|
614 |
+
|
615 |
+
<sort_order>305</sort_order>
|
616 |
+
<show_in_default>1</show_in_default>
|
617 |
+
<show_in_website>1</show_in_website>
|
618 |
+
<show_in_store>1</show_in_store>
|
619 |
+
</seller_id>
|
620 |
+
|
621 |
+
<seller_type translate="label">
|
622 |
+
<label>Seller Type</label>
|
623 |
+
<frontend_type>select</frontend_type>
|
624 |
+
<source_model>pb_pbgsp/sellertype</source_model>
|
625 |
+
|
626 |
+
<sort_order>310</sort_order>
|
627 |
+
<show_in_default>1</show_in_default>
|
628 |
+
<show_in_website>1</show_in_website>
|
629 |
+
<show_in_store>1</show_in_store>
|
630 |
+
</seller_type>
|
631 |
+
<seller_family_name translate="label">
|
632 |
+
<label>Family Name</label>
|
633 |
+
<frontend_type>text</frontend_type>
|
634 |
+
|
635 |
+
<sort_order>315</sort_order>
|
636 |
+
<show_in_default>1</show_in_default>
|
637 |
+
<show_in_website>1</show_in_website>
|
638 |
+
<show_in_store>1</show_in_store>
|
639 |
+
</seller_family_name>
|
640 |
+
<seller_given_name translate="label">
|
641 |
+
<label>Given Name</label>
|
642 |
+
<frontend_type>text</frontend_type>
|
643 |
+
|
644 |
+
<sort_order>320</sort_order>
|
645 |
+
<show_in_default>1</show_in_default>
|
646 |
+
<show_in_website>1</show_in_website>
|
647 |
+
<show_in_store>1</show_in_store>
|
648 |
+
</seller_given_name>
|
649 |
+
<seller_email translate="label">
|
650 |
+
<label>Email ID</label>
|
651 |
+
<frontend_type>text</frontend_type>
|
652 |
+
|
653 |
+
<sort_order>325</sort_order>
|
654 |
+
<show_in_default>1</show_in_default>
|
655 |
+
<show_in_website>1</show_in_website>
|
656 |
+
<show_in_store>1</show_in_store>
|
657 |
+
</seller_email>
|
658 |
+
<seller_phone translate="label">
|
659 |
+
<label>Phone Number</label>
|
660 |
+
<frontend_type>text</frontend_type>
|
661 |
+
|
662 |
+
<sort_order>330</sort_order>
|
663 |
+
<show_in_default>1</show_in_default>
|
664 |
+
<show_in_website>1</show_in_website>
|
665 |
+
<show_in_store>1</show_in_store>
|
666 |
+
</seller_phone>
|
667 |
+
|
668 |
+
<seller_phone_type translate="label">
|
669 |
+
<label>Phone Type</label>
|
670 |
+
<frontend_type>select</frontend_type>
|
671 |
+
<source_model>pb_pbgsp/phonetype</source_model>
|
672 |
+
|
673 |
+
<sort_order>335</sort_order>
|
674 |
+
<show_in_default>1</show_in_default>
|
675 |
+
<show_in_website>1</show_in_website>
|
676 |
+
<show_in_store>1</show_in_store>
|
677 |
+
</seller_phone_type>
|
678 |
+
<seller_street_address translate="label">
|
679 |
+
<label>Street Address </label>
|
680 |
+
<frontend_type>text</frontend_type>
|
681 |
+
|
682 |
+
<sort_order>340</sort_order>
|
683 |
+
<show_in_default>1</show_in_default>
|
684 |
+
<show_in_website>1</show_in_website>
|
685 |
+
<show_in_store>1</show_in_store>
|
686 |
+
</seller_street_address>
|
687 |
+
<seller_city translate="label">
|
688 |
+
<label>City </label>
|
689 |
+
<frontend_type>text</frontend_type>
|
690 |
+
|
691 |
+
<sort_order>345</sort_order>
|
692 |
+
<show_in_default>1</show_in_default>
|
693 |
+
<show_in_website>1</show_in_website>
|
694 |
+
<show_in_store>1</show_in_store>
|
695 |
+
</seller_city>
|
696 |
+
<seller_province_state translate="label">
|
697 |
+
<label>Province or State </label>
|
698 |
+
<frontend_type>text</frontend_type>
|
699 |
+
|
700 |
+
<sort_order>350</sort_order>
|
701 |
+
<show_in_default>1</show_in_default>
|
702 |
+
<show_in_website>1</show_in_website>
|
703 |
+
<show_in_store>1</show_in_store>
|
704 |
+
</seller_province_state>
|
705 |
+
<seller_zip translate="label">
|
706 |
+
<label>Zip/Postal Code </label>
|
707 |
+
<frontend_type>text</frontend_type>
|
708 |
+
|
709 |
+
<sort_order>355</sort_order>
|
710 |
+
<show_in_default>1</show_in_default>
|
711 |
+
<show_in_website>1</show_in_website>
|
712 |
+
<show_in_store>1</show_in_store>
|
713 |
+
</seller_zip>
|
714 |
+
<seller_country translate="label">
|
715 |
+
<label>Country</label>
|
716 |
+
<frontend_type>select</frontend_type>
|
717 |
+
<sort_order>360</sort_order>
|
718 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
719 |
+
<show_in_default>1</show_in_default>
|
720 |
+
<show_in_website>1</show_in_website>
|
721 |
+
<show_in_store>1</show_in_store>
|
722 |
+
</seller_country>
|
723 |
</fields>
|
724 |
</pbgsp>
|
725 |
+
|
726 |
</groups>
|
727 |
</carriers>
|
728 |
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.0.0-1.0.1.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.1.1-1.1.2.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.2.0-1.2.1.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.3.0-1.3.1.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-upgrade-1.3.5-1.3.6.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Product: Pb_Pbgsp (1.
|
4 |
-
* Packaged: 2016-07-
|
5 |
-
* Last Modified: 2016-
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Product: Pb_Pbgsp (1.4.0)
|
4 |
+
* Packaged: 2016-07-28T17:25:00+00:00
|
5 |
+
* Last Modified: 2016-07-26T14:17:00+00:00
|
6 |
* File: app/code/local/Pb/Pbgsp/sql/pbgsp_setup/mysql4-install-1.0.0.php
|
7 |
* Copyright: Copyright (c) 2016 Pitney Bowes <info@pb.com> / All rights reserved.
|
8 |
*/
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>pitneybowes_gsp</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -22,11 +22,14 @@ Providing full international tracking linked from your admin page
|
|
22 |
</ul>
|
23 |
To learn more, go to <a href="http://www.pb.com/ecom">http://www.pb.com/ecom</a>
|
24 |
</description>
|
25 |
-
<notes>1.
|
|
|
|
|
|
|
26 |
<authors><author><name>Shane Bogdan</name><user>pbecommerce</user><email>shane.bogdan@pb.com</email></author></authors>
|
27 |
-
<date>2016-07-
|
28 |
-
<time>
|
29 |
-
<contents><target name="magelocal"><dir name="Pb"><dir name="Pbgsp"><dir name="Block"><dir name="Adminhtml"><dir name="Categorysettings"><file name="Grid.php" hash="
|
30 |
<compatible/>
|
31 |
<dependencies><required><php><min>5.1.0</min><max>5.6.10</max></php></required></dependencies>
|
32 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>pitneybowes_gsp</name>
|
4 |
+
<version>1.4.0</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>
|
22 |
</ul>
|
23 |
To learn more, go to <a href="http://www.pb.com/ecom">http://www.pb.com/ecom</a>
|
24 |
</description>
|
25 |
+
<notes>1. Cleaned up the layout of the shipping methods configuration screen. Organized fields by relevant groups for easier management.
|
26 |
+

|
27 |
+
2. Addition of commodities and seller details in api calls during checkout for marketplace customers. Added shipping method configs to enable/disable seller details.
|
28 |
+
</notes>
|
29 |
<authors><author><name>Shane Bogdan</name><user>pbecommerce</user><email>shane.bogdan@pb.com</email></author></authors>
|
30 |
+
<date>2016-07-29</date>
|
31 |
+
<time>00:59:50</time>
|
32 |
+
<contents><target name="magelocal"><dir name="Pb"><dir name="Pbgsp"><dir name="Block"><dir name="Adminhtml"><dir name="Categorysettings"><file name="Grid.php" hash="ab01d7a821090af2ebc557d32fb957e6"/></dir><file name="Categorysettings.php" hash="e325eeb47feba658fe48be0b083d37d5"/><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Totals.php" hash="da3be7f712ee7c4813e4db4e56903477"/></dir><file name="Totals.php" hash="634b59e817af11bd3e5f35dd78f5a700"/></dir></dir><file name="Version.php" hash="4e2d549fa13cfa4e3f0a89266d7c9afd"/></dir><dir name="Checkout"><dir name="Shipping"><dir name="Method"><file name="Available.php" hash="87afba37b9b7f783bde8d3a250a008e1"/></dir></dir></dir><file name="Form.php" hash="4dccf06935c21bc9621d9cb061ba32e7"/><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Totals.php" hash="abe5d156d429709cb5ca7baf8ef779e6"/></dir><file name="Totals.php" hash="f11dc603211bf3060597ff3d61d5ab01"/></dir></dir><dir name="Tax"><dir name="Checkout"><file name="Tax.php" hash="457f0d827797ed0ac6a80e9bf77b7df0"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="1dc5a184e36f95bc8512e06383bc7871"/></dir><dir name="Model"><file name="Api.php" hash="71832d9805ec76221c518f3dcb3bb569"/><dir name="Carrier"><file name="ShippingMethod.php" hash="c865e4c08830d34551a187365345fc0f"/></dir><dir name="Catalog"><file name="Category.php" hash="eafaea527bebc8d7d66932e2645dd602"/><file name="Cron.php" hash="f592896996db9a4b36c4961b5cfaec24"/><file name="File.php" hash="c5033abde596dad024746b7f30cb78c4"/><file name="Product.php" hash="c9333705a72a84e41c1e724239c02b34"/></dir><file name="Credentials.php" hash="7df0a7509aefc10a561e3668b92f6c0e"/><dir name="Creditmemo"><file name="Duty.php" hash="b80211eefdcdea74e807c3b5da05a7e6"/></dir><file name="Environmentconfig.php" hash="ebbe8e69ec095c121c2d0edfbfd8a15c"/><file name="Handledata.php" hash="9f5f9e575334c31333ea8c398b0b40aa"/><file name="Handlingoptions.php" hash="94b79316e02960a0a4386dd268c42f20"/><file name="Helper.php" hash="91b095588306f966a9fc67e5c983dc46"/><file name="Inboundparcel.php" hash="c9bb24f0b19125c7fa3ff011b0ed50e1"/><dir name="Invoice"><file name="Duty.php" hash="c7439ec1a7f3f44e3fad0e42ceeb79bd"/></dir><file name="Messages.php" hash="f31a92e85f2ec0aa9746cb2b0123ff6b"/><dir name="Mysql4"><dir name="Inboundparcel"><file name="Collection.php" hash="e5a50c55105dbe7dc9da8a1141c35010"/></dir><file name="Inboundparcel.php" hash="74c8fdb017dbca8644c63f5e015a5a5e"/><dir name="Ordernumber"><file name="Collection.php" hash="1cf61e307e6bf71b0532170a9be72584"/></dir><file name="Ordernumber.php" hash="19ffbdde3f84abfbaf5a560174ad11fa"/><dir name="Variable"><file name="Collection.php" hash="f300665dfb7ea4af612eea5f79b831e3"/></dir><file name="Variable.php" hash="2635ac1a2f506f9597f1f8cb1786a0fb"/></dir><file name="Newhandlingoptions.php" hash="6c60856548cbc6c3efc817abcdc639ae"/><file name="Observer.php" hash="e3333284dfa025e9a47254e8c2310596"/><file name="Ordernumber.php" hash="7496d476742eb7fa380bc184f28673d5"/><dir name="Pdf"><file name="Tax.php" hash="5d917816d876f68a7b5db039c9632070"/></dir><file name="Phonetype.php" hash="9a5a5d3af53a6f137c578ba391626d27"/><dir name="Productattributesource"><file name="Productconditions.php" hash="33beabae883eafe4c99ed44810c5e70a"/></dir><dir name="Quote"><file name="Duty.php" hash="3350fd2997deae1837a26163a15d87c2"/></dir><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="ace4f8f47d2cd7d31f3c02e4ba23e1ae"/></dir></dir><dir name="Sales"><dir name="Order"><file name="Shipment.php" hash="18f5dd580ce5b3c808d49370fb3fdd05"/></dir></dir><file name="Sellertype.php" hash="0f966b509b0c84ebaedb292abbea8929"/><file name="Util.php" hash="659fdd6dad892c39a3108f34c65357e6"/><file name="Variable.php" hash="84f38a26928cc4577b885b0a0687916b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CategorysettingsController.php" hash="9007729986b03485f22cfb8b315ef314"/></dir></dir><dir name="data"><dir name="pb_pbgsp_setup"><file name="data-install-1.0.0.php" hash="c604f70ed0253df0cc55712a2d6a78e9"/></dir></dir><dir name="etc"><file name="config.xml" hash="90e105ec2ab96400e803dab2959dc246"/><file name="system.xml" hash="3d39b59e89c4b307dadcc4021e7723ef"/></dir><dir name="sql"><dir name="pbgsp_setup"><file name="mysql4-install-1.0.0.php" hash="060e8597361d08552f922596ece46306"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="243e5b2e83ae3108708c864d4e16261a"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="73bf47d2183b12caad151a3be32e9199"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="8c60f1bba2dd5abf0e93f497c5fa7564"/><file name="mysql4-upgrade-1.3.0-1.3.1.php" hash="a4c237c91f06c6650dd7ba24a2d13349"/><file name="mysql4-upgrade-1.3.5-1.3.6.php" hash="25851742d8eeabae22591972f855964b"/></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="0fb628e37654a9768babe0ed06df4960"/></dir></dir></dir></target><target name="mageweb"><dir name="."><file name="ReadMe.txt" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="PBGSP_Manual_Catalog_Export.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target></contents>
|
33 |
<compatible/>
|
34 |
<dependencies><required><php><min>5.1.0</min><max>5.6.10</max></php></required></dependencies>
|
35 |
</package>
|