Skip to content

Commit 88337c4

Browse files
author
Olexandr Lysenko
committed
MAGETWO-31593: Sales Quote as Standalone Magento Module
1 parent 428da2e commit 88337c4

File tree

30 files changed

+71
-47
lines changed

30 files changed

+71
-47
lines changed

app/code/Magento/GiftMessage/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"magento/module-core": "0.42.0-beta3",
1313
"magento/module-customer": "0.42.0-beta3",
1414
"magento/module-eav": "0.42.0-beta3",
15-
"magento/module-quote": "0.42.0-beta2",
15+
"magento/module-quote": "0.42.0-beta3",
1616
"magento/framework": "0.42.0-beta3",
1717
"magento/magento-composer-installer": "*"
1818
},

app/code/Magento/GiftMessage/etc/fieldset.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0"?>
22
<!--
33
/**
4-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
4+
* Copyright © 2015 Magento. All rights reserved.
5+
* See COPYING.txt for license details.
56
*/
67
-->
78
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

app/code/Magento/Quote/Model/CustomerManagement.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model;

app/code/Magento/Quote/Model/Quote/Address/ToOrder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model\Quote\Address;

app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model\Quote\Address;

app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model\Quote\Item;

app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model\Quote\Payment;

app/code/Magento/Quote/Model/QuoteManagement.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model;

app/code/Magento/Quote/Model/QuoteValidator.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56

67
namespace Magento\Quote\Model;

app/code/Magento/Quote/Model/Resource/Setup.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
/**
3-
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
45
*/
56
namespace Magento\Quote\Model\Resource;
67

0 commit comments

Comments
 (0)