mothership-ec/cog-mothership-returns
最新稳定版本:5.4.0
Composer 安装命令:
composer require mothership-ec/cog-mothership-returns
包简介
Cog module for order returns in Mothership
README 文档
README
description
Installation
Add "message/cog-mothership-returns": "1.1.*" to your composer.json.
Assembling a new return
The assembler helps you build a new return ready for passing to the create decorator.
This service is available via:
$assembler = $this->get('return.assembler');
If you have an existing return you can pass this into the assembler with:
$assembler->setReturn($return);
And retrieve the assembled return once you are finished building it:
$return = $assembler->getReturn();
If your return has no associated order, i.e. is standalone, you should set the currency. This defaults to 'GBP':
$assembler->setCurrency('EUR');
You can set the return item from either a instance of Commerce\Order\Entity\Item\Item or Commerce\Product\Unit\Unit.
// Standard $orderItem = $this->get('order.item.loader')->getByID(1); $assembler->setReturnItem($orderItem); // Standalone $productUnit = $this->get('product.unit.loader')->getByID(1); $assembler->setReturnItem($productUnit);
Notes
Namespaces and classes are called OrderReturn due to PHP having return as a reserved word.
统计信息
- 总下载量: 1.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2015-02-25