1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- class ItemPagopar{
- public $name;
- public $qty;
- public $price;
- public $cityId;
- public $desc;
- public $url_img;
- public $weight;
- public $sellerPhone;
- public $sellerEmail;
- public $sellerAddress;
- public $sellerAddressRef;
- public $sellerAddressCoo;
- public $category;
-
-
- public function __construct() {
- }
-
- public function formatToArray(){
- $envioAEX1['costo'] = null;
- $envioAEX1['tiempo_entrega'] = null;
- return [
- 'nombre' => $this->name,
- 'cantidad' => $this->qty,
- 'precio_total' => $this->price,
- 'ciudad' => $this->cityId,
- 'descripcion' => $this->desc,
- 'url_imagen' => $this->url_img,
- 'peso' => $this->weight,
- 'vendedor_telefono' => $this->sellerPhone,
- 'vendedor_email' => $this->sellerEmail,
- 'vendedor_direccion' => $this->sellerAddress,
- 'vendedor_direccion_referencia' => $this->sellerAddressRef,
- 'vendedor_direccion_coordenadas' => $this->sellerAddressCoo,
- 'opciones_envio' => [
- 'metodo_aex' => $envioAEX1
- ],
- 'categoria' => $this->category,
-
- ];
- }
- }
|