seeds.rb 228 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015
  1. # This file should contain all the record creation needed to seed the database with its default values.
  2. # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
  3. #
  4. # Examples:
  5. #
  6. #Dir[File.join(Rails.root, 'db', 'seeds', '*.rb')].sort.each { |seed| load seed }
  7. AvailableProduct.destroy_all
  8. ActiveRecord::Base.connection.execute("TRUNCATE available_products RESTART IDENTITY CASCADE")
  9. CashOutDetail.destroy_all
  10. ActiveRecord::Base.connection.execute("TRUNCATE cash_out_details RESTART IDENTITY CASCADE")
  11. CashOut.destroy_all
  12. ActiveRecord::Base.connection.execute("TRUNCATE cash_outs RESTART IDENTITY CASCADE")
  13. CashRegistersMove.destroy_all
  14. ActiveRecord::Base.connection.execute("TRUNCATE cash_registers_moves RESTART IDENTITY CASCADE")
  15. CreditPayment.destroy_all
  16. ActiveRecord::Base.connection.execute("TRUNCATE credit_payments RESTART IDENTITY CASCADE")
  17. Credit.destroy_all
  18. ActiveRecord::Base.connection.execute("TRUNCATE credits RESTART IDENTITY CASCADE")
  19. Expense.destroy_all
  20. ActiveRecord::Base.connection.execute("TRUNCATE expenses RESTART IDENTITY CASCADE")
  21. InventoriesMove.destroy_all
  22. ActiveRecord::Base.connection.execute("TRUNCATE inventories_moves RESTART IDENTITY CASCADE")
  23. Inventory.destroy_all
  24. ActiveRecord::Base.connection.execute("TRUNCATE inventories RESTART IDENTITY CASCADE")
  25. OpenCashRegister.destroy_all
  26. ActiveRecord::Base.connection.execute("TRUNCATE open_cash_registers RESTART IDENTITY CASCADE")
  27. InvoiceDetail.destroy_all
  28. ActiveRecord::Base.connection.execute("TRUNCATE invoice_details RESTART IDENTITY CASCADE")
  29. PrePurchase.destroy_all
  30. ActiveRecord::Base.connection.execute("TRUNCATE pre_purchases RESTART IDENTITY CASCADE")
  31. PreSale.destroy_all
  32. ActiveRecord::Base.connection.execute("TRUNCATE pre_sales RESTART IDENTITY CASCADE")
  33. PreTransfer.destroy_all
  34. ActiveRecord::Base.connection.execute("TRUNCATE pre_transfers RESTART IDENTITY CASCADE")
  35. ProductWaste.destroy_all
  36. ActiveRecord::Base.connection.execute("TRUNCATE product_wastes RESTART IDENTITY CASCADE")
  37. ProductsReturnIn.destroy_all
  38. ActiveRecord::Base.connection.execute("TRUNCATE products_return_ins RESTART IDENTITY CASCADE")
  39. ProductsReturnOut.destroy_all
  40. ActiveRecord::Base.connection.execute("TRUNCATE products_return_outs RESTART IDENTITY CASCADE")
  41. ProductsReturn.destroy_all
  42. ActiveRecord::Base.connection.execute("TRUNCATE products_returns RESTART IDENTITY CASCADE")
  43. ProductsVariant.destroy_all
  44. ActiveRecord::Base.connection.execute("TRUNCATE products_variants RESTART IDENTITY CASCADE")
  45. PurchaseDetail.destroy_all
  46. ActiveRecord::Base.connection.execute("TRUNCATE purchase_details RESTART IDENTITY CASCADE")
  47. Purchase.destroy_all
  48. ActiveRecord::Base.connection.execute("TRUNCATE purchases RESTART IDENTITY CASCADE")
  49. SalesSellercommission.destroy_all
  50. ActiveRecord::Base.connection.execute("TRUNCATE sales_sellercommissions RESTART IDENTITY CASCADE")
  51. SalesDetail.destroy_all
  52. ActiveRecord::Base.connection.execute("TRUNCATE sales_details RESTART IDENTITY CASCADE")
  53. Sale.destroy_all
  54. ActiveRecord::Base.connection.execute("TRUNCATE sales RESTART IDENTITY CASCADE")
  55. Sellerscommission.destroy_all
  56. ActiveRecord::Base.connection.execute("TRUNCATE sellerscommissions RESTART IDENTITY CASCADE")
  57. Seller.destroy_all
  58. ActiveRecord::Base.connection.execute("TRUNCATE sellers RESTART IDENTITY CASCADE")
  59. SpecialPrice.destroy_all
  60. ActiveRecord::Base.connection.execute("TRUNCATE special_prices RESTART IDENTITY CASCADE")
  61. #Tagging.destroy_all
  62. #ActiveRecord::Base.connection.execute("TRUNCATE taggins RESTART IDENTITY CASCADE")
  63. #Tag.destroy_all
  64. #ActiveRecord::Base.connection.execute("TRUNCATE tags RESTART IDENTITY CASCADE")
  65. TransferDetail.destroy_all
  66. ActiveRecord::Base.connection.execute("TRUNCATE transfer_details RESTART IDENTITY CASCADE")
  67. Transfer.destroy_all
  68. ActiveRecord::Base.connection.execute("TRUNCATE transfers RESTART IDENTITY CASCADE")
  69. WarehouseStock.destroy_all
  70. ActiveRecord::Base.connection.execute("TRUNCATE warehouse_stocks RESTART IDENTITY CASCADE")
  71. Product.destroy_all
  72. ActiveRecord::Base.connection.execute("TRUNCATE products RESTART IDENTITY CASCADE")
  73. Product.create([
  74. {sku:'DIA-0124-4 ', name:'DIADEMA ROJA CON CADENA DORADA ', description:'Rojo ', category_id:17, price_sale: 169, price_base: 84.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:169 }] } ,
  75. {sku:'DIA-0050-2 ', name:'DIADEMA GAZA NEGRA CON PUNTOS ', description:'Negro ', category_id:17, price_sale: 139, price_base: 69.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:139 }] } ,
  76. {sku:'DIA-0155-2 ', name:'DIADEMA PIEDRAS DE COLORES ', description:'Negro ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:119 }] } ,
  77. {sku:'DIA-0147-238 ', name:'DIADEMA PELUCHE Y PERLAS ', description:'GRIS ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  78. {sku:'DIA-0114-239 ', name:'DIADEMA MEZCLILLA Y PERLAS ', description:'MEZCLILLA ', category_id:17, price_sale: 159, price_base: 79.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:159 }] } ,
  79. {sku:'DIA-0096-240 ', name:'DIADEMA FLORES PEDRERIA ', description:'COLORES ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  80. {sku:'DIA-0060-241 ', name:'DIADEMA PERLAS ', description:'BLANCA ', category_id:17, price_sale: 129, price_base: 64.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:129 }] } ,
  81. {sku:'DIA-0143-242 ', name:'DIADEMA MOÑO ', description:'MENTA Y ROSA ', category_id:17, price_sale: 210, price_base: 105, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:210 }] } ,
  82. {sku:'DIA-0110-243 ', name:'DIADEMA ROSA CON PERLAS ', description:'ROSA ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:119 }] } ,
  83. {sku:'DIA-0103-244 ', name:'DIADEMA BEIGE CON PERLAS Y FLOR ', description:'BEIGE ', category_id:17, price_sale: 149, price_base: 74.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:149 }] } ,
  84. {sku:'DIA-0134-246 ', name:'DIADEMA FLORES Y MOÑO AMARILLA ', description:'AMARILLA ', category_id:17, price_sale: 179, price_base: 89.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:179 }] } ,
  85. {sku:'DIA-0113-240 ', name:'DIADEMA LUNARES DE COLORES ', description:'COLORES ', category_id:17, price_sale: 99, price_base: 49.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:99 }] } ,
  86. {sku:'DIA-0123-246 ', name:'DIADEMA MOÑO Y CUADROS ', description:'AMARILLA ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:119 }] } ,
  87. {sku:'DIA-0146-243 ', name:'DIADEMA DE PIEDRA ROSA ', description:'ROSA ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:119 }] } ,
  88. {sku:'dia-0138-247 ', name:'DIADEMA LILA Y ROSA FLORES ', description:'LILA Y ROSA ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:189 }] } ,
  89. {sku:'DIA-0070-240 ', name:'DIADEMA RAYAS DE COLORES ', description:'COLORES ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:119 }] } ,
  90. {sku:'LEN-0001-248 ', name:'LENTES GUESS ', description:'VARIOS ', category_id:17, price_sale: 2299, price_base: 1149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:11, price_sale:2299 }] } ,
  91. {sku:'BLS-0108S-S-249 ', name:'BLUSA SATIN CON BOLITAS ROSA ', description:'SROSA Y AMARILLA ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:669 }] } ,
  92. {sku:'BLS-0108L-L-246 ', name:'BLUSA SATIN AMARILLA ', description:'LAMARILLA ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:669 }] } ,
  93. {sku:'BLS-0151S-S-250 ', name:'BLUSA CON MECHITAS BRILLOS ', description:'SROSA,ROJA Y NEGRO ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:869 }] } ,
  94. {sku:'BLS-0151M-M-250 ', name:'BLUSA CON MECHITAS BRILLOS ', description:'MROSA,ROJA Y NEGRO ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:869 }] } ,
  95. {sku:'BLS-0151L-L-250 ', name:'BLUSA CON MECHITAS BRILLOS ', description:'LROSA,ROJA Y NEGRO ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:869 }] } ,
  96. {sku:'BLS-0078-L-253 ', name:'BLUSA PIEL CON CUELLO ALTO ', description:'LMAGENTA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  97. {sku:'B-0101S-S-254 ', name:'PANTIBLUSA GAZA ROSA Y AZUL CBQ ', description:'SROSA Y AZUL ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  98. {sku:'B-0101M-M-254 ', name:'PANTIBLUSA GAZA ROSA Y AZUL CBQ ', description:'MROSA Y AZUL ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:699 }] } ,
  99. {sku:'B-0101L-L-254 ', name:'PATIBLUSA GAZA ROSA Y AZUL CBQ ', description:'LROSA Y AZUL ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:699 }] } ,
  100. {sku:'BLS-0153S-S-259 ', name:'PANTIBLUSA BASICA ROJA Y NEGRA ', description:'SROJA Y NEGRO ', category_id:26, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:399 }] } ,
  101. {sku:'BLS-0153M-M-259 ', name:'PANTIBLUSA BASICA ROJA Y NEGRA ', description:'MROJA Y NEGRO ', category_id:26, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:399 }] } ,
  102. {sku:'BLS-0153L-S-259 ', name:'PANTIBLUSA BASICA ROJA Y NEGRA ', description:'SROJA Y NEGRO ', category_id:26, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:399 }] } ,
  103. {sku:'BLS-0158S-S-260 ', name:'PANTIBLUSA TRANSPARENTE CON ENCAJE ', description:'SNEGRO Y MOSTAZA ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:489 }] } ,
  104. {sku:'BLS-0158M-M-260 ', name:'PANTIBLUSA TRANSPARENTE CON ENCAJE ', description:'MNEGRO Y MOSTAZA ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:489 }] } ,
  105. {sku:'BLS-0126-S-2 ', name:'PLAYERA CON BARABAS EN MANGA ', description:'SNegro ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  106. {sku:'BLS-0128M-M-2 ', name:'PLAYERA LOVE ', description:'MNegro ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  107. {sku:'BLS-0128L-L-2 ', name:'PLAYERA LOVE ', description:'LNegro ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  108. {sku:'BLS-0088-L-2 ', name:'BLUSA NEGRA BASICA ', description:'LNegro ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:469 }] } ,
  109. {sku:'BLS-0141M-M-241 ', name:'PLAYERA MODEL ', description:'MBLANCA ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  110. {sku:'BLS-0141L-L-241 ', name:'PLAYERA MOLDEL ', description:'LBLANCA ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  111. {sku:'FLD-0038-L-2 ', name:'FALDA SHORT DE CUADROS ', description:'LNegro ', category_id:26, price_sale: 749, price_base: 374.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:749 }] } ,
  112. {sku:'FLD-0031-M-239 ', name:'FALDA MEXZCLILLA CON BARBAS A LOS LADOS ', description:'MMEZCLILLA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  113. {sku:'F-0032L-L-252 ', name:'FALDA VOLADA NEGRA CON DETALLE ', description:'LNEGRA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  114. {sku:'FLD-0007M-M-252 ', name:'FALDA VOLADA NEGRA LISA ', description:'MNEGRA ', category_id:26, price_sale: 579, price_base: 289.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:579 }] } ,
  115. {sku:'FLS-0007L-L-252 ', name:'FALDA VOLADA NEGRA LISA ', description:'LNEGRA ', category_id:26, price_sale: 579, price_base: 289.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:579 }] } ,
  116. {sku:'CHA-0024-S-2 ', name:'SACO CON MANGA PRINCESA ', description:'SNegro ', category_id:26, price_sale: 849, price_base: 424.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:849 }] } ,
  117. {sku:'VST-0115-M-262 ', name:'VESTIDO FLORES Y BOLITAS MITAD ', description:'MTINTO ', category_id:26, price_sale: 1189, price_base: 594.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1189 }] } ,
  118. {sku:'VST-0115-L-262 ', name:'VESTIDO FLORES Y BOLITAS MITAD ', description:'LTINTO ', category_id:26, price_sale: 1189, price_base: 594.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1189 }] } ,
  119. {sku:'VE-0048M-M-262 ', name:'VESTIDO TERCIOPELO CBQ ', description:'MTINTO ', category_id:26, price_sale: 949, price_base: 474.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:949 }] } ,
  120. {sku:'VE-0048L-L-2 ', name:'VESTIDO TERCIOPELO CBQ ', description:'LNegro ', category_id:26, price_sale: 949, price_base: 474.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:949 }] } ,
  121. {sku:'PNT-0033M-M-2 ', name:'PANTALON MEZCLILLA TUBO ', description:'MNegro ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  122. {sku:'PNT-0033L-L-239 ', name:'PANTALON MEZCLILLA TUBO ', description:'LMEZCLILLA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  123. {sku:'PNT-0024M-M-1 ', name:'PANTALON VESTIR CON EVILLA DE PIEDRA ', description:'MBlanco ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  124. {sku:'PNT-0025-L-1 ', name:'PANTALON MEZCLILLA CAMPANA ', description:'LBlanco ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  125. {sku:'FLD-0029-M-243 ', name:'FALDA PLISADA PERLAS ', description:'MROSA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  126. {sku:'FLD-0021M-M-5 ', name:'FALDA PLISADA PIEL ', description:'MVerde ', category_id:26, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  127. {sku:'FLD-0021L-L-5 ', name:'FALDA PLISADA PIEL ', description:'LVerde ', category_id:26, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  128. {sku:'CON-0005S-S-240 ', name:'CONJUNTO COLORES PASTEL ', description:'SCOLORES ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  129. {sku:'CON-0005M-M-240 ', name:'CONJUNTO COLORES PASTEL ', description:'MCOLORES ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  130. {sku:'CON-0005L-L-240 ', name:'CONJUNTO COLORES PASTEL ', description:'LCOLORES ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  131. {sku:'VST-0121M-M-263 ', name:'VESTIDO CON MANGA PRINCESA MOSTAZA ', description:'MMOSTAZA ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  132. {sku:'VST-0121L-L-263 ', name:'VESTIDO CON MANGA PRINCESA MOSTAZA ', description:'LMOSTAZA ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  133. {sku:'VST-0101S-S-243 ', name:'VESTIDO SACO SIN MANGA CON CINTO DE PIEDRAS ', description:'SROSA ', category_id:26, price_sale: 769, price_base: 384.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:769 }] } ,
  134. {sku:'VST-0101M-M-243 ', name:'VESTIDO SACO SIN MANGA CON CINTO DE PIEDRAS ', description:'MROSA ', category_id:26, price_sale: 769, price_base: 384.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:769 }] } ,
  135. {sku:'VST-0102L-L-1 ', name:'VESTIDO SACO SIN MANGA CON CINTO DE PIEDRAS ', description:'LBlanco ', category_id:26, price_sale: 769, price_base: 384.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:769 }] } ,
  136. {sku:'BLS-0141M-M-1 ', name:'PLAYERA SORRY IM NOT MODEL ', description:'MBlanco ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  137. {sku:'BLS-0142L-L-1 ', name:'PLAYERA SORRY IM NOT MODEL ', description:'LBlanco ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  138. {sku:'VST-0126S-S-2 ', name:'VESTIDO NEGRO CON LENTEJUELA ARRIBA ', description:'SNegro ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  139. {sku:'VST-0126M-M-2 ', name:'VESTIDO NEGRO CON LENTEJUELA ARRIBA ', description:'MNegro ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  140. {sku:'VST-0125M-M-2 ', name:'VESTIDO PIEL NEGRO CIEN ', description:'MNegro ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  141. {sku:'VE-0052S-S-5 ', name:'VESTIDO CON LETEJUELA VERDE ', description:'SVerde ', category_id:26, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1699 }] } ,
  142. {sku:'VST-0118M-M-243 ', name:'VESTIDO ROSA CON BOLITAS NEGRAS ', description:'MROSA ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  143. {sku:'VST-0118L-L-243 ', name:'VESTIDO ROSA CON BOLITAS NEGRAS ', description:'LROSA ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  144. {sku:'VST-0039S-S-240 ', name:'VESTIDO VOLADO DE COLORES CORTO ', description:'SCOLORES ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  145. {sku:'VST-0039M-M-240 ', name:'VESTIDO VOLADO DE COLORES CORTO ', description:'MCOLORES ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  146. {sku:'VST-0048S-S-2 ', name:'VESTIDO VOLADO NEGRO SIN MANGA ', description:'SNegro ', category_id:26, price_sale: 1345, price_base: 672.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1345 }] } ,
  147. {sku:'VST-0048M-M-2 ', name:'VESTIDO VOLADO NEGRO SIN MANGA ', description:'MNegro ', category_id:26, price_sale: 1345, price_base: 672.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1345 }] } ,
  148. {sku:'VST-0048L-L-2 ', name:'VESTIDO VOLADO NEGRO SIN MANGA ', description:'LNegro ', category_id:26, price_sale: 1345, price_base: 672.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1345 }] } ,
  149. {sku:'VST-0127L-L-244 ', name:'VESTIDO PEGADO BEIGE MANGA GAZA ', description:'LBEIGE ', category_id:26, price_sale: 1109, price_base: 554.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1109 }] } ,
  150. {sku:'VST-0124S-S-4 ', name:'VESTIDO MANGA GAZA ROJO CON EVILLA ', description:'SRojo ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  151. {sku:'VST-0124M-M-4 ', name:'VESTIDO MANGA GAZA ROJO CON EVILLA ', description:'MRojo ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  152. {sku:'VST-0124L-L-4 ', name:'VESTIDO MANGA GAZA ROJO CON EVILLA ', description:'LRojo ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  153. {sku:'FLD-0013S-S-243 ', name:'FALDA PLISADA LOVE ', description:'SROSA ', category_id:26, price_sale: 560, price_base: 280, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:560 }] } ,
  154. {sku:'FLD-0013M-M-243 ', name:'FALDA PLISADA LOVE ', description:'MROSA ', category_id:26, price_sale: 560, price_base: 280, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:560 }] } ,
  155. {sku:'FLD-0013L-L-243 ', name:'FALDA PLISADA LOVE ', description:'LROSA ', category_id:26, price_sale: 560, price_base: 280, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:560 }] } ,
  156. {sku:'PNT-0023L-L-2 ', name:'PANTALON NEGRO DE VESTIR CON EVILLA ', description:'LNegro ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  157. {sku:'VST-0134M-M-243 ', name:'VESTIDO METALICO ROSA ', description:'MROSA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  158. {sku:'ARE-0152-264 ', name:'ARETE ESTRELLA PERLA Y LISTON ', description:'SIN COLOR ', category_id:17, price_sale: 179, price_base: 89.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:179 }] } ,
  159. {sku:'ARE-0116-264 ', name:'ARETES ESTRELLA Y PERLAS DIFERENTES ', description:'SIN COLOR ', category_id:17, price_sale: 269, price_base: 134.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:269 }] } ,
  160. {sku:'ARE-0118-264 ', name:'ARETES DE MARIPOSA Y PIEDRAS ', description:'SIN COLOR ', category_id:17, price_sale: 199, price_base: 99.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:199 }] } ,
  161. {sku:'ARE-0138-264 ', name:'ARETE ESTRELLA Y PIEDRA ', description:'SIN COLOR ', category_id:17, price_sale: 229, price_base: 114.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  162. {sku:'ARE-0146M-264 ', name:'ARETE ARCOIRIS ', description:'SIN COLOR ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  163. {sku:'ARE-0091-264 ', name:'ARETE ESTRELLA COLGANTE ', description:'SIN COLOR ', category_id:17, price_sale: 310, price_base: 155, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:310 }] } ,
  164. {sku:'ARE-0027-264 ', name:'ARETE DE CORAZON CON BRILLANTES DIF ', description:'SIN COLOR ', category_id:17, price_sale: 379, price_base: 189.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:379 }] } ,
  165. {sku:'ARE-0119-264 ', name:'ARETE CON ESTRELLA CON PERLAS DIF ', description:'SIN COLOR ', category_id:17, price_sale: 269, price_base: 134.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:269 }] } ,
  166. {sku:'ARE-0021-264 ', name:'ARETE DE CORAZON DORADO ', description:'SIN COLOR ', category_id:17, price_sale: 180, price_base: 90, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:180 }] } ,
  167. {sku:'ARE-0127-264 ', name:'ARETES MARIPOSA ', description:'SIN COLOR ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  168. {sku:'ARE-0108-264 ', name:'ARETE ESTRELLA CON PERLA ', description:'SIN COLOR ', category_id:17, price_sale: 269, price_base: 134.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:269 }] } ,
  169. {sku:'ARE-0186-264 ', name:'ARETE TRABA Y ESTRELLA ', description:'SIN COLOR ', category_id:17, price_sale: 169, price_base: 84.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:169 }] } ,
  170. {sku:'ARE-0140-264 ', name:'ARETE TORNASOL ', description:'SIN COLOR ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  171. {sku:'ARE-0001-264 ', name:'ARETES VARIOS ', description:'SIN COLOR ', category_id:17, price_sale: 249, price_base: 124.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:249 }] } ,
  172. {sku:'ARE-0111M-264 ', name:'ARETE CORAZON CON MOÑO NEGRO ', description:'SIN COLOR ', category_id:17, price_sale: 129, price_base: 64.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:129 }] } ,
  173. {sku:'ARE-0090-264 ', name:'ARETES DE FLORES AMARILLAS ', description:'SIN COLOR ', category_id:17, price_sale: 169, price_base: 84.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:169 }] } ,
  174. {sku:'ARE-0155-264 ', name:'ARETES MARIPOSA PLATA ', description:'SIN COLOR ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  175. {sku:'ARE-0156-264 ', name:'ARETE ESTRELLA ARRIBA Y ABAJO ', description:'SIN COLOR ', category_id:17, price_sale: 230, price_base: 115, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:230 }] } ,
  176. {sku:'ARE-0037-264 ', name:'ARETE LENTEJUELA Y PIEDRAS ', description:'SIN COLOR ', category_id:17, price_sale: 259, price_base: 129.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:259 }] } ,
  177. {sku:'ARE-0159-264 ', name:'ARETE DE CRUZ ', description:'SIN COLOR ', category_id:17, price_sale: 139, price_base: 69.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:139 }] } ,
  178. {sku:'ARE-011-264 ', name:'ARETE VERDE FLOR Y CORAZON ', description:'SIN COLOR ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  179. {sku:'ARE-0164-264 ', name:'ARETE DE ESTRELLA DE COLORES ', description:'SIN COLOR ', category_id:17, price_sale: 139, price_base: 69.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:139 }] } ,
  180. {sku:'ARE-0184-264 ', name:'ARETES FLORES DE PIEDRAS ', description:'SIN COLOR ', category_id:17, price_sale: 149, price_base: 74.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:149 }] } ,
  181. {sku:'ARE-0137-264 ', name:'ARETE DE CORAZÓN CON PIEDRA Y PERLA ', description:'SIN COLOR ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  182. {sku:'ARE-01161-264 ', name:'ARETE LOVE ', description:'SIN COLOR ', category_id:17, price_sale: 229, price_base: 114.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  183. {sku:'ARE-0170-264 ', name:'ARETE PERLA FLOR ', description:'SIN COLOR ', category_id:17, price_sale: 179, price_base: 89.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:179 }] } ,
  184. {sku:'ARE-0150-264 ', name:'ARETE CORAZÓN PIEDRAS PLATA ', description:'SIN COLOR ', category_id:17, price_sale: 289, price_base: 144.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:289 }] } ,
  185. {sku:'ARE-0015-264 ', name:'ARETE PLATA LARGO DE HOJA ', description:'SIN COLOR ', category_id:17, price_sale: 320, price_base: 160, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:320 }] } ,
  186. {sku:'ARE-0049-264 ', name:'ARETE CORAZÓN PIEDRAS PLATA ', description:'SIN COLOR ', category_id:17, price_sale: 249, price_base: 124.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:249 }] } ,
  187. {sku:'ARE-0161-264 ', name:'ARETE LUNA Y ESTRELLAS ', description:'SIN COLOR ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  188. {sku:'ARE-01361-264 ', name:'ARETE CHAMPANE ', description:'SIN COLOR ', category_id:17, price_sale: 249, price_base: 124.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:249 }] } ,
  189. {sku:'ARE-0053-264 ', name:'ARETE CORAZÓN PERLA ', description:'SIN COLOR ', category_id:17, price_sale: 229, price_base: 114.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  190. {sku:'ARE-0104-264 ', name:'ARETE CORAZONCITOS PIEDRA ', description:'SIN COLOR ', category_id:17, price_sale: 199, price_base: 99.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:199 }] } ,
  191. {sku:'ARE-0115-264 ', name:'ARETE CORAZON DORADO ', description:'SIN COLOR ', category_id:17, price_sale: 229, price_base: 114.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  192. {sku:'ARE-0042-264 ', name:'ARETES DE PIEDRAS FORMA GOTAS ', description:'SIN COLOR ', category_id:17, price_sale: 199, price_base: 99.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:199 }] } ,
  193. {sku:'ARE-0146-264 ', name:'ARETES ESTRELLA DIF Y TIRA ', description:'SIN COLOR ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  194. {sku:'ARE-0139-264 ', name:'ARETE MARIPOSA LILA ', description:'SIN COLOR ', category_id:17, price_sale: 89, price_base: 44.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:89 }] } ,
  195. {sku:'ARE-0111-264 ', name:'ARETE CADENA PIEDRAS ', description:'SIN COLOR ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  196. {sku:'ARE-0113-264 ', name:'ARETE CORAZON FLORES DE COLORES ', description:'SIN COLOR ', category_id:17, price_sale: 320, price_base: 160, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:320 }] } ,
  197. {sku:'VST-0051-S-2 ', name:'VESTIDO NEGRO PLISADO ', description:'SNegro ', category_id:26, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  198. {sku:'VST-0012-S-2 ', name:'VESTIDO PEGADO CON ENCAJE ARRIBA ', description:'SNegro ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:999 }] } ,
  199. {sku:'V-0024-L-240 ', name:'VESTIDO COLORES NEON ', description:'LCOLORES ', category_id:26, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  200. {sku:'BLS-0135-UNITALLA-1 ', name:'BLUSA GAZA BLANCA ', description:'UNITALLABlanco ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:499 }] } ,
  201. {sku:'CH-0022L-L-240 ', name:'SUETER COLORES LELIS ', description:'LCOLORES ', category_id:26, price_sale: 789, price_base: 394.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:789 }] } ,
  202. {sku:'PNT-0024-M-1 ', name:'PANTALON CON EVILLA BLACO ', description:'MBlanco ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  203. {sku:'PN T-0011S-S-243 ', name:'PANTALON RAYAS MUY MUY ', description:'SROSA ', category_id:26, price_sale: 569, price_base: 284.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:569 }] } ,
  204. {sku:'PNT-0027-L-263 ', name:'PANTALON MOSTAZA ', description:'LMOSTAZA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  205. {sku:'CHA-0015XL-XL-271 ', name:'CHAMARRA ROSA Y METAL ', description:'XLROSA Y METAL ', category_id:26, price_sale: 1669, price_base: 834.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1669 }] } ,
  206. {sku:'BLU-0072S-S-255 ', name:'BLUSA DE ENCAJE AZUL REY ', description:'SAZUL REY ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  207. {sku:'BLU-0072M-M-255 ', name:'BLUSA DE ENCAJE AZUL REY ', description:'MAZUL REY ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  208. {sku:'BLU-0072L-L-255 ', name:'BLUSA DE ENCAJE AZUL REY ', description:'LAZUL REY ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:699 }] } ,
  209. {sku:'DIA-0163-243 ', name:'DIADEMA DE ENCAJE CON PERLAS ROSA ', description:'ROSA ', category_id:17, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:549 }] } ,
  210. {sku:'DIA-0140-273 ', name:'DIADEMA CON MOÑO Y PERLAS ', description:'ROSA Y MENTA ', category_id:17, price_sale: 159, price_base: 79.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:159 }] } ,
  211. {sku:'DIA-0144-274 ', name:'DIADEMA AZUL CON PERLAS ', description:'AZUL ', category_id:17, price_sale: 110, price_base: 55, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:110 }] } ,
  212. {sku:'DIA-0099-275 ', name:'DIADEMA DULCES ', description:'AZUL MARINO ', category_id:17, price_sale: 139, price_base: 69.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:139 }] } ,
  213. {sku:'DIA-0118-2 ', name:'DIADEMA UVAS ', description:'Negro ', category_id:17, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:399 }] } ,
  214. {sku:'DIA-0117-276 ', name:'DIADEMA PEDRERIA ', description:'ROSA,VERDE ', category_id:17, price_sale: 429, price_base: 214.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:429 }] } ,
  215. {sku:'DIA-0041-240 ', name:'DIADEMA 3 FLORES COLORES ', description:'COLORES ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  216. {sku:'DIA-0040-277 ', name:'DIADEMA DOBLE FLORES ORO ROSADO ', description:'ORO ROSADO ', category_id:17, price_sale: 299, price_base: 149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  217. {sku:'DIA-0133-240 ', name:'DIADEMA FLORES CON PIEDRAS ', description:'COLORES ', category_id:17, price_sale: 449, price_base: 224.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:449 }] } ,
  218. {sku:'1BICV20300AMA-246 ', name:'CARTERA CLOE AMARILLA ', description:'AMARILLA ', category_id:4, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  219. {sku:'1BICV20300BLA-241 ', name:'CARTERA CLOE BLANCA ', description:'BLANCA ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  220. {sku:'2BICO20732NEG-2 ', name:'CARTERA CON CADENA CHICA ', description:'Negro ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  221. {sku:'2BICO20733NEG-2 ', name:'CARTERA CON CADENA GRANDE ', description:'Negro ', category_id:4, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  222. {sku:'2BICV20356NEG-2 ', name:'CARTERA CON LETRA BLANCA ', description:'Negro ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  223. {sku:'2BICV20330CAM-278 ', name:'CARTERA CAMEL TARJETERO CHICO ', description:'CAMEL ', category_id:4, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:799 }] } ,
  224. {sku:'SIGR572-256 ', name:'CARTERA PLATA ', description:'PLATA ', category_id:4, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  225. {sku:'DOGA599NEGRGR-252 ', name:'BOLSO PORTA LAPTOP NAGRA ', description:'NEGRA ', category_id:6, price_sale: 1899, price_base: 949.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1899 }] } ,
  226. {sku:'OHIP174GRISGR-238 ', name:'BOLSO GRIS CON EVILLA ORO ROSADO ', description:'GRIS ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1699 }] } ,
  227. {sku:'LIGE762OOROGR-280 ', name:'BOLSO ORO CON RAYAS ', description:'ORO ', category_id:6, price_sale: 1899, price_base: 949.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1899 }] } ,
  228. {sku:'UXDI214ROSAGR-243 ', name:'BOLSA ROSA CON FLORES ', description:'ROSA ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  229. {sku:'1BLCV20286PET-3 ', name:'BACK PACK LISA CON LLAVERO AMARILLO ', description:'Azul ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  230. {sku:'SODI148TINGR-272 ', name:'BACK PACK TINTO CON EVILLA DORADA ', description:'TINTA ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  231. {sku:'1BLCI19304NEG-252 ', name:'CANGURERA CON EVILLA PLATA ', description:'NEGRA ', category_id:27, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:1199 }] } ,
  232. {sku:'MIGE626OCREME-263 ', name:'CROSSBODY KEEP MOVING ', description:'MOSTAZA ', category_id:6, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  233. {sku:'3BLCV20446NEG7509170824469-2 ', name:'CROSBODY MEDIO CIRCULO ', description:'Negro ', category_id:6, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1299 }] } ,
  234. {sku:'1BLCP20938ROS-243 ', name:'CROSBODY DOBLE COLOR ROSA ', description:'ROSA ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  235. {sku:'1BLCP20934NEG-2 ', name:'BACK PACK NEGRO CON EVILLA ORO ROSADO ', description:'Negro ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  236. {sku:'3BLCV20454NEG-2 ', name:'BOLSO CROSSBODY TELA PLASTICO ', description:'Negro ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  237. {sku:'1BLCV20265AMA-6 ', name:'CROSSBODY CON CADENA PLASTICO ', description:'Amarillo ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  238. {sku:'4BLCV20513MUL-279 ', name:'BACK PACK TANA GAXIOLA ', description:'MULTICOLOR ', category_id:6, price_sale: 1999, price_base: 999.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1999 }] } ,
  239. {sku:'3BLCV20442INO-282 ', name:'CROSSBODY TIPO CARTERA DOS CIERRES ', description:'INOX ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  240. {sku:'3BLCV20442ORO-283 ', name:'CROSSBODY TIPO CARTERA DOS CIERRES ', description:'ORO ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1499 }] } ,
  241. {sku:'1BICO20964NEG-243 ', name:'CARTERA CROSSBODY EVILLA PLASTICO ', description:'ROSA ', category_id:4, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  242. {sku:'2BICV20327NUD-244 ', name:'CARTERA CROSSBODY CON CADENA ', description:'BEIGE ', category_id:4, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  243. {sku:'2BLCV20506GRI-238 ', name:'BACK PACK TELA CHAMARRA ', description:'GRIS ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  244. {sku:'2BLCO20751NEG-2 ', name:'BACK PACK CON LETRAS GRABADAS ', description:'Negro ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  245. {sku:'2BLCO20751MOR-253 ', name:'BACK PACK CON LETRAS GRABADAS ', description:'MAGENTA ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  246. {sku:'2BLCV20504NEG-2 ', name:'CROSSBODY TELA CHAMARRA ', description:'Negro ', category_id:6, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  247. {sku:'2BLCV20504ROS-243 ', name:'CROSSBODY TELA CHAMARRA ', description:'ROSA ', category_id:6, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1399 }] } ,
  248. {sku:'2BLCO20749BLA-1 ', name:'BACK PACK DE TELA CON GRABADO ', description:'Blanco ', category_id:6, price_sale: 2199, price_base: 1099.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:2199 }] } ,
  249. {sku:'2BLCO20749NEG-2 ', name:'BACK PACK DE TELA CON GRABADO ', description:'Negro ', category_id:6, price_sale: 2199, price_base: 1099.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:2199 }] } ,
  250. {sku:'2BLCV20364NUD-284 ', name:'BACK PACK NUDE LIMON ', description:'NUDE ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  251. {sku:'1BLCP20933ROS-243 ', name:'CROSSBODY ROSA CON DETALLES ORO ROSADO ', description:'ROSA ', category_id:6, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1299 }] } ,
  252. {sku:'1BLCV20286MUL-279 ', name:'BACK PACK LISA CON LLAVERO AMARILLO ', description:'MULTICOLOR ', category_id:6, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  253. {sku:'1BLCO20632NEG-2 ', name:'BACK PACK TELA CHAMARRA NEGRA ', description:'Negro ', category_id:6, price_sale: 2099, price_base: 1049.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:2099 }] } ,
  254. {sku:'1BLCV20280NEG-2 ', name:'BACK PACK GRANDE LETRAS AMARILLA ', description:'Negro ', category_id:6, price_sale: 1899, price_base: 949.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1899 }] } ,
  255. {sku:'2BLCO20738NEG-2 ', name:'CROSSBODY TIPO MALETIN ', description:'Negro ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:5, price_sale:1499 }] } ,
  256. {sku:'2BLCO20738NUD-284 ', name:'CROSSBODY TIPO MALETIN ', description:'NUDE ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1499 }] } ,
  257. {sku:'2BLCO207358VER-5 ', name:'CROSSBODY TIPO MALETIN ', description:'Verde ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  258. {sku:'1BLCV20295AMA-285 ', name:'CROSSBODY COLORES ', description:'AMARILO ', category_id:6, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:999 }] } ,
  259. {sku:'1BLCP20964ROS-243 ', name:'CROSBODY LETRAS ROSAS CON CADENA DORADA ', description:'ROSA ', category_id:6, price_sale: 1999, price_base: 999.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1999 }] } ,
  260. {sku:'1BLCV20259MAG-253 ', name:'CROSSBODY TRANSPARENTE COLOR MAGENTA ', description:'MAGENTA ', category_id:6, price_sale: 1899, price_base: 949.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1899 }] } ,
  261. {sku:'1BLCV20275NE-2 ', name:'BACK PACK CON LETRAS GRABADAS EN LA BOLSA ', description:'Negro ', category_id:6, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1599 }] } ,
  262. {sku:'1BLCV20269NEG-2 ', name:'BACK PACK CON EVILLA PLATA ', description:'Negro ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  263. {sku:'3BLCV20449OCR-6 ', name:'BOLSO CON PAÑUELO DE FLORES ', description:'Amarillo ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1699 }] } ,
  264. {sku:'1BLCI19278NEG-2 ', name:'BOLSO GRANDE NEGRO CON RAYAS ', description:'Negro ', category_id:6, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  265. {sku:'2BLCV20398-278 ', name:'CROSSBODY CAMEL CON PAÑUELO ', description:'CAMEL ', category_id:6, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1299 }] } ,
  266. {sku:'AYHAM3.5-2 ', name:'AYHAM ', description:'Negro ', category_id:28, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:1599 }] } ,
  267. {sku:'AYHAM4-2 ', name:'AYHAM ', description:'Negro ', category_id:28, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1599 }] } ,
  268. {sku:'AYHAM4.5-2 ', name:'AYHAM ', description:'Negro ', category_id:28, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:1599 }] } ,
  269. {sku:'AYHAM5-2 ', name:'AYHAM ', description:'Negro ', category_id:28, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1599 }] } ,
  270. {sku:'CONQUES3-243 ', name:'CONQUES ', description:'ROSA ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1499 }] } ,
  271. {sku:'CONQUES3.5-243 ', name:'CONQUES ', description:'ROSA ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  272. {sku:'BEAK778-2 ', name:'BEAK778 ', description:'Negro ', category_id:30, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  273. {sku:'BRISTOL3-284 ', name:'BRISTOL ', description:'NUDE ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  274. {sku:'BRISTOL4-284 ', name:'BRISTOL ', description:'NUDE ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  275. {sku:'BRISTOL5-284 ', name:'BRISTOL ', description:'NUDE ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  276. {sku:'BRISTOL6-284 ', name:'BRISTOL ', description:'NUDE ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  277. {sku:'MADX690-281 ', name:'MADX690 ', description:'ELECTRICO ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  278. {sku:'CESKY-284 ', name:'CESKY ', description:'NUDE ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1499 }] } ,
  279. {sku:'DIRAR6-243 ', name:'DIRAR ', description:'ROSA ', category_id:30, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1799 }] } ,
  280. {sku:'MEIJAM4-2 ', name:'MEIJAM ', description:'Negro ', category_id:30, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1699 }] } ,
  281. {sku:'REINE6-256 ', name:'REINE ', description:'PLATA ', category_id:30, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1599 }] } ,
  282. {sku:'LAET-2 ', name:'LAET ', description:'Negro ', category_id:30, price_sale: 2399, price_base: 1199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:2399 }] } ,
  283. {sku:'IALYM4.5-243 ', name:'IALYM ', description:'ROSA ', category_id:30, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  284. {sku:'IALUM6-243 ', name:'IALYM ', description:'ROSA ', category_id:30, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  285. {sku:'PHERN-238 ', name:'PHERN ', description:'GRIS ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  286. {sku:'LENKIA6-3 ', name:'LENKIA ', description:'Azul ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  287. {sku:'LENKIA4-5 ', name:'LENKIA ', description:'Verde ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  288. {sku:'LENKIA4.5-5 ', name:'LENKIA ', description:'Verde ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  289. {sku:'LENKIA5-5 ', name:'LENKIA ', description:'Verde ', category_id:30, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1399 }] } ,
  290. {sku:'JUNAI5.5NEG-2 ', name:'JUNAI ', description:'Negro ', category_id:30, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  291. {sku:'JUNAI3-4 ', name:'JUNAI ', description:'Rojo ', category_id:30, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  292. {sku:'JUNAI4.5-4 ', name:'JUNAI ', description:'Rojo ', category_id:30, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  293. {sku:'JUNAI6-4 ', name:'JUNAI ', description:'Rojo ', category_id:30, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  294. {sku:'GURMA4-1 ', name:'GURMA ', description:'Blanco ', category_id:30, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  295. {sku:'GURMA4.5-1 ', name:'GURMA ', description:'Blanco ', category_id:30, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  296. {sku:'GURMA5-1 ', name:'GURMA ', description:'Blanco ', category_id:30, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  297. {sku:'MADX4.5AMA-6 ', name:'MADX690 ', description:'Amarillo ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  298. {sku:'MADX5.5AMA-6 ', name:'MADX690 ', description:'Amarillo ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  299. {sku:'MADX4CORAL-286 ', name:'MADX690 ', description:'CORAL ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  300. {sku:'MADX4.5CORAL-286 ', name:'MADX690 ', description:'CORAL ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  301. {sku:'MADX5CORAL-286 ', name:'MADX690 ', description:'CORAL ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  302. {sku:'KATIXA3.5-262 ', name:'KATIXA ', description:'TINTO ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  303. {sku:'KATIXA4-262 ', name:'KATIXA ', description:'TINTO ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  304. {sku:'YGUT4-262 ', name:'KATIXA ', description:'TINTO ', category_id:30, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1599 }] } ,
  305. {sku:'YGUT4.5-262 ', name:'KATIXA ', description:'TINTO ', category_id:30, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1599 }] } ,
  306. {sku:'YGUT5.5-262 ', name:'KATIXA ', description:'TINTO ', category_id:30, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1599 }] } ,
  307. {sku:'DIA-0001 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 369, price_base: 67.37, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:14, price_sale:369 }] } ,
  308. {sku:'DIA-0096 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 189, price_base: 45.93, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:189 }] } ,
  309. {sku:'DIA-0002 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 119, price_base: 35.8, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:119 }] } ,
  310. {sku:'DIA-0003 ', name:'DIADEMA ', description:'Rojo ', category_id:17, price_sale: 129, price_base: 46.34, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:129 }] } ,
  311. {sku:'DIA-0004 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 239, price_base: 93.65, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:239 }] } ,
  312. {sku:'DIA-0005 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 229, price_base: 71.3, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  313. {sku:'DIA-0006 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 529, price_base: 211.99, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:529 }] } ,
  314. {sku:'DIA-0009 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 269, price_base: 88.85, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:269 }] } ,
  315. {sku:'DIA-0010 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 299, price_base: 114.83, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  316. {sku:'DIA-0011 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 329, price_base: 122.61, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:329 }] } ,
  317. {sku:'DIA-0013 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 229, price_base: 87.99, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  318. {sku:'DIA-0015 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 199, price_base: 77.68, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:199 }] } ,
  319. {sku:'DIA-0017 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 239, price_base: 88.4, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:239 }] } ,
  320. {sku:'DIA-0019 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 189, price_base: 54.41, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:189 }] } ,
  321. {sku:'DIA-0022 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 389, price_base: 142.01, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:389 }] } ,
  322. {sku:'DIA-0160 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 389, price_base: 146.93, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:389 }] } ,
  323. {sku:'DIA-0161 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 429, price_base: 172.63, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:429 }] } ,
  324. {sku:'DIA-0162 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 449, price_base: 177.41, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:449 }] } ,
  325. {sku:'DIA-0163 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 249, price_base: 127.44, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:249 }] } ,
  326. {sku:'DIA-0164 ', name:'DIADEMA ', description:'ROSA ', category_id:17, price_sale: 239, price_base: 119.35, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:239 }] } ,
  327. {sku:'DIA-0165 ', name:'DIADEMA ', description:'ROSA ', category_id:17, price_sale: 189, price_base: 83.95, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  328. {sku:'DIA-0166 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 529, price_base: 209.17, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  329. {sku:'DIA-0168 ', name:'DIADEMA ', description:'Blanco ', category_id:17, price_sale: 469, price_base: 172.96, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:469 }] } ,
  330. {sku:'DIA-0171 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 389, price_base: 85.36, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:389 }] } ,
  331. {sku:'DIA-0172 ', name:'DIADEMA ', description:'ROSA ', category_id:17, price_sale: 499, price_base: 208.36, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  332. {sku:'DIA-0173 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 519, price_base: 217.06, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:519 }] } ,
  333. {sku:'DIA-0174 ', name:'DIADEMA ', description:'ROSA ', category_id:17, price_sale: 579, price_base: 232.64, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:579 }] } ,
  334. {sku:'DIA-0175 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 169, price_base: 49.76, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:169 }] } ,
  335. {sku:'DIA-0176 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 159, price_base: 63.72, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:159 }] } ,
  336. {sku:'DIA-0178 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 169, price_base: 44.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:169 }] } ,
  337. {sku:'DIA-0179 ', name:'DIADEMA ', description:'ROSA ', category_id:17, price_sale: 479, price_base: 185.7, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:479 }] } ,
  338. {sku:'DIA-0181 ', name:'DIADEMA ', description:'Negro ', category_id:17, price_sale: 399, price_base: 130.27, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:399 }] } ,
  339. {sku:'DIA-0183 ', name:'DIADEMA ', description:'ROSA ', category_id:17, price_sale: 115, price_base: 46.12, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:115 }] } ,
  340. {sku:'DIA-0185 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 149, price_base: 42.48, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:149 }] } ,
  341. {sku:'DIA-0186 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 299, price_base: 113.28, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:299 }] } ,
  342. {sku:'DIA-0187 ', name:'DIADEMA ', description:'VARIOS ', category_id:17, price_sale: 389, price_base: 97.7, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:389 }] } ,
  343. {sku:'ARE-0187 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 329, price_base: 139.8, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:329 }] } ,
  344. {sku:'ARE-0189 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 99, price_base: 40.35, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:99 }] } ,
  345. {sku:'ARE-0190 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 229, price_base: 54.8, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  346. {sku:'ARE-0194 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 269, price_base: 63.42, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:269 }] } ,
  347. {sku:'ARE-0195 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 169, price_base: 47.62, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:169 }] } ,
  348. {sku:'ARE-0196 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 119, price_base: 42.88, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:119 }] } ,
  349. {sku:'ARE-0199 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 189, price_base: 60.55, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  350. {sku:'ARE-0200 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 219, price_base: 46.95, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:219 }] } ,
  351. {sku:'ARE-0202 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 320, price_base: 73.02, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:320 }] } ,
  352. {sku:'ARE-0203 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 149, price_base: 37.82, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:149 }] } ,
  353. {sku:'ARE-0204 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 139, price_base: 35.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:139 }] } ,
  354. {sku:'ARE-0205 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 219, price_base: 45.92, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:219 }] } ,
  355. {sku:'ARE-0206 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 269, price_base: 49.35, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:269 }] } ,
  356. {sku:'ARE-0207 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 89, price_base: 28.72, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:89 }] } ,
  357. {sku:'ARE-0208 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 320, price_base: 52.59, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:320 }] } ,
  358. {sku:'ARE-0209 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 229, price_base: 64.32, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  359. {sku:'ARE-0210 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 139, price_base: 55.02, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:139 }] } ,
  360. {sku:'ARE-0211 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 139, price_base: 37.82, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:139 }] } ,
  361. {sku:'ARE-0212 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 210, price_base: 39.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:210 }] } ,
  362. {sku:'ARE-0213 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 230, price_base: 56.64, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:230 }] } ,
  363. {sku:'ARE-0214 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 230, price_base: 53.52, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:230 }] } ,
  364. {sku:'ARE-0215 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 220, price_base: 49.76, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:220 }] } ,
  365. {sku:'ARE-0216 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 280, price_base: 84.55, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:280 }] } ,
  366. {sku:'ARE-0217 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 320, price_base: 79.09, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:320 }] } ,
  367. {sku:'ARE-0218 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 239, price_base: 72.62, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:239 }] } ,
  368. {sku:'ARE-0219 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 109, price_base: 27.43, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:109 }] } ,
  369. {sku:'ARE-0220 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 260, price_base: 62.3, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:260 }] } ,
  370. {sku:'ARE-0221 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 249, price_base: 47.33, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:249 }] } ,
  371. {sku:'ARE-0222 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 259, price_base: 92.24, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:259 }] } ,
  372. {sku:'ARE-0223 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 259, price_base: 78.28, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:259 }] } ,
  373. {sku:'ARE-0224 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 199, price_base: 40.25, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:199 }] } ,
  374. {sku:'ARE-0225 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 129, price_base: 37, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:129 }] } ,
  375. {sku:'ARE-0226 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 169, price_base: 45.84, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:169 }] } ,
  376. {sku:'ARE-0227 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 189, price_base: 37.22, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:189 }] } ,
  377. {sku:'ARE-0228 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 220, price_base: 37.22, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:220 }] } ,
  378. {sku:'ARE-0229 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 320, price_base: 88, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:320 }] } ,
  379. {sku:'ARE-0230 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 149, price_base: 42.49, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:149 }] } ,
  380. {sku:'ARE-0231 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 179, price_base: 44.09, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:179 }] } ,
  381. {sku:'CIN-0001 ', name:'CINTO ', description:'VARIOS ', category_id:17, price_sale: 320, price_base: 104, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:4, price_sale:320 }] } ,
  382. {sku:'CIN-0002 ', name:'CINTO ', description:'VARIOS ', category_id:17, price_sale: 349, price_base: 120.9, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:349 }] } ,
  383. {sku:'CIN-0003 ', name:'CINTO ', description:'VARIOS ', category_id:17, price_sale: 280, price_base: 83.7, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:280 }] } ,
  384. {sku:'CIN-0004 ', name:'CINTO ', description:'VARIOS ', category_id:17, price_sale: 369, price_base: 130.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:369 }] } ,
  385. {sku:'CIN-0005 ', name:'CINTO ', description:'VARIOS ', category_id:17, price_sale: 349, price_base: 111.6, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:349 }] } ,
  386. {sku:'CIN-0006 ', name:'CINTO ', description:'VARIOS ', category_id:17, price_sale: 269, price_base: 106.95, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:269 }] } ,
  387. {sku:'CIN-0007 ', name:'CINTO ', description:'NEGRO ', category_id:17, price_sale: 369, price_base: 144.15, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:369 }] } ,
  388. {sku:'CIN-0008 ', name:'CINTO ', description:'NEGRO Y BLANCO ', category_id:17, price_sale: 289, price_base: 93, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:289 }] } ,
  389. {sku:'CIN-0009 ', name:'CINTO ', description:'Negro ', category_id:17, price_sale: 339, price_base: 120.9, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:339 }] } ,
  390. {sku:'CIN-0010 ', name:'CINTO ', description:'Negro ', category_id:17, price_sale: 229, price_base: 83.7, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:229 }] } ,
  391. {sku:'CIN-0011 ', name:'CINTO ', description:'Negro ', category_id:17, price_sale: 239, price_base: 69.75, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:239 }] } ,
  392. {sku:'CIN-0012 ', name:'CINTO ', description:'Rojo ', category_id:17, price_sale: 299, price_base: 120.9, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:299 }] } ,
  393. {sku:'CIN-0013 ', name:'CINTO ', description:'Rojo ', category_id:17, price_sale: 229, price_base: 93, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:229 }] } ,
  394. {sku:'CON-0008S ', name:'CONJUNTO FALDA Y BLUSA BLANCO ', description:'CHICABlanco ', category_id:26, price_sale: 1099, price_base: 437, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  395. {sku:'CON-0008M ', name:'CONJUNTO FALDA Y BLUSA BLANCO ', description:'MEDIANABlanco ', category_id:26, price_sale: 1099, price_base: 437, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  396. {sku:'CON-0008L ', name:'CONJUNTO FALDA Y BLUSA BLANCO ', description:'GRANDEBlanco ', category_id:26, price_sale: 1099, price_base: 437, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  397. {sku:'CON-0009S ', name:'CONJUNTO FALDA Y BLUSA BLANCO ', description:'CHICABlanco ', category_id:26, price_sale: 999, price_base: 390, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  398. {sku:'CON-0009M ', name:'CONJUNTO FALDA Y BLUSA BLANCO ', description:'MEDIANABlanco ', category_id:26, price_sale: 999, price_base: 390, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  399. {sku:'CON-0009L ', name:'CONJUNTO FALDA Y BLUSA BLANCO ', description:'GRANDEBlanco ', category_id:26, price_sale: 999, price_base: 390, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  400. {sku:'CON-0010S ', name:'CONJUNTO SHORT Y BLUSA BEIGE ', description:'CHICABEIGE ', category_id:26, price_sale: 1259, price_base: 503, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1259 }] } ,
  401. {sku:'CON-0010M ', name:'CONJUNTO SHORT Y BLUSA BEIGE ', description:'MEDIANABEIGE ', category_id:26, price_sale: 1259, price_base: 503, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1259 }] } ,
  402. {sku:'CON-0010L ', name:'CONJUNTO SHORT Y BLUSA BEIGE ', description:'GRANDEBEIGE ', category_id:26, price_sale: 1259, price_base: 503, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1259 }] } ,
  403. {sku:'VST-0136S ', name:'VESTIDO DE ENCAJE BLANCO ', description:'CHICABlanco ', category_id:26, price_sale: 1089, price_base: 419, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  404. {sku:'VST-0136M ', name:'VESTIDO DE ENCAJE BLANCO ', description:'MEDIANABlanco ', category_id:26, price_sale: 1089, price_base: 419, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  405. {sku:'VST-0136L ', name:'VESTIDO DE ENCAJE BLANCO ', description:'GRANDEBlanco ', category_id:26, price_sale: 1089, price_base: 419, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  406. {sku:'VST-0137S ', name:'VESTIDO VERDE MENTA ', description:'CHICAMENTA ', category_id:26, price_sale: 1089, price_base: 418, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  407. {sku:'VST-0137M ', name:'VESTIDO VERDE MENTA ', description:'MEDIANAMENTA ', category_id:26, price_sale: 1089, price_base: 418, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1089 }] } ,
  408. {sku:'VST-0137L ', name:'VESTIDO VERDE MENTA ', description:'GRANDEMENTA ', category_id:26, price_sale: 1089, price_base: 418, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  409. {sku:'VST-0138S ', name:'VESTIDO ROSA ', description:'CHICAROSA ', category_id:26, price_sale: 1089, price_base: 428, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1089 }] } ,
  410. {sku:'VST-0138M ', name:'VESTIDO ROSA ', description:'MEDIANAROSA ', category_id:26, price_sale: 1089, price_base: 428, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1089 }] } ,
  411. {sku:'VST-0138L ', name:'VESTIDO ROSA ', description:'GRANDEROSA ', category_id:26, price_sale: 1089, price_base: 428, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1089 }] } ,
  412. {sku:'VST-0139S ', name:'VESTIDO AMARILLO Y VERDE ', description:'CHICAAMARILLO Y VERDE ', category_id:26, price_sale: 1069, price_base: 429, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1069 }] } ,
  413. {sku:'VST-0139M ', name:'VESTIDO AMARILLO Y VERDE ', description:'MEDIANAAMARILLO Y VERDE ', category_id:26, price_sale: 1069, price_base: 429, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1069 }] } ,
  414. {sku:'VST-0139L ', name:'VESTIDO AMARILLO Y VERDE ', description:'GRANDEAMARILLO Y VERDE ', category_id:26, price_sale: 1069, price_base: 429, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1069 }] } ,
  415. {sku:'VST-0140S ', name:'VESTIDO BLANCO ', description:'CHICABlanco ', category_id:26, price_sale: 969, price_base: 363, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:969 }] } ,
  416. {sku:'VST-0140M ', name:'VESTIDO BLANCO ', description:'MEDIANABlanco ', category_id:26, price_sale: 969, price_base: 363, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:969 }] } ,
  417. {sku:'VST-0140L ', name:'VESTIDO BLANCO ', description:'GRANDEBlanco ', category_id:26, price_sale: 969, price_base: 363, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:969 }] } ,
  418. {sku:'BLS-0168S ', name:'BLUSA BUGAMBILIA ', description:'CHICABUGAMBILIA ', category_id:26, price_sale: 729, price_base: 294, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:729 }] } ,
  419. {sku:'BLS-0168M ', name:'BLUSA BUGAMBILIA ', description:'MEDIANABUGAMBILIA ', category_id:26, price_sale: 729, price_base: 294, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:729 }] } ,
  420. {sku:'BLS-0168L ', name:'BLUSA BUGAMBILIA ', description:'GRANDEBUGAMBILIA ', category_id:26, price_sale: 729, price_base: 294, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:729 }] } ,
  421. {sku:'BLS-0169S ', name:'BLUSA NEGRA ', description:'CHICANEGRA ', category_id:26, price_sale: 729, price_base: 294, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:729 }] } ,
  422. {sku:'BLS-0169M ', name:'BLUSA NEGRA ', description:'MEDIANANEGRA ', category_id:26, price_sale: 729, price_base: 294, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:729 }] } ,
  423. {sku:'BLS-0169L ', name:'BLUSA NEGRA ', description:'GRANDENEGRA ', category_id:26, price_sale: 729, price_base: 294, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:729 }] } ,
  424. {sku:'BLS-0170S ', name:'BLUSA BLANCA ', description:'CHICABlanco ', category_id:26, price_sale: 674, price_base: 269, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:674 }] } ,
  425. {sku:'BLS-0170M ', name:'BLUSA BLANCA ', description:'MEDIANABlanco ', category_id:26, price_sale: 674, price_base: 269, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:674 }] } ,
  426. {sku:'BLS-0170L ', name:'BLUSA BLANCA ', description:'GRANDEBlanco ', category_id:26, price_sale: 674, price_base: 269, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:674 }] } ,
  427. {sku:'BLS-0171S ', name:'BLUSA LILA ', description:'CHICALILA ', category_id:26, price_sale: 689, price_base: 279, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:689 }] } ,
  428. {sku:'BLS-0171M ', name:'BLUSA LILA ', description:'MEDIANALILA ', category_id:26, price_sale: 689, price_base: 279, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:689 }] } ,
  429. {sku:'BLS-0171L ', name:'BLUSA LILA ', description:'GRANDELILA ', category_id:26, price_sale: 689, price_base: 279, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  430. {sku:'BLS-0172S ', name:'BLUSA FLOREADA ', description:'CHICABLANCA Y NEGRA ', category_id:26, price_sale: 579, price_base: 232, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:579 }] } ,
  431. {sku:'BLS-0172M ', name:'BLUSA FLOREADA ', description:'MEDIANABLANCA Y NEGRA ', category_id:26, price_sale: 579, price_base: 232, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:579 }] } ,
  432. {sku:'BLS-0172L ', name:'BLUSA FLOREADA ', description:'GRANDEBLANCA Y NEGRA ', category_id:26, price_sale: 579, price_base: 232, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:579 }] } ,
  433. {sku:'BLS-0173S ', name:'BLUSA ROSA PASTEL ', description:'CHICAROSA PASTEL ', category_id:26, price_sale: 569, price_base: 200, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:569 }] } ,
  434. {sku:'BLS-0173M ', name:'BLUSA ROSA PASTEL ', description:'MEDIANAROSA PASTEL ', category_id:26, price_sale: 569, price_base: 200, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:569 }] } ,
  435. {sku:'BLS-0173L ', name:'BLUSA ROSA PASTEL ', description:'GRANDEROSA PASTEL ', category_id:26, price_sale: 569, price_base: 200, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:569 }] } ,
  436. {sku:'BLS-0174S ', name:'BLUSA MOSTAZA ', description:'CHICAMOSTAZA ', category_id:26, price_sale: 799, price_base: 315, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  437. {sku:'BLS-0174M ', name:'BLUSA MOSTAZA ', description:'MEDIANAMOSTAZA ', category_id:26, price_sale: 799, price_base: 315, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  438. {sku:'BLS-0174L ', name:'BLUSA MOSTAZA ', description:'GRANDEMOSTAZA ', category_id:26, price_sale: 799, price_base: 315, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  439. {sku:'BLS-0175S ', name:'PANTIBLUSA BLANCA ', description:'CHICABLANCA ', category_id:26, price_sale: 1089, price_base: 435, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  440. {sku:'BLS-0175M ', name:'PANTIBLUSA BLANCA ', description:'MEDIANABLANCA ', category_id:26, price_sale: 1089, price_base: 435, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  441. {sku:'BLS-0175L ', name:'PANTIBLUSA BLANCA ', description:'GRANDEBLANCA ', category_id:26, price_sale: 1089, price_base: 435, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1089 }] } ,
  442. {sku:'BLS-0176S/M ', name:'PLAYERA NEGRA ', description:'CHICA/MEDIANANEGRA ', category_id:26, price_sale: 589, price_base: 230, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  443. {sku:'BLS-0176M/L ', name:'PLAYERA NEGRA ', description:'MEDIANA/GRANDENEGRA ', category_id:26, price_sale: 589, price_base: 230, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:589 }] } ,
  444. {sku:'BLS-0177S ', name:'PLAYERA ROSA ', description:'CHICAROSA ', category_id:26, price_sale: 609, price_base: 242, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:609 }] } ,
  445. {sku:'BLS-0177M ', name:'PLAYERA ROSA ', description:'MEDIANAROSA ', category_id:26, price_sale: 609, price_base: 242, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:609 }] } ,
  446. {sku:'BLS-0177L ', name:'PLAYERA ROSA ', description:'GRANDEROSA ', category_id:26, price_sale: 609, price_base: 242, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:609 }] } ,
  447. {sku:'BLS-0178U ', name:'PLAYERA LILA CON ROSA ', description:'UNITALLALILA CON ROSA ', category_id:26, price_sale: 519, price_base: 205, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:519 }] } ,
  448. {sku:'FLD-0040S ', name:'FALDA LILA ', description:'CHICALILA ', category_id:26, price_sale: 829, price_base: 330, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:829 }] } ,
  449. {sku:'FLD-0040M ', name:'FALDA LILA ', description:'MEDIANALILA ', category_id:26, price_sale: 829, price_base: 330, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:829 }] } ,
  450. {sku:'FLD-0040L ', name:'FALDA LILA ', description:'GRANDELILA ', category_id:26, price_sale: 829, price_base: 330, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:829 }] } ,
  451. {sku:'FLD-0041S ', name:'FALDA NEGRA FLOREADA ', description:'CHICANEGRA ', category_id:26, price_sale: 749, price_base: 289, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:749 }] } ,
  452. {sku:'FLD-0041M ', name:'FALDA NEGRA FLOREADA ', description:'MEDIANANEGRA ', category_id:26, price_sale: 749, price_base: 289, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:749 }] } ,
  453. {sku:'FLD-0041L ', name:'FALDA NEGRA FLOREADA ', description:'GRANDENEGRA ', category_id:26, price_sale: 749, price_base: 289, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:749 }] } ,
  454. {sku:'FLD-0042S ', name:'SHORT FALDA AQUA ', description:'CHICAAQUA ', category_id:26, price_sale: 789, price_base: 306, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:789 }] } ,
  455. {sku:'FLD-0042M ', name:'SHORT FALDA AQUA ', description:'MEDIANAAQUA ', category_id:26, price_sale: 789, price_base: 306, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:789 }] } ,
  456. {sku:'FLD-0042L ', name:'SHORT FALDA AQUA ', description:'GRANDEAQUA ', category_id:26, price_sale: 789, price_base: 306, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:789 }] } ,
  457. {sku:'FLD-0043S ', name:'FALDA ROSA ', description:'CHICAROSA ', category_id:26, price_sale: 699, price_base: 280, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  458. {sku:'FLD-0043M ', name:'FALDA ROSA ', description:'MEDIANAROSA ', category_id:26, price_sale: 699, price_base: 280, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  459. {sku:'FLD-0043L ', name:'FALDA ROSA ', description:'GRANDEROSA ', category_id:26, price_sale: 699, price_base: 280, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  460. {sku:'PNT-0039S ', name:'PANTALON CAFECITO ', description:'CHICOCAFECITO ', category_id:26, price_sale: 879, price_base: 352, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:879 }] } ,
  461. {sku:'PNT-0039M ', name:'PANTALON CAFECITO ', description:'MEDIANOCAFECITO ', category_id:26, price_sale: 879, price_base: 352, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:879 }] } ,
  462. {sku:'PNT-0039L ', name:'PANTALON CAFECITO ', description:'GRANDECAFECITO ', category_id:26, price_sale: 879, price_base: 352, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:879 }] } ,
  463. {sku:'PNT-0040S ', name:'PANTALON MOSTAZA ', description:'CHICOMOSTAZA ', category_id:26, price_sale: 829, price_base: 331, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:829 }] } ,
  464. {sku:'PNT-0040M ', name:'PANTALON MOSTAZA ', description:'MEDIANOMOSTAZA ', category_id:26, price_sale: 829, price_base: 331, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:829 }] } ,
  465. {sku:'PNT-0040L ', name:'PANTALON MOSTAZA ', description:'GRANDEMOSTAZA ', category_id:26, price_sale: 829, price_base: 331, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:829 }] } ,
  466. {sku:'PNT-0041S ', name:'PANTALON MEZCLILLA ', description:'CHICOMEZCLILLA ', category_id:26, price_sale: 999, price_base: 394, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  467. {sku:'PNT-0041M ', name:'PANTALON MEZCLILLA ', description:'MEDIANOMEZCLILLA ', category_id:26, price_sale: 999, price_base: 394, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  468. {sku:'PNT-0041L ', name:'PANTALON MEZCLILLA ', description:'GRANDEMEZCLILLA ', category_id:26, price_sale: 999, price_base: 394, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  469. {sku:'PNT-0042S ', name:'PANTALON NEGRO ', description:'CHICONEGRA ', category_id:26, price_sale: 589, price_base: 219, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  470. {sku:'PNT-0042M ', name:'PANTALON NEGRO ', description:'MEDIANONEGRA ', category_id:26, price_sale: 589, price_base: 219, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  471. {sku:'PNT-0042L ', name:'PANTALON NEGRO ', description:'GRANDENEGRA ', category_id:26, price_sale: 589, price_base: 219, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  472. {sku:'PNT-0043S ', name:'PANTALON AZUL MEZCLILLA ', description:'CHICOAZUL MEZCLILLA ', category_id:26, price_sale: 699, price_base: 251, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  473. {sku:'PNT-0043M ', name:'PANTALON AZUL MEZCLILLA ', description:'MEDIANOAZUL MEZCLILLA ', category_id:26, price_sale: 699, price_base: 251, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  474. {sku:'PNT-0043L ', name:'PANTALON AZUL MEZCLILLA ', description:'GRANDEAZUL MEZCLILLA ', category_id:26, price_sale: 699, price_base: 251, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  475. {sku:'ACCESORIO-248 ', name:'ARETE ', description:'VARIOS ', category_id:17, price_sale: 320, price_base: 52.59, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:320 }] } ,
  476. {sku:'BLS-158M-M-260 ', name:'PANTIBLUSA TRANSPARENTE CON ENCAJE ', description:'MNEGRO Y MOSTAZA ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  477. {sku:'VST-0134L-L-243 ', name:'VESTIDO METALICO ROSA ', description:'LROSA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  478. {sku:'null-S-268 ', name:'BLAZER DE ENCAJE NEGRO ', description:'SNEGRO ', category_id:26, price_sale: 879, price_base: 439.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:879 }] } ,
  479. {sku:'S-0019M-M-2 ', name:'BLAZER DE ENCAJE NEGRO ', description:'MNegro ', category_id:26, price_sale: 879, price_base: 439.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:879 }] } ,
  480. {sku:'VST-0031S-S-4 ', name:'VESTIDO ROJO TIPO SACO BOTON DORADO ', description:'SRojo ', category_id:26, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  481. {sku:'VST-0031M-M-4 ', name:'VESTIDO ROJO TIPO SACO BOTON DORADO ', description:'MRojo ', category_id:26, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  482. {sku:'BLS-0086S-S-1 ', name:'BLUSON BLANCO DE UNA MANGA ', description:'SBlanco ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  483. {sku:'BLS-0086M-M-1 ', name:'BLUSON BLANCO DE UNA MANGA ', description:'MBlanco ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  484. {sku:'BLS-0086L-L-1 ', name:'BLUSON BLANCO DE UNA MANGA ', description:'LBlanco ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  485. {sku:'BLS-0130M-M-275 ', name:'PLAYERA AZUL CON LABIAL ', description:'MAZUL MARINO ', category_id:26, price_sale: 589, price_base: 294.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  486. {sku:'BLS-0130L-L-275 ', name:'PLAYERA AZUL CON LABIAL ', description:'LAZUL MARINO ', category_id:26, price_sale: 589, price_base: 294.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  487. {sku:'BLX-0023M-M-2 ', name:'KIMONO CON PERLAS ', description:'MNegro ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  488. {sku:'PLZ-0011S-S-349 ', name:'PALAZO A RAYAS ', description:'SBLANCO CON NEGRO ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  489. {sku:'PLZ-0011M-M-349 ', name:'PALAZO A RAYAS ', description:'MBLANCO CON NEGRO ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  490. {sku:'BLS-0057S-S-253 ', name:'BLUSA MAGENTA ', description:'SMAGENTA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  491. {sku:'BLS-0057M-M-253 ', name:'BLUSA MAGENTA ', description:'MMAGENTA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  492. {sku:'BLS-0056S-S-350 ', name:'BLUSA CON OLAN EN MANGAS ', description:'SBLANCO Y NEGRO ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  493. {sku:'BLS-0056M-M-350 ', name:'BLUSA CON OLAN EN MANGAS ', description:'MBLANCO Y NEGRO ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  494. {sku:'BLS-0056L-L-350 ', name:'BLUSA CON OLAN EN MANGAS ', description:'LBLANCO Y NEGRO ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  495. {sku:'PNT-0006S-S-5 ', name:'PANTALON VERDE ', description:'SVerde ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:669 }] } ,
  496. {sku:'PNT-0006M-M-5 ', name:'PANTALON VERDE ', description:'MVerde ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:669 }] } ,
  497. {sku:'BLS-0134U-U-351 ', name:'BLUSA CON FLORES EN MANGA ', description:'ULILA Y BLANCA ', category_id:26, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:399 }] } ,
  498. {sku:'PLZ-0012S-S-2 ', name:'PLAZO NEGRO CON EVILLA CG ', description:'SNegro ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  499. {sku:'PLZ-0008S-S-2 ', name:'PALAZO CON ENCANJE EN LA ESPALDA ', description:'SNegro ', category_id:26, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  500. {sku:'PLZ-0009L-L-2 ', name:'PALAZO CON ENCAJE EN LA BLUSA ', description:'LNegro ', category_id:26, price_sale: 1169, price_base: 584.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1169 }] } ,
  501. {sku:'PLZ-0013L-L-5 ', name:'PALAZO VERDE ', description:'LVerde ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  502. {sku:'BLS-0094M-M-352 ', name:'BLUSA DE ENCAJE CON LISTON ', description:'MNEGRA Y ROJA ', category_id:26, price_sale: 759, price_base: 379.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:759 }] } ,
  503. {sku:'BLS-0094L-L-352 ', name:'BLUSA DE ENCAJE CON LISTON ', description:'LNEGRA Y ROJA ', category_id:26, price_sale: 759, price_base: 379.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:759 }] } ,
  504. {sku:'PNT-0013M-M-2 ', name:'PANTALON NEGRO CON EVILLA A UN LADO ', description:'MNegro ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  505. {sku:'PNT-0001M-M-2 ', name:'PANTALON NEGRO CON AVERTURAS ', description:'MNegro ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  506. {sku:'PNT-0035L-L-2 ', name:'PANALON NEGRO LISO ', description:'LNegro ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  507. {sku:'PNT-0012S-S-2 ', name:'PANTALON NEGRO CON CIERRE PLATA ', description:'SNegro ', category_id:26, price_sale: 569, price_base: 284.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:569 }] } ,
  508. {sku:'PNT-0012L-L-2 ', name:'PANTALON NEGRO CON CIERRE PLATA ', description:'LNegro ', category_id:26, price_sale: 569, price_base: 284.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:569 }] } ,
  509. {sku:'PNT-0038S-S-2 ', name:'PANTALON NEGRO CON EVILLA CG ', description:'SNegro ', category_id:26, price_sale: 849, price_base: 424.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:849 }] } ,
  510. {sku:'PNT-0038L-L-2 ', name:'PANTALON NEGRO CON EVILLA CG ', description:'LNegro ', category_id:26, price_sale: 849, price_base: 424.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:849 }] } ,
  511. {sku:'PNT-0032L-L-2 ', name:'PANTALON NEGRO DE MEZCLILLA CON CADENITAS ', description:'LNegro ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  512. {sku:'PAN-0013M-L-2 ', name:'PANTALON DE MEZCLILLA NEGRO CORTE ALTO ', description:'LNegro ', category_id:26, price_sale: 949, price_base: 474.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:949 }] } ,
  513. {sku:'BLX-0026S-S-2 ', name:'BLUSA VOLADITA DE ABAJO ', description:'SNegro ', category_id:26, price_sale: 719, price_base: 359.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:719 }] } ,
  514. {sku:'BLX-0026M-M-2 ', name:'BLUSA VOLADITA DE ABAJO ', description:'MNegro ', category_id:26, price_sale: 719, price_base: 359.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:719 }] } ,
  515. {sku:'CON-0002M-M-353 ', name:'CONJUNTO CON GARABATOS LILA Y VERDE ', description:'MLILA Y VERDE ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  516. {sku:'CON-0003L-L-353 ', name:'CONJUNTO CON GARABATOS LILA Y VERDE ', description:'LLILA Y VERDE ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  517. {sku:'BLS-0047S-S-354 ', name:'BLUSA ROSA NEON DE ENCAJE ', description:'SROSA NEON ', category_id:26, price_sale: 519, price_base: 259.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:519 }] } ,
  518. {sku:'BLS-0047M-M-354 ', name:'BLUSA ROSA NEON DE ENCAJE ', description:'MROSA NEON ', category_id:26, price_sale: 519, price_base: 259.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:519 }] } ,
  519. {sku:'BLS-0047L-L-354 ', name:'BLUSA ROSA NEON DE ENCAJE ', description:'LROSA NEON ', category_id:26, price_sale: 519, price_base: 259.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:519 }] } ,
  520. {sku:'BLS-0145M-M-252 ', name:'BLUSA NEGRA CON ESCARCHA DORADA ', description:'MNEGRA ', category_id:26, price_sale: 879, price_base: 439.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:879 }] } ,
  521. {sku:'BLS-0125S-S-241 ', name:'BLUSA BLANCA TEJIDITA CON OLANES BORDADOS ', description:'SBLANCA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  522. {sku:'BLS-0125L-L-241 ', name:'BLUSA BLANCA TEJIDITA CON OLANES BORDADOS ', description:'LBLANCA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  523. {sku:'BLS-0156S-S-252 ', name:'BLUSA NEGRA CON BORDADO MANGA LARGA ', description:'SNEGRA ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  524. {sku:'BLS-0156M-M-252 ', name:'BLUSA NEGRA CON BORDADO MANGA LARGA ', description:'MNEGRA ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  525. {sku:'BLS-0156L-L-252 ', name:'BLUSA NEGRA CON BORDADO MANGA LARGA ', description:'LNEGRA ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  526. {sku:'BLS-0150S-S-295 ', name:'BLUSA NEGRA Y BLANCA CON PUNTITOS LISA ', description:'SBLANCA Y NEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  527. {sku:'BLS-0150M-M-295 ', name:'BLUSA NEGRA Y BLANCA CON PUNTITOS LISA ', description:'MBLANCA Y NEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  528. {sku:'BLS-0150L-L-295 ', name:'BLUSA NEGRA Y BLANCA CON PUNTITOS LISA ', description:'LBLANCA Y NEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  529. {sku:'BLS-0131M-M-355 ', name:'PLAYERA NUDE Y NEGRA BASICAS ', description:'MNUDE Y NEGRA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  530. {sku:'BLS-0131S-S-355 ', name:'PLAYERA NUDE Y NEGRA BASICAS ', description:'SNUDE Y NEGRA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  531. {sku:'BLS-0131L-L-355 ', name:'PLAYERA NUDE Y NEGRA BASICAS ', description:'LNUDE Y NEGRA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  532. {sku:'BLS-0167S-S-252 ', name:'BLUSA NEGRA CON DESTELLOS PLATA EN MANGAS ', description:'SNEGRA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  533. {sku:'BLS-0144S-S-356 ', name:'BLUSA BEIGE CON DESTELLOS DORADOS ', description:'SBEIGE ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  534. {sku:'BLS-0144M-M-244 ', name:'BLUSA BEIGE CON DESTELLOS DORADOS ', description:'MBEIGE ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  535. {sku:'BLS-0152S-S-252 ', name:'BLUSA NEGRA CON FIGURAS DORADAS ', description:'SNEGRA ', category_id:26, price_sale: 629, price_base: 314.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:629 }] } ,
  536. {sku:'BLS-0152M-M-252 ', name:'BLUSA NEGRA CON FIGURAS DORADAS ', description:'MNEGRA ', category_id:26, price_sale: 629, price_base: 314.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:629 }] } ,
  537. {sku:'BLS-0155S-S-252 ', name:'BLUSA NEGRA GAZA CON BOTONES DE ESTRELLAS ', description:'SNEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  538. {sku:'BLS-0155M-M-252 ', name:'BLUSA NEGRA GAZA CON BOTONES DE ESTRELLAS ', description:'MNEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  539. {sku:'BLS-0155L-L-252 ', name:'BLUSA NEGRA GAZA CON BOTONES DE ESTRELLAS ', description:'LNEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  540. {sku:'VST-0010S-S-2 ', name:'VESTIDO NEGRO TIPO KIMONO TEJIDO ', description:'SNegro ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:669 }] } ,
  541. {sku:'BLX-0022L-L-2 ', name:'KIMONO NEGRO BORDADO Y CINTO ', description:'LNegro ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  542. {sku:'BLS-0157S-S-252 ', name:'PLAYERA NEGRA CON TUL EN MANGAS ', description:'SNEGRA ', category_id:26, price_sale: 529, price_base: 264.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  543. {sku:'BLS-0157L-L-252 ', name:'PLAYERA NEGRA CON TUL EN MANGAS ', description:'LNEGRA ', category_id:26, price_sale: 529, price_base: 264.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:529 }] } ,
  544. {sku:'VST-0116S-S-5 ', name:'VESTIDO VERDE CORTO CON PALMERAS ', description:'SVerde ', category_id:26, price_sale: 1049, price_base: 524.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  545. {sku:'VST-0116M-M-5 ', name:'VESTIDO VERDE CORTO CON PALMERAS ', description:'MVerde ', category_id:26, price_sale: 1049, price_base: 524.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  546. {sku:'VST-0116L-L-5 ', name:'VESTIDO VERDE CORTO CON PALMERAS ', description:'LVerde ', category_id:26, price_sale: 1049, price_base: 524.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  547. {sku:'VST-0027L-L-6 ', name:'VESTIDO AMARILLO CON OLANCITOS ', description:'LAmarillo ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  548. {sku:'VST-0040M-M-1 ', name:'VESTIDO BLANCO CON FIGURAS DE CADENAS ', description:'MBlanco ', category_id:26, price_sale: 829, price_base: 414.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:829 }] } ,
  549. {sku:'VST-0119S-S-357 ', name:'VESTIDO FONDO BLANCO CON GARABATOS ROSAS ', description:'SFONDO BLANCO ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  550. {sku:'VST-0119L-L-357 ', name:'VESTIDO FONDO BLANCO CON GARABATOS ROSAS ', description:'LFONDO BLANCO ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  551. {sku:'VST-0008S-S-244 ', name:'VESTIDO BEIGE FLOREADO ', description:'SBEIGE ', category_id:26, price_sale: 949, price_base: 474.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:949 }] } ,
  552. {sku:'VST-0103S-S-358 ', name:'VESTIDO A CUADROS AZUL Y LILA CON COLA ', description:'SAZUL Y LILA ', category_id:26, price_sale: 1049, price_base: 524.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  553. {sku:'VST-0103M-M-358 ', name:'VESTIDO A CUADROS AZUL Y LILA CON COLA ', description:'MAZUL Y LILA ', category_id:26, price_sale: 1049, price_base: 524.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  554. {sku:'VST-0103L-L-358 ', name:'VESTIDO A CUADROS AZUL Y LILA CON COLA ', description:'LAZUL Y LILA ', category_id:26, price_sale: 1049, price_base: 524.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  555. {sku:'BLS-0070S-S-1 ', name:'KIMONO BLANCO DE ENCAJE ', description:'SBlanco ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  556. {sku:'BLS-0070M-M-1 ', name:'KIMONO BLANCO DE ENCAJE ', description:'MBlanco ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  557. {sku:'PNT-0036M-M-294 ', name:'PANTALON BUGAMBILIA LISO ', description:'MBUGAMBILIA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  558. {sku:'PNT-0036L-L-294 ', name:'PANTALON BUGAMBILIA LISO ', description:'LBUGAMBILIA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  559. {sku:'BLS-0122S-S-241 ', name:'BLUSA BLANCA CON HOJAS VERDES ', description:'SBLANCA ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:669 }] } ,
  560. {sku:'FLD-0033S-S-359 ', name:'FALDA AMARILLA Y NEGRA DE PATOLES CON CINTO ', description:'SAMARILLO Y NEGRO ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  561. {sku:'FLD-0033M-M-359 ', name:'FALDA AMARILLA Y NEGRA DE PATOLES CON CINTO ', description:'MAMARILLO Y NEGRO ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  562. {sku:'FLD-0033L-L-359 ', name:'FALDA AMARILLA Y NEGRA DE PATOLES CON CINTO ', description:'LAMARILLO Y NEGRO ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  563. {sku:'FLD-0032L-L-241 ', name:'FALDA BLANCA DE PATOLES ', description:'LBLANCA ', category_id:26, price_sale: 649, price_base: 324.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:649 }] } ,
  564. {sku:'FLD-0014L-L-252 ', name:'FALDA NEGRA DE TUL ', description:'LNEGRA ', category_id:26, price_sale: 649, price_base: 324.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:649 }] } ,
  565. {sku:'PAN-0017S-S-252 ', name:'PANTALON NEGRO OLGADO DE PATOLES ', description:'SNEGRA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  566. {sku:'PNT-0016S-S-360 ', name:'PANTALON ROSA PALO CON EVILLA EN CINTO ', description:'SROSA PALO ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  567. {sku:'PNT-0016M-M-360 ', name:'PANTALON ROSA PALO CON EVILLA EN CINTO ', description:'MROSA PALO ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  568. {sku:'PANX-0004M-M-360 ', name:'PANTALON ROSA PALO LISO ', description:'MROSA PALO ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  569. {sku:'PNT-0014M-M-243 ', name:'PANTALON ROSA CON LINEAS NEGRAS EN FRENTE ', description:'MROSA ', category_id:26, price_sale: 789, price_base: 394.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:789 }] } ,
  570. {sku:'PNT-0014L-L-243 ', name:'PANTALON ROSA CON LINEAS NEGRAS EN FRENTE ', description:'LROSA ', category_id:26, price_sale: 789, price_base: 394.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:789 }] } ,
  571. {sku:'PAN-0004L-L-294 ', name:'PANTALON BUGAMBILIA CON CINTO DE CORAZON ', description:'LBUGAMBILIA ', category_id:26, price_sale: 949, price_base: 474.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:949 }] } ,
  572. {sku:'PAN-0001M-M-2 ', name:'PANTALON NEGRO CON LINEAS A LOS LADOS ', description:'MNegro ', category_id:26, price_sale: 980, price_base: 490, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:980 }] } ,
  573. {sku:'PAN-0001L-L-2 ', name:'PANTALON NEGRO CON LINEAS A LOS LADOS ', description:'LNegro ', category_id:26, price_sale: 980, price_base: 490, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:980 }] } ,
  574. {sku:'PNT-0005L-L-1 ', name:'PANTALON BLAN CON CON RAYAS NEGRAS ', description:'LBlanco ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  575. {sku:'PANX-0002M-M-263 ', name:'PANTALON MOSTAZA CON RAYAS BLANCAS ', description:'MMOSTAZA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  576. {sku:'PANX-0002L-L-263 ', name:'PANTALON MOSTAZA CON RAYAS BLANCAS ', description:'LMOSTAZA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  577. {sku:'PNT-0004S-S-240 ', name:'PANTALON RAYADO A COLORES ', description:'SCOLORES ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  578. {sku:'PLZ-0003L-L-240 ', name:'PANTALON GARABATEADO OLGADO ', description:'LCOLORES ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  579. {sku:'BLS-0040S-S-354 ', name:'PANTIBLUSA ROSA NEON ', description:'SROSA NEON ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  580. {sku:'BLS-0040M-M-354 ', name:'PANTIBLUSA ROSA NEON ', description:'MROSA NEON ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  581. {sku:'BLS-0041M-M-361 ', name:'PANTIBLUSA VERDE NEON ', description:'MVERDE NEON ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  582. {sku:'BLS-0041L-L-361 ', name:'PANTIBLUSA VERDE NEON ', description:'LVERDE NEON ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  583. {sku:'BLS-0067M-M-263 ', name:'BLUSA MOSTAZA CON RAYAS BLANCAS ', description:'MMOSTAZA ', category_id:26, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:399 }] } ,
  584. {sku:'BLS-0067L-L-263 ', name:'BLUSA MOSTAZA CON RAYAS BLANCAS ', description:'LMOSTAZA ', category_id:26, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:399 }] } ,
  585. {sku:'BLS-0141S-S-241 ', name:'PLAYERA BLANCA CON GASA SORRY ', description:'SBLANCA ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  586. {sku:'BLS-0127S-S-241 ', name:'PLAYERA BLANCA CON GATOS DE LENTEJUELA ', description:'SBLANCA ', category_id:26, price_sale: 369, price_base: 184.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:369 }] } ,
  587. {sku:'BLS-0030L-L-246 ', name:'BLUSA AMARILLA DE GAZA ', description:'LAMARILLA ', category_id:26, price_sale: 949, price_base: 474.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:949 }] } ,
  588. {sku:'BLS-0005S-S-241 ', name:'BLUSA BLANCA FLOREADA DE GAZA ', description:'SBLANCA ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  589. {sku:'BLS-0061S-S-294 ', name:'PANTIBLUSA BUGAMBILIA DE GAZA ', description:'SBUGAMBILIA ', category_id:26, price_sale: 639, price_base: 319.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:639 }] } ,
  590. {sku:'BLS-0095S-S-252 ', name:'PANTIBLUSA NEGRA DE GAZA MANGA LARGA ', description:'SNEGRA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  591. {sku:'BLS-0111S-S-252 ', name:'PANTIBLUSA NEGRA DE GAZA MANGA TRES CUARTOS ', description:'SNEGRA ', category_id:26, price_sale: 529, price_base: 264.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:529 }] } ,
  592. {sku:'BLS-0035S-S-244 ', name:'PANTIBLUSA BEIGE DE GAZA SIN MANGAS ', description:'SBEIGE ', category_id:26, price_sale: 479, price_base: 239.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:479 }] } ,
  593. {sku:'BLX-0027M-M-241 ', name:'PANTIBLUSA BLANCA DE ENCAJE ', description:'MBLANCA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  594. {sku:'BLS-0120S-S-286 ', name:'BLUSA CORAL DE GAZA ', description:'SCORAL ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  595. {sku:'BLX-0012S-S-252 ', name:'BLUSA NEGRA FLOREADA ', description:'SNEGRA ', category_id:26, price_sale: 589, price_base: 294.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:589 }] } ,
  596. {sku:'BLX-0022S-S-252 ', name:'BLUSA NEGRA DE ENCAJE CON OLANES EN MANGA ', description:'SNEGRA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  597. {sku:'BLS-0088L-L-252 ', name:'BLUSA NEGRA BASICA CON MANGAS DE OLANES ', description:'LNEGRA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  598. {sku:'BLS-0075L-L-252 ', name:'BLUSA NEGRA CUELLO ALTO Y MANGAS DE OLANES ', description:'LNEGRA ', category_id:26, price_sale: 459, price_base: 229.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:459 }] } ,
  599. {sku:'BLS-0164S-S-362 ', name:'BLUSA ROJA BASICA DE CUELLO ALTO ', description:'SROJA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  600. {sku:'BLS-0164M-M-363 ', name:'BLUSA ROJA BASICA DE CUELLO ALTO ', description:'MROJA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  601. {sku:'BLS-0113M-M-364 ', name:'BLUSA DORADA TIPO SEDA ', description:'MDORADA ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:669 }] } ,
  602. {sku:'BLS-0113L-L-364 ', name:'BLUSA DORADA TIPO SEDA ', description:'LDORADA ', category_id:26, price_sale: 669, price_base: 334.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:669 }] } ,
  603. {sku:'BLS-0115S-S-239 ', name:'BLUSA MEZCLILLA ', description:'SMEZCLILLA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  604. {sku:'BLS-0105L-L-241 ', name:'PLAYERA BLANCA CON ESTOPEROLES ', description:'LBLANCA ', category_id:26, price_sale: 469, price_base: 234.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  605. {sku:'BLS-0128S-S-252 ', name:'PLAYERA NEGRA LOVE AMOUR ', description:'SNEGRA ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  606. {sku:'BLS-0133S-S-241 ', name:'PLAYERA BLANCA BASICA CON HOMBRERAS ', description:'SBLANCA ', category_id:26, price_sale: 479, price_base: 239.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:479 }] } ,
  607. {sku:'BLS-0133L-L-241 ', name:'PLAYERA BLANCA BASICA CON HOMBRERAS ', description:'LBLANCA ', category_id:26, price_sale: 479, price_base: 239.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:479 }] } ,
  608. {sku:'BLX-0028M-M-360 ', name:'BLUSA ROSA PALO CON BOTONES GRANDES ', description:'MROSA PALO ', category_id:26, price_sale: 479, price_base: 239.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:479 }] } ,
  609. {sku:'BLS-0104L-L-243 ', name:'BLUSA ROSA TIPO BLAZER MANGAS FLOREADAS ', description:'LROSA ', category_id:26, price_sale: 519, price_base: 259.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:519 }] } ,
  610. {sku:'BLS-0114S-S-3 ', name:'BLUSA AZUL CON CUADROS Y OLAN EN UNA MANGA ', description:'SAzul ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  611. {sku:'BLS-0114M-M-3 ', name:'BLUSA AZUL CON CUADROS Y OLAN EN UNA MANGA ', description:'MAzul ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  612. {sku:'BLS-0114L-L-3 ', name:'BLUSA AZUL CON CUADROS Y OLAN EN UNA MANGA ', description:'LAzul ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  613. {sku:'BLS-0138L-L-241 ', name:'PANTIBLUSA FONDO BLANCA FLOREADA ', description:'LBLANCA ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  614. {sku:'BLS-0135U-U-243 ', name:'BLUSA ROSA DE GASA CON FLORES DE COLORES ', description:'UROSA ', category_id:26, price_sale: 499, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  615. {sku:'BLS-0142S-S-365 ', name:'BLUSA FLOREADA MANGA LARGA ', description:'SFLOREADA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  616. {sku:'BLS-0142M-M-365 ', name:'BLUSA FLOREADA MANGA LARGA ', description:'MFLOREADA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  617. {sku:'VST-0025S-S-366 ', name:'VESTITO BLANCO MULTI ', description:'SMULTI ', category_id:26, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  618. {sku:'VST-0036S-S-2 ', name:'VESTIDO NEGRO LARGO PLISADO ', description:'SNegro ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  619. {sku:'PNT-0034M-M-2 ', name:'OVEROL NEGRO CON CIERRE ', description:'MNegro ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  620. {sku:'PNT-0034L-L-2 ', name:'OVEROL NEGRO CON CIERRE ', description:'LNegro ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  621. {sku:'BLS-0154S-S-269 ', name:'PLAYERA ROSA Y NEGRA CON PERLAS Y NUDO ', description:'SROSA Y NEGRO ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:489 }] } ,
  622. {sku:'BLS-0154M-M-269 ', name:'PLAYERA ROSA Y NEGRA CON PERLAS Y NUDO ', description:'MROSA Y NEGRO ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  623. {sku:'BLS-0154L-L-269 ', name:'PLAYERA ROSA Y NEGRA CON PERLAS Y NUDO ', description:'LROSA Y NEGRO ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:489 }] } ,
  624. {sku:'CHA-0003M-M-252 ', name:'CAPA NEGRA ', description:'MNEGRA ', category_id:26, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  625. {sku:'BLS-0089S-S-256 ', name:'PANTIBLUSA PLATA HALTER ', description:'SPLATA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  626. {sku:'BLS-0089M-M-256 ', name:'PANTIBLUSA PLATA HALTER ', description:'MPLATA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  627. {sku:'BLS-0089L-L-256 ', name:'PANTIBLUSA PLATA HALTER ', description:'LPLATA ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  628. {sku:'VST-0130M-L-240 ', name:'VESTIDO DE COLORES LILA NARANJ Y AZUL CON CAPUCHA ', description:'LCOLORES ', category_id:26, price_sale: 1069, price_base: 534.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1069 }] } ,
  629. {sku:'VST-0123M-M-256 ', name:'PALAZZO PLATA BRILLOSO ', description:'MPLATA ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  630. {sku:'VST-0123L-L-256 ', name:'PALAZZO PLATA BRILLOSO ', description:'LPLATA ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  631. {sku:'PNT-0018S-S-256 ', name:'PANTALON PLATA CON CIERRES ', description:'SPLATA ', category_id:26, price_sale: 769, price_base: 384.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:769 }] } ,
  632. {sku:'PNT-0018M-M-256 ', name:'PANTALON PLATA CON CIERRES ', description:'MPLATA ', category_id:26, price_sale: 769, price_base: 384.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:769 }] } ,
  633. {sku:'V-0065M-M-256 ', name:'VESTIDO PLATA CON PLUMAS Y LENTEJUELAS ', description:'MPLATA ', category_id:26, price_sale: 1549, price_base: 774.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1549 }] } ,
  634. {sku:'FLD-0011M-M-256 ', name:'FALDA PLATA LARGA DE PATOLES TIPO SATIN ', description:'MPLATA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  635. {sku:'F-0027L-L-252 ', name:'FALDA NEGRA LARGA DE TERCIOPELO Y PATOLES ', description:'LNEGRA ', category_id:26, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  636. {sku:'BLS-0097S-S-252 ', name:'BLUSA NEGRA CON DESTELLOS PLATA Y MANGAS AMPLIAS ', description:'SNEGRA ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  637. {sku:'VST-0122M-M-256 ', name:'VESTIDO NEGRO CON LENTEJUELAS PLATA ', description:'MPLATA ', category_id:26, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  638. {sku:'V-0071S-S-2 ', name:'VESTIDO NEGRO CON PEDRERIA TORNASOL ', description:'SNegro ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  639. {sku:'CJT-0002S-S-2 ', name:'CONJUNTO NEGRO BRILLOSO CON MANGA DE GAZA ', description:'SNegro ', category_id:26, price_sale: 1129, price_base: 564.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1129 }] } ,
  640. {sku:'CHA-0004L-L-243 ', name:'SACO ROSA TIPO SASTRE ', description:'LROSA ', category_id:26, price_sale: 1199, price_base: 599.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  641. {sku:'FLD-0039M-M-295 ', name:'FALDA BLANCA Y NEGRA TIPO SASTRE ', description:'MBLANCA Y NEGRA ', category_id:26, price_sale: 698, price_base: 349, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:698 }] } ,
  642. {sku:'FLD-0039L-L-297 ', name:'FALDA BLANCA TIPO SASTRE ', description:'LBLANCA ', category_id:26, price_sale: 698, price_base: 349, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:698 }] } ,
  643. {sku:'VST-0135S-S-4 ', name:'VESTIDO ROJO TIPO SACO CON BOTONES DORADOS ', description:'SRojo ', category_id:26, price_sale: 1045, price_base: 522.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1045 }] } ,
  644. {sku:'BLS-0161S-S-238 ', name:'BLUSA GRIS PLATA MANGA LARGA ', description:'SGRIS ', category_id:26, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  645. {sku:'BLS-0101S-S-367 ', name:'BLUSA TINTA Y VERDE MANGA LARGA DE SATIN ', description:'STINTA Y NEGRA ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  646. {sku:'BLS-0101M-M-367 ', name:'BLUSA TINTA Y VERDE MANGA LARGA DE SATIN ', description:'MTINTA Y NEGRA ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  647. {sku:'BLS-0101L-L-5 ', name:'BLUSA VERDE MANGA LARGA DE SATIN ', description:'LVerde ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  648. {sku:'CH-0008S-S-252 ', name:'CHAMARRA NEGRA DE LENTEJUELA ', description:'SNEGRA ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  649. {sku:'CH-0008M-M-252 ', name:'CHAMARRA NEGRA DE LENTEJUELA ', description:'MNEGRA ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  650. {sku:'BLS-0151M-M-368 ', name:'BLUSA ROSA TINTA Y NEGRA CON TIRITAS Y DESTELLOS PLATA ', description:'MROSA TINTA Y NEGRA ', category_id:26, price_sale: 869, price_base: 434.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  651. {sku:'CHA-0023M-M-369 ', name:'GABARDINA VERDE Y TINTA TIPO VESTIDO TERCIOPELO ', description:'MVERDE Y TINTA ', category_id:26, price_sale: 2299, price_base: 1149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:2299 }] } ,
  652. {sku:'CHA-0023L-L-369 ', name:'GABARDINA VERDE Y TINTA TIPO VESTIDO TERCIOPELO ', description:'LVERDE Y TINTA ', category_id:26, price_sale: 2299, price_base: 1149.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:2299 }] } ,
  653. {sku:'PLZ-0018S-S-5 ', name:'PALAZZO VERDE CON LENTEJUELA DORADA ', description:'SVerde ', category_id:26, price_sale: 1429, price_base: 714.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1429 }] } ,
  654. {sku:'PLZ-0018M-M-5 ', name:'PALAZZO VERDE CON LENTEJUELA DORADA ', description:'MVerde ', category_id:26, price_sale: 1429, price_base: 714.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1429 }] } ,
  655. {sku:'VE-0050S-S-2 ', name:'PALAZZO NEGRO CON CIRCULOS TINTOS MANGA LARGA ', description:'SNegro ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  656. {sku:'PLZ-0019S-S-262 ', name:'PALAZZO TINTO CON TIRITAS DE LENTEJUELA ', description:'STINTO ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  657. {sku:'PLZ-0019M-M-262 ', name:'PALAZZO TINTO CON TIRITAS DE LENTEJUELA ', description:'MTINTO ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  658. {sku:'V-0070S-S-5 ', name:'JUMPER VERDE PISTACHE CON LENTEJUELA ', description:'SVerde ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  659. {sku:'V-0070M-M-5 ', name:'JUMPER VERDE PISTACHE CON LENTEJUELA ', description:'MVerde ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  660. {sku:'V-0070L-L-5 ', name:'JUMPER VERDE PISTACHE CON LENTEJUELA ', description:'LVerde ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  661. {sku:'CHA-0020M-M-240 ', name:'ABRIGO COLORES DE PELUCHE ', description:'MCOLORES ', category_id:26, price_sale: 1769, price_base: 884.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1769 }] } ,
  662. {sku:'CH-0005M-M-2 ', name:'SACO NEGRO TIPO CARDIGAN ', description:'MNegro ', category_id:26, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  663. {sku:'B-0102L-L-241 ', name:'BLUSA BLANCA CON OLANES EN MANGAS ', description:'LBLANCA ', category_id:26, price_sale: 769, price_base: 384.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:769 }] } ,
  664. {sku:'CHA-0013XL-XL-243 ', name:'CHAMARRA ROSA CON PELUCHE ', description:'XLROSA ', category_id:26, price_sale: 1629, price_base: 814.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1629 }] } ,
  665. {sku:'BLS-0160S-S-244 ', name:'BLUSA BEIGE DE LENTEJUELA TORNASOL ', description:'SBEIGE ', category_id:26, price_sale: 825, price_base: 412.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:825 }] } ,
  666. {sku:'BLS-0165S-S-256 ', name:'BLUSA PLATA DE LENTEJUELA ', description:'SPLATA ', category_id:26, price_sale: 849, price_base: 424.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:849 }] } ,
  667. {sku:'BLS-0165L-L-256 ', name:'BLUSA PLATA DE LENTEJUELA ', description:'LPLATA ', category_id:26, price_sale: 849, price_base: 424.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:849 }] } ,
  668. {sku:'F-0014S-M-243 ', name:'FALDA ROSA DE LENTEJUELA ', description:'MROSA ', category_id:26, price_sale: 689, price_base: 344.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  669. {sku:'F-0014M-L-243 ', name:'FALDA ROSA DE LENTEJUELA ', description:'LROSA ', category_id:26, price_sale: 689, price_base: 344.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  670. {sku:'SHO-0023S-S-350 ', name:'SHORT A CUADROS BLANCO Y NEGRO ', description:'SBLANCO Y NEGRO ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  671. {sku:'SHO-0023M-M-350 ', name:'SHORT A CUADROS BLANCO Y NEGRO ', description:'MBLANCO Y NEGRO ', category_id:26, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  672. {sku:'FLD-0035XL-XL-252 ', name:'FALDA NEGRA CORTA CON PATOLES ', description:'XLNEGRA ', category_id:26, price_sale: 629, price_base: 314.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:629 }] } ,
  673. {sku:'F-0016L-L-240 ', name:'FALDA COLORES LARGA DE LENTEJUELA ', description:'LCOLORES ', category_id:26, price_sale: 989, price_base: 494.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:989 }] } ,
  674. {sku:'PLZ-0016M-M-2 ', name:'PALAZZO NEGRO CON LENTEJUELA PLATA ', description:'MNegro ', category_id:26, price_sale: 1349, price_base: 674.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1349 }] } ,
  675. {sku:'PLZ-0016L-L-2 ', name:'PALAZZO NEGRO CON LENTEJUELA PLATA ', description:'LNegro ', category_id:26, price_sale: 1349, price_base: 674.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1349 }] } ,
  676. {sku:'V-0075L-L-2 ', name:'PALAZZO NEGRO CON CUELLO DE LENTEJUELA PLATA ', description:'LNegro ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  677. {sku:'VST-0102S-S-2 ', name:'PALAZZO NEGRO DE ENCAJE ARRIBA ', description:'SNegro ', category_id:26, price_sale: 1119, price_base: 559.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1119 }] } ,
  678. {sku:'BLS-0159S-S-2 ', name:'BLUSA NEGRA MANGA LARGA CON FIGURAS DORADAS ', description:'SNegro ', category_id:26, price_sale: 749, price_base: 374.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:749 }] } ,
  679. {sku:'BLS-0159M-M-2 ', name:'BLUSA NEGRA MANGA LARGA CON FIGURAS DORADAS ', description:'MNegro ', category_id:26, price_sale: 749, price_base: 374.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:749 }] } ,
  680. {sku:'BLS-0159L-L-244 ', name:'BLUSA BEIGE MANGA LARGA CON FIGURAS DORADAS ', description:'LBEIGE ', category_id:26, price_sale: 749, price_base: 374.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:749 }] } ,
  681. {sku:'VST-0068S-S-370 ', name:'VESTIDO DORADO DE LENTEJUELA ', description:'SDORADO ', category_id:26, price_sale: 1449, price_base: 724.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1449 }] } ,
  682. {sku:'VST-0068M-M-371 ', name:'VESTIDO DORADO DE LENTEJUELA ', description:'MDORADO ', category_id:26, price_sale: 1449, price_base: 724.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1449 }] } ,
  683. {sku:'VST-0068L-L-370 ', name:'VESTIDO DORADO DE LENTEJUELA ', description:'LDORADO ', category_id:26, price_sale: 1449, price_base: 724.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1449 }] } ,
  684. {sku:'BLS-0083S-S-272 ', name:'BLUSA TINTA BORDADA DE LENTEJUELA ', description:'STINTA ', category_id:26, price_sale: 729, price_base: 364.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:729 }] } ,
  685. {sku:'BLS-0083M-M-272 ', name:'BLUSA TINTA BORDADA DE LENTEJUELA ', description:'MTINTA ', category_id:26, price_sale: 729, price_base: 364.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:729 }] } ,
  686. {sku:'DIA-0085 ', name:'DIADEMA AQUA ANCHA ', description:'AQUA ', category_id:17, price_sale: 89, price_base: 44.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:89 }] } ,
  687. {sku:'DIA-0014 ', name:'DIADEMA TINTA CON PEDRERIA Y NUDO ', description:'TINTO ', category_id:17, price_sale: 239, price_base: 119.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:239 }] } ,
  688. {sku:'DIA-0081 ', name:'DIADEMA GRIS CON ESCARCHA PLATA ', description:'GRIS ', category_id:17, price_sale: 99, price_base: 49.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:99 }] } ,
  689. {sku:'DIA-0020 ', name:'DIADEMA GRIS CON TIRA DE PIEDRAS PLATA Y NUDO ', description:'GRIS ', category_id:17, price_sale: 115, price_base: 57.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:115 }] } ,
  690. {sku:'DIA-0130 ', name:'DIADEMA ROSA Y NEGRA TRANSPARENTE CON MOÑO ', description:'ROSA Y NEGRA ', category_id:17, price_sale: 149, price_base: 74.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:149 }] } ,
  691. {sku:'DIA-0028 ', name:'DIADEMA MENTA CON PERLAS Y NUDO ', description:'MENTA ', category_id:17, price_sale: 149, price_base: 74.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:149 }] } ,
  692. {sku:'DIA-0147 ', name:'DIADEMA ROSA DE PELUCHE CON PERLAS ', description:'ROSA ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:189 }] } ,
  693. {sku:'DIA-0097 ', name:'DIADEMA MOSTAZA DE GAZA CON MOÑO Y PERLAS ', description:'MOSTAZA ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:119 }] } ,
  694. {sku:'DIA-0122 ', name:'DIADEMA NEGRA DE GAZA CON MOÑO Y PERLAS ', description:'NEGRA ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:119 }] } ,
  695. {sku:'DIA-0159 ', name:'DIADEMA NEGRA DE TERCEOPELO CON PERLAS ', description:'NEGRA ', category_id:17, price_sale: 369, price_base: 184.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:369 }] } ,
  696. {sku:'DIA-0027 ', name:'DIADEMA MOSTAZA CON UN CIRCULO DE PERLAS ', description:'MOSTAZA ', category_id:17, price_sale: 99, price_base: 49.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:99 }] } ,
  697. {sku:'DIA-0139 ', name:'DIADEMA NEGRA DE ENCAJE CON MOÑO ', description:'NEGRA ', category_id:17, price_sale: 169, price_base: 84.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:169 }] } ,
  698. {sku:'DIA-0070 ', name:'DIADEMA DE COLORES CON NUDO ', description:'COLORES ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:119 }] } ,
  699. {sku:'DIA-0071 ', name:'DIADEMA ROSA CON NUDO Y PERLAS ', description:'ROSA ', category_id:17, price_sale: 139, price_base: 69.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:139 }] } ,
  700. {sku:'DIA-0131 ', name:'DIADEMA ROSA CON MOÑO LISA ', description:'ROSA ', category_id:17, price_sale: 119, price_base: 59.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:119 }] } ,
  701. {sku:'DIA-0138 ', name:'DIADEMA FONDO AZUL BAJITO FLOREADA CON NUDO ', description:'AZUL BAJITO ', category_id:17, price_sale: 189, price_base: 94.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:189 }] } ,
  702. {sku:'DIA-0101 ', name:'DIADEMA GRIS DE TERCIOPELO CON PERLAS ', description:'GRIS ', category_id:17, price_sale: 229, price_base: 114.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:229 }] } ,
  703. {sku:'DIA-0156 ', name:'DIADEMA NEGRA DE TERCIOPELO CON PERLAS CON DORADO ', description:'NEGRA ', category_id:17, price_sale: 389, price_base: 194.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:389 }] } ,
  704. {sku:'DIA-0141 ', name:'DIADEMA ROSA DE TUL CON LENTEJUELAS Y PERLAS ', description:'ROSA ', category_id:17, price_sale: 179, price_base: 89.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:179 }] } ,
  705. {sku:'ANTIBACTERIALES ', name:'ANTIBACTERIALES GEL DE MANOS ', description:'VARIOS ', category_id:15, price_sale: 49, price_base: 24.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:12, price_sale:49 }] } ,
  706. {sku:'BODYS ', name:'BODYS Y CREMAS VICTORIA SECRET ', description:'VARIOS ', category_id:15, price_sale: 350, price_base: 175, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:15, price_sale:350 }] } ,
  707. {sku:'LENTES ', name:'LENTES GUESS ', description:'VARIOS ', category_id:17, price_sale: 1899, price_base: 949.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1899 }] } ,
  708. {sku:'PUL-0100 ', name:'PULCERAS SEMANARIO, DORADAS CON PERLAS ', description:'DORADAS ', category_id:17, price_sale: 89, price_base: 44.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:89 }] } ,
  709. {sku:'PUL-006 ', name:'PULCERAS DE CRISTAL CORTADO ', description:'VARIOS ', category_id:17, price_sale: 549, price_base: 274.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  710. {sku:'P-0003 ', name:'PULCERA PLATA DE CRISTAL CON CHAQUIRA MANO CON OJO TURCO ', description:'PLATA ', category_id:17, price_sale: 649, price_base: 324.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:649 }] } ,
  711. {sku:'P-0007 ', name:'PULECRAS DE OJO DE CHAQUIRA TEJIDITAS ', description:'PLATA Y BLANCO ', category_id:17, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  712. {sku:'PUL-002 ', name:'PULCERA DE PEDRERIA PIÑA ROSA AJUSTABLE ', description:'ROSA ', category_id:17, price_sale: 629, price_base: 314.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:629 }] } ,
  713. {sku:'BOQ-001 ', name:'PULCERAS DE BOCA DE PEDRERIA DE HILO AJUSTABLE ', description:'VARIOS ', category_id:17, price_sale: 620, price_base: 310, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:620 }] } ,
  714. {sku:'P-0001 ', name:'PULCERAS DE BOCA DE ACERO DORADO ', description:'VARIOS ', category_id:17, price_sale: 849, price_base: 424.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:849 }] } ,
  715. {sku:'P-0002 ', name:'PULCERAS DE OJO PEDRERIA DE PULCERA DE ACERO DORADO ', description:'TORNASOL ', category_id:17, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  716. {sku:'PUL-0103 ', name:'PULCERA PLATA DE PEDRERIA DE DOS TIRAS ', description:'PLATA ', category_id:17, price_sale: 49, price_base: 24.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:49 }] } ,
  717. {sku:'PUL-0102 ', name:'PULCERA PLATA DE PEDRERIA VARIAS TIRAS ', description:'PLATA ', category_id:17, price_sale: 89, price_base: 44.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:89 }] } ,
  718. {sku:'PUL-0001 ', name:'PULCERA DE BOLAS PLATEADAS ', description:'PLATA ', category_id:17, price_sale: 89, price_base: 44.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:89 }] } ,
  719. {sku:'CO-0001 ', name:'COLLAR DE OJO DE PEDRERIA ', description:'VARIOS ', category_id:17, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  720. {sku:'CO-001 ', name:'COLLAR DORADO ', description:'DORADO ', category_id:17, price_sale: 349, price_base: 174.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:349 }] } ,
  721. {sku:'2BLCO20738 ', name:'CROSS BODY NUDE Y NEGRA ', description:'BEIGE Y NEGRA ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:-1, price_sale:1499 }] } ,
  722. {sku:'3BLCV20442 ', name:'CROSS BODY DORADO DE CADENA COBRE ', description:'DORADA ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  723. {sku:'1BLCV20295 ', name:'CROSS BODY DE COLORES ', description:'AMARILLA Y AZUL ', category_id:26, price_sale: 999, price_base: 499.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  724. {sku:'1BLCO20636 ', name:'CROSS BODY CON PLACA CLOE DORADA ', description:'ROJA ', category_id:26, price_sale: 2099, price_base: 1049.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:2099 }] } ,
  725. {sku:'1BLCV20266 ', name:'CROSS BODY NEGRO TIPO CELULAR ', description:'NEGRA ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:-1, price_sale:1299 }] } ,
  726. {sku:'3BLCV20446 ', name:'CROSS BODY NEGRO ', description:'NEGRA ', category_id:26, price_sale: 1299, price_base: 649.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  727. {sku:'2BLCV20504 ', name:'CROSS BODY NEGRO Y GRIS TIPO LONCHERA ', description:'NEGRA Y GRIS ', category_id:26, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  728. {sku:'1BLCV20265 ', name:'CROSS BODY AMARILLO CON CADENA DE PLASTICO ', description:'AMARILLA ', category_id:26, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1799 }] } ,
  729. {sku:'1BICO20963 ', name:'CARTERA NEGRA CON MUÑEQUERA ', description:'NEGRA ', category_id:4, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  730. {sku:'1BICO20964 ', name:'CARTERA ROSA BAJITO TIPO CROSS BODY ', description:'ROSA BAJITO ', category_id:4, price_sale: 1099, price_base: 549.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1099 }] } ,
  731. {sku:'2BICO20732 ', name:'CARTERA TIPO TARJETERO NEGRA CON CADENA ', description:'NEGRA ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  732. {sku:'2BICV20327 ', name:'CARTERA NEGRA CON CADENA TIPO CROSS BODY ', description:'NEGRA ', category_id:4, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  733. {sku:'1BLCV20264 ', name:'MOCHILA DE LETRAS GRANDE ', description:'NEGRA ', category_id:26, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1799 }] } ,
  734. {sku:'2BLCO20740 ', name:'MOCHILA NEGRA DELGADA PLACA OE DORADA ', description:'NEGRA ', category_id:26, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1699 }] } ,
  735. {sku:'2BLCO20751 ', name:'MOCHILA MEDIANA CON LETRAS Y BOLSITA POR FUERA ', description:'NEGRA ', category_id:26, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1799 }] } ,
  736. {sku:'2BLCV20364 ', name:'MOCHILA BEIGE CON BOLSITA PEQUEÑA CON LIMONES ', description:'BEIGE ', category_id:26, price_sale: 1799, price_base: 899.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1799 }] } ,
  737. {sku:'1BLCV20269 ', name:'MOCHILA BEIGE Y NEGRA CON BOLSA SEPARADORA ENFRENTE ', description:'BEIGE Y NEGRA ', category_id:26, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  738. {sku:'REINE5.5-256 ', name:'TENIS PLATA DE PLATAFORMA BLANCA ', description:'PLATA ', category_id:30, price_sale: 1599, price_base: 799.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1599 }] } ,
  739. {sku:'PHERN6-238 ', name:'ZAPATO GRIS DE PLATAFORMA ', description:'GRIS ', category_id:30, price_sale: 1499, price_base: 749.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  740. {sku:'MADX4.5-286 ', name:'ZAPATO CORAL DE PISO ', description:'CORAL ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  741. {sku:'MADX5.5-286 ', name:'ZAPATO CORAL DE PISO ', description:'CORAL ', category_id:30, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  742. {sku:'BLS-0143-L-243 ', name:'BLUSA APEACH CON FLORES ROSA ', description:'LROSA ', category_id:26, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  743. {sku:'BLS-0130S-S-3 ', name:'PLAYERA AZUL CON LABIAL ', description:'SAzul ', category_id:26, price_sale: 589, price_base: 231, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:589 }] } ,
  744. {sku:'4CSCP20808PAT-360 ', name:'COSMETIQUERA DE FLORES ', description:'ROSA PALO ', category_id:29, price_sale: 599, price_base: 249.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  745. {sku:'5CSCP20622LIL ', name:'COSMETIQUERA DE LILA ', description:' ', category_id:29, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:399 }] } ,
  746. {sku:'REG-001 ', name:'EMPAQUE DE REGALO ', description:'VARIOS ', category_id:17, price_sale: 50, price_base: 25, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:5, price_sale:50 }] } ,
  747. {sku:'REG-002 ', name:'EMPAQUE DE REGALO ', description:'VARIOS ', category_id:17, price_sale: 80, price_base: 40, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:7, price_sale:80 }] } ,
  748. {sku:'REG-003 ', name:'EMPAQUE DE REGALO ', description:'VARIOS ', category_id:17, price_sale: 120, price_base: 60, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:10, price_sale:120 }] } ,
  749. {sku:'REG-0004 ', name:'EMPAQUE DE REGALO ', description:'VARIOS ', category_id:17, price_sale: 160, price_base: 80, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:4, price_sale:160 }] } ,
  750. {sku:'VST-0120S ', name:'VESTIDO BLANCO FCON FLORES AZUL Y ROJAS ', description:'Blanco ', category_id:26, price_sale: 899, price_base: 400, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  751. {sku:'VST-0120M ', name:'VESTIDO BLANCO FCON FLORES AZUL Y ROJAS ', description:'Blanco ', category_id:26, price_sale: 899, price_base: 400, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  752. {sku:'VST-0120L ', name:'VESTIDO BLANCO FCON FLORES AZUL Y ROJAS ', description:'Blanco ', category_id:26, price_sale: 899, price_base: 400, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  753. {sku:'VE-0007S ', name:'VESTIDO NARANJA CORTE HALTER NEW VURY ', description:'Naranja ', category_id:26, price_sale: 929, price_base: 327, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:929 }] } ,
  754. {sku:'VE-0007M ', name:'VESTIDO NARANJA CORTE HALTER NEW VURY ', description:'Naranja ', category_id:26, price_sale: 929, price_base: 327, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:929 }] } ,
  755. {sku:'VST-0013M ', name:'VESTIDO TROPICAL HOJAS APEACH ', description:'Verde ', category_id:26, price_sale: 799, price_base: 300, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:799 }] } ,
  756. {sku:'BLS-0148S ', name:'PLAYERA MICKEY ITOO ', description:'NEGRA ', category_id:26, price_sale: 589, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:589 }] } ,
  757. {sku:'BLS-0148M ', name:'PLAYERA MICKEY ITOO ', description:'Blanco ', category_id:26, price_sale: 589, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:589 }] } ,
  758. {sku:'BLS-0136M ', name:'PLAYERA MICKEY ROJA Y NEGRA ', description:'NEGRO Y ROJO ', category_id:26, price_sale: 489, price_base: 244.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:489 }] } ,
  759. {sku:'VST-0038S ', name:'VESTIDO FLOREADO VOLADITO ', description:'COLORES ', category_id:26, price_sale: 869, price_base: 330, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:869 }] } ,
  760. {sku:'VST-0038M ', name:'VESTIDO FLOREADO VOLADITO ', description:'COLORES ', category_id:26, price_sale: 869, price_base: 330, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:869 }] } ,
  761. {sku:'BLS-0129M ', name:'PLAYERA PRETTY RED ', description:'Rojo ', category_id:26, price_sale: 499, price_base: 220, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:499 }] } ,
  762. {sku:'BLS-0129L ', name:'PLAYERA PRETTY RED ', description:'Rojo ', category_id:26, price_sale: 499, price_base: 220, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  763. {sku:'BLS-0126S ', name:'BLUSA CON HILO EN MANGA ', description:'Negro ', category_id:26, price_sale: 499, price_base: 198, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:499 }] } ,
  764. {sku:'BLS-0060M ', name:'PLAYERA BUGS BUNNY ', description:'ROSA ', category_id:26, price_sale: 419, price_base: 150, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:419 }] } ,
  765. {sku:'BLS-0042S ', name:'BLUSA BLANCA CON HOJAS ', description:'ROSA ', category_id:26, price_sale: 549, price_base: 219.53, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:549 }] } ,
  766. {sku:'BLS-0042M ', name:'BLUSA BLANCA CON HOJAS ', description:'Blanco ', category_id:26, price_sale: 549, price_base: 219.53, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:549 }] } ,
  767. {sku:'BLS-0042L ', name:'BLUSA BLANCA CON HOJAS ', description:'Blanco ', category_id:26, price_sale: 549, price_base: 219.53, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:549 }] } ,
  768. {sku:'BLX-0019S ', name:'BLUSA NEGRA CON FALDITA Y MOÑO ', description:'Negro ', category_id:26, price_sale: 849, price_base: 384.34, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:849 }] } ,
  769. {sku:'BLS-0077M ', name:'BLUSA RAYADA CON CINTO ', description:'COLORES ', category_id:26, price_sale: 649, price_base: 270, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:649 }] } ,
  770. {sku:'BLS-0140S ', name:'PANTIBLUSA ROSA CON MARIPOSAS ', description:'ROSA ', category_id:26, price_sale: 529, price_base: 219, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:529 }] } ,
  771. {sku:'BLS-0140M ', name:'PANTIBLUSA ROSA CON MARIPOSAS ', description:'ROSA ', category_id:26, price_sale: 529, price_base: 219, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  772. {sku:'BLS-0140L ', name:'PANTIBLUSA ROSA CON MARIPOSAS ', description:'ROSA ', category_id:26, price_sale: 529, price_base: 219, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:529 }] } ,
  773. {sku:'BLS-0022 ', name:'BLUSA CORTA CON ENCAJE NEGRA ', description:'Negro ', category_id:26, price_sale: 599, price_base: 250.25, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  774. {sku:'BLS-0110M ', name:'BLUSA FLOREADA GAZA ', description:'NUDE ', category_id:26, price_sale: 599, price_base: 240, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  775. {sku:'F-0021L ', name:'FALDA VOLADA CON FLORES ', description:'Negro ', category_id:26, price_sale: 699, price_base: 300, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  776. {sku:'FLD-0007 ', name:'FALDA NEGRA VOLADA ', description:'Negro ', category_id:26, price_sale: 579, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:579 }] } ,
  777. {sku:'FLD-0028 ', name:'FALDA DE TUL VOLADA CON BOLITAS ', description:'COLORES ', category_id:26, price_sale: 529, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:529 }] } ,
  778. {sku:'SHO-0003 ', name:'SHORT AZUL CON RAYAS BLANCAS ', description:'AZUL MARINO ', category_id:26, price_sale: 689, price_base: 350, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  779. {sku:'VST-0110S ', name:'VESTIDO FLORES ROJAS TUL ', description:'Rojo ', category_id:26, price_sale: 869, price_base: 340, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:869 }] } ,
  780. {sku:'VST-0110M ', name:'VESTIDO FLORES ROJAS TUL ', description:'Rojo ', category_id:26, price_sale: 869, price_base: 340, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:869 }] } ,
  781. {sku:'VST-0110L ', name:'VESTIDO FLORES ROJAS TUL ', description:'Rojo ', category_id:26, price_sale: 869, price_base: 340, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:869 }] } ,
  782. {sku:'FAL-0010M ', name:'FALDA PLISADA CORAL ', description:'CORAL ', category_id:26, price_sale: 699, price_base: 275.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  783. {sku:'FAL-0010L ', name:'FALDA PLISADA CORAL ', description:'CORAL ', category_id:26, price_sale: 699, price_base: 276, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  784. {sku:'VST-0032M ', name:'VESTIDO FLOREADO CON UNA MANGA AMARILLO ', description:'Amarillo ', category_id:26, price_sale: 1199, price_base: 418, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  785. {sku:'VST-0032L ', name:'VESTIDO FLOREADO CON UNA MANGA AMARILLO ', description:'Amarillo ', category_id:26, price_sale: 1199, price_base: 418, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  786. {sku:'VST-0045M ', name:'VESTIDO VOLADO NEGRO CON FLORES ', description:'Negro ', category_id:26, price_sale: 849, price_base: 290, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:849 }] } ,
  787. {sku:'VST-0045L ', name:'VESTIDO VOLADO NEGRO CON FLORES ', description:'Negro ', category_id:26, price_sale: 849, price_base: 290, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:849 }] } ,
  788. {sku:'VST-0009S ', name:'KIMONO ENCAJE ROSA ', description:'ROSA ', category_id:26, price_sale: 799, price_base: 293.52, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  789. {sku:'PNT-0031S ', name:'PANTALON CORTE ALTO CON CINTO DE FLORES ', description:'NEGRO Y ROSA ', category_id:26, price_sale: 769, price_base: 308, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:769 }] } ,
  790. {sku:'PNT-0031M ', name:'PANTALON CORTE ALTO CON CINTO DE FLORES ', description:'NEGRO Y ROSA ', category_id:26, price_sale: 769, price_base: 308, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:769 }] } ,
  791. {sku:'PNT-0031L ', name:'PANTALON CORTE ALTO CON CINTO DE FLORES ', description:'NEGRO Y ROSA ', category_id:26, price_sale: 769, price_base: 308, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:4, price_sale:769 }] } ,
  792. {sku:'PNT-0028S ', name:'PANTALON ROSA CON EVILLA DORADA ', description:'ROSA ', category_id:26, price_sale: 599, price_base: 237.9, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  793. {sku:'PNT-0028M ', name:'PANTALON ROSA CON EVILLA DORADA ', description:'ROSA ', category_id:26, price_sale: 599, price_base: 237.9, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  794. {sku:'PNT-0028L ', name:'PANTALON ROSA CON EVILLA DORADA ', description:'ROSA ', category_id:26, price_sale: 599, price_base: 237.9, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  795. {sku:'VST-0049S ', name:'VESTIDO NEGRO CON TIRAS NARANJAS Y ROSAS ', description:'Negro ', category_id:26, price_sale: 1549, price_base: 650, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1549 }] } ,
  796. {sku:'VST-0104S ', name:'VESTIDO DE COLORES LARGO ', description:'COLORES ', category_id:26, price_sale: 1779, price_base: 709.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1779 }] } ,
  797. {sku:'VST-0104M ', name:'VESTIDO DE COLORES LARGO ', description:'COLORES ', category_id:26, price_sale: 1779, price_base: 709.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1779 }] } ,
  798. {sku:'VST-0104L ', name:'VESTIDO DE COLORES LARGO ', description:'COLORES ', category_id:26, price_sale: 1779, price_base: 709.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1779 }] } ,
  799. {sku:'BLS-0133S ', name:'BLUSA SIN MANGA BASICA ', description:'CORAL ', category_id:26, price_sale: 479, price_base: 209, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:479 }] } ,
  800. {sku:'BLS-0133M ', name:'BLUSA SIN MANGA BASICA ', description:'CORAL ', category_id:26, price_sale: 479, price_base: 209, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:479 }] } ,
  801. {sku:'BLS-0133L ', name:'BLUSA SIN MANGA BASICA ', description:'CORAL ', category_id:26, price_sale: 479, price_base: 209, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:479 }] } ,
  802. {sku:'BLS-0122S ', name:'BLUSA HOJAS VERDE ', description:'Verde ', category_id:26, price_sale: 699, price_base: 275, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  803. {sku:'BLS-0122M ', name:'BLUSA HOJAS VERDE ', description:'Verde ', category_id:26, price_sale: 699, price_base: 275, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  804. {sku:'BLS-0122L ', name:'BLUSA HOJAS VERDE ', description:'Verde ', category_id:26, price_sale: 699, price_base: 275, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  805. {sku:'VST-0109L ', name:'VESTIDO MULTICOLOR FLOREADO CBQ ', description:'COLORES ', category_id:26, price_sale: 999, price_base: 347.7, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  806. {sku:'VST-0144L ', name:'VESTIDO PEGADO NEGRO ', description:'Negro ', category_id:26, price_sale: 649, price_base: 254, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:649 }] } ,
  807. {sku:'BLS-0025S ', name:'KIMONO HOJAS ', description:'Verde ', category_id:26, price_sale: 699, price_base: 282.1, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  808. {sku:'BLS-0025M ', name:'KIMONO HOJAS ', description:'Verde ', category_id:26, price_sale: 699, price_base: 282.1, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  809. {sku:'VST-0035S ', name:'KIMONO NEGRO CBQ ', description:'Negro ', category_id:26, price_sale: 1099, price_base: 427.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  810. {sku:'VST-0035M ', name:'KIMONO NEGRO CBQ ', description:'Negro ', category_id:26, price_sale: 1099, price_base: 427.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  811. {sku:'VST-0035L ', name:'KIMONO NEGRO CBQ ', description:'Negro ', category_id:26, price_sale: 1099, price_base: 427.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1099 }] } ,
  812. {sku:'VST-0011M ', name:'KIMONO ENCAJE ROJO ', description:'Rojo ', category_id:26, price_sale: 699, price_base: 228.85, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  813. {sku:'VST-0010 ', name:'KIMONO NEGRO TEJIDO ', description:'Negro ', category_id:26, price_sale: 669, price_base: 213.92, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:669 }] } ,
  814. {sku:'DRESS-002 ', name:'VESTIDO VIRGEN CON ESTRELLAS ', description:'Blanco ', category_id:26, price_sale: 979, price_base: 473.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:979 }] } ,
  815. {sku:'VST-0001S ', name:'VESTIDO SPRING FLOWER ', description:'Blanco ', category_id:26, price_sale: 1299, price_base: 509.6, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1299 }] } ,
  816. {sku:'VST-0001M ', name:'VESTIDO SPRING FLOWER ', description:'Blanco ', category_id:26, price_sale: 1299, price_base: 509.6, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1299 }] } ,
  817. {sku:'VST-0001L ', name:'VESTIDO SPRING FLOWER ', description:'Blanco ', category_id:26, price_sale: 1299, price_base: 509.6, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1299 }] } ,
  818. {sku:'PAL-0001S ', name:'PALAZZO DE MEZCLILLA CON PERLAS ', description:'MEZCLILLA ', category_id:26, price_sale: 1549, price_base: 680, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1549 }] } ,
  819. {sku:'PAL-0001M ', name:'PALAZZO DE MEZCLILLA CON PERLAS ', description:'MEZCLILLA ', category_id:26, price_sale: 1549, price_base: 680, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1549 }] } ,
  820. {sku:'PAL-0001L ', name:'PALAZZO DE MEZCLILLA CON PERLAS ', description:'MEZCLILLA ', category_id:26, price_sale: 1549, price_base: 680, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1549 }] } ,
  821. {sku:'VST-0006S ', name:'PALAZO VERDE CON FLORES LATISTE ', description:'Verde ', category_id:26, price_sale: 1239, price_base: 473.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1239 }] } ,
  822. {sku:'VST-0006M ', name:'PALAZO VERDE CON FLORES LATISTE ', description:'Verde ', category_id:26, price_sale: 1239, price_base: 473.2, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1239 }] } ,
  823. {sku:'BLS-0132M ', name:'BLUSA MARIPOSA Y GARABATOS CRUZADA ', description:'COLORES ', category_id:26, price_sale: 569, price_base: 191.1, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:569 }] } ,
  824. {sku:'BLS-0132L ', name:'BLUSA MARIPOSA Y GARABATOS CRUZADA ', description:'COLORES ', category_id:26, price_sale: 569, price_base: 191.1, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:569 }] } ,
  825. {sku:'BLS-0139S ', name:'PANTIBLUSA DE COLORES ', description:'COLORES ', category_id:26, price_sale: 529, price_base: 209, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  826. {sku:'BLS-0139L ', name:'PANTIBLUSA DE COLORES ', description:'COLORES ', category_id:26, price_sale: 529, price_base: 209, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  827. {sku:'BLS-0150M ', name:'BLUSA NEGRA Y BLANCA CON PUNTITOS LISA ', description:'NEGRO Y BLANCO ', category_id:26, price_sale: 799, price_base: 324.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  828. {sku:'BLS-0150L ', name:'BLUSA NEGRA Y BLANCA CON PUNTITOS LISA ', description:'NEGRO Y BLANCO ', category_id:26, price_sale: 799, price_base: 324.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  829. {sku:'BRO-001 ', name:'BROCHE CON PIEDRAS ', description:'NEGRO Y BLANCO ', category_id:17, price_sale: 129, price_base: 21, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:129 }] } ,
  830. {sku:'BLS-0157M ', name:'PLAYERA NEGRA CON TUL EN MANGAS ', description:'Negro ', category_id:26, price_sale: 529, price_base: 264.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  831. {sku:'PNT-0011S ', name:'PANTALON RAYAS MUY MUY ', description:'ROSA ', category_id:26, price_sale: 569, price_base: 223.25, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:569 }] } ,
  832. {sku:'BLS-0179S ', name:'BLUSA ROSA ', description:'CHICOROSA ', category_id:26, price_sale: 829, price_base: 336, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:829 }] } ,
  833. {sku:'BLS-0179M ', name:'BLUSA ROSA ', description:'MEDIANOROSA ', category_id:26, price_sale: 829, price_base: 336, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:829 }] } ,
  834. {sku:'BLS-0179L ', name:'BLUSA ROSA ', description:'GRANDEROSA ', category_id:26, price_sale: 829, price_base: 336, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:829 }] } ,
  835. {sku:'BLS-0180S ', name:'BLUSA LILA ', description:'CHICOLILA ', category_id:26, price_sale: 499, price_base: 199, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  836. {sku:'BLS-0180M ', name:'BLUSA LILA ', description:'MEDIANOLILA ', category_id:26, price_sale: 499, price_base: 199, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  837. {sku:'BLS-0180L ', name:'BLUSA LILA ', description:'GRANDELILA ', category_id:26, price_sale: 499, price_base: 199, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  838. {sku:'BLS-0181S ', name:'BLUSA BLANCA, NEGRA Y FLOREADA ', description:'CHICOBLACA Y NEGRA ', category_id:26, price_sale: 479, price_base: 192, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:479 }] } ,
  839. {sku:'BLS-0181M ', name:'BLUSA BLANCA, NEGRA Y FLOREADA ', description:'MEDIANOBLACA Y NEGRA ', category_id:26, price_sale: 479, price_base: 192, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:479 }] } ,
  840. {sku:'BLS-0181L ', name:'BLUSA BLANCA, NEGRA Y FLOREADA ', description:'GRANDEBLACA Y NEGRA ', category_id:26, price_sale: 479, price_base: 192, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:479 }] } ,
  841. {sku:'VST-0141S ', name:'VESTIDO AMARILLO ', description:'CHICOAmarillo ', category_id:26, price_sale: 1399, price_base: 567, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  842. {sku:'VST-0141M ', name:'VESTIDO AMARILLO ', description:'MEDIANOAmarillo ', category_id:26, price_sale: 1399, price_base: 567, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  843. {sku:'VST-0141L ', name:'VESTIDO AMARILLO ', description:'GRANDEAmarillo ', category_id:26, price_sale: 1399, price_base: 567, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1399 }] } ,
  844. {sku:'VST-0142S ', name:'VESTIDO FLOREADO ', description:'CHICOLILA ', category_id:26, price_sale: 999, price_base: 389, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  845. {sku:'VST-0142M ', name:'VESTIDO FLOREADO ', description:'MEDIANOLILA ', category_id:26, price_sale: 999, price_base: 389, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  846. {sku:'VST-0142L ', name:'VESTIDO FLOREADO ', description:'GRANDELILA ', category_id:26, price_sale: 999, price_base: 389, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  847. {sku:'VST-0143S ', name:'VESTIDO MEZCLILLA ', description:'CHICOAzul ', category_id:26, price_sale: 529, price_base: 155, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  848. {sku:'VST-0143M ', name:'VESTIDO MEZCLILLA ', description:'MEDIANOAzul ', category_id:26, price_sale: 529, price_base: 155, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  849. {sku:'VST-0143L ', name:'VESTIDO MEZCLILLA ', description:'GRANDEAzul ', category_id:26, price_sale: 529, price_base: 155, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:529 }] } ,
  850. {sku:'VST-0144S ', name:'VESTIDO ROSA ', description:'CHICOROSA ', category_id:26, price_sale: 799, price_base: 140, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  851. {sku:'VST-0144M ', name:'VESTIDO ROSA ', description:'MEDIANOROSA ', category_id:26, price_sale: 799, price_base: 140, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  852. {sku:'VST-0145S ', name:'VESTIDO ROSA CON LILA ', description:'CHICOROSA CON LILA ', category_id:26, price_sale: 1199, price_base: 470, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1199 }] } ,
  853. {sku:'VST-0145M ', name:'VESTIDO ROSA CON LILA ', description:'MEDIANOROSA CON LILA ', category_id:26, price_sale: 1199, price_base: 470, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  854. {sku:'VST-0145L ', name:'VESTIDO ROSA CON LILA ', description:'GRANDEROSA CON LILA ', category_id:26, price_sale: 1199, price_base: 470, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  855. {sku:'VST-0146S ', name:'VESTIDO LILA CON NARANJA ', description:'CHICOLILA CON NARANJA ', category_id:26, price_sale: 1199, price_base: 470, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  856. {sku:'VST-0146M ', name:'VESTIDO LILA CON NARANJA ', description:'MEDIANOLILA CON NARANJA ', category_id:26, price_sale: 1199, price_base: 470, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1199 }] } ,
  857. {sku:'VST-0146L ', name:'VESTIDO LILA CON NARANJA ', description:'GRANDELILA CON NARANJA ', category_id:26, price_sale: 1199, price_base: 470, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  858. {sku:'FLD-0044S ', name:'FALDA DE MEZCLILLA ', description:'CHICOAzul ', category_id:26, price_sale: 599, price_base: 180, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  859. {sku:'FLD-0044M ', name:'FALDA DE MEZCLILLA ', description:'MEDIANOAzul ', category_id:26, price_sale: 599, price_base: 180, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  860. {sku:'FLD-0044L ', name:'FALDA DE MEZCLILLA ', description:'GRANDEAzul ', category_id:26, price_sale: 599, price_base: 180, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  861. {sku:'FLD-0045S ', name:'FALDA DE MEZCLILLA ', description:'CHICOAzul ', category_id:26, price_sale: 599, price_base: 180, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  862. {sku:'FLD-0045M ', name:'FALDA DE MEZCLILLA ', description:'MEDIANOAzul ', category_id:26, price_sale: 599, price_base: 180, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  863. {sku:'FLD-0046L ', name:'FALDA DE MEZCLILLA ', description:'GRANDEAzul ', category_id:26, price_sale: 599, price_base: 180, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  864. {sku:'CON-0011S ', name:'CONJUNTO DE SHORT MEZCLILLA ', description:'CHICOAzul ', category_id:26, price_sale: 699, price_base: 214, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  865. {sku:'CON-0011M ', name:'CONJUNTO DE SHORT MEZCLILLA ', description:'MEDIANOAzul ', category_id:26, price_sale: 699, price_base: 214, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  866. {sku:'CON-0011L ', name:'CONJUNTO DE SHORT MEZCLILLA ', description:'GRANDEAzul ', category_id:26, price_sale: 699, price_base: 214, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  867. {sku:'CON-0012S ', name:'CONJUNTO BLANCO ', description:'CHICOBLANCA ', category_id:26, price_sale: 1499, price_base: 620, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1499 }] } ,
  868. {sku:'CON-0012M ', name:'CONJUNTO BLANCO ', description:'MEDIANOBLANCA ', category_id:26, price_sale: 1499, price_base: 620, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  869. {sku:'CON-0012L ', name:'CONJUNTO BLANCO ', description:'GRANDEBLANCA ', category_id:26, price_sale: 1499, price_base: 620, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  870. {sku:'CON-0013S ', name:'CONJUNTO FLOREADO ', description:'CHICOBLANCA ', category_id:26, price_sale: 999, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:999 }] } ,
  871. {sku:'CON-0013M ', name:'CONJUNTO FLOREADO ', description:'MEDIANOBLANCA ', category_id:26, price_sale: 999, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  872. {sku:'CON-0013L ', name:'CONJUNTO FLOREADO ', description:'GRANDEBLANCA ', category_id:26, price_sale: 999, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  873. {sku:'SHR-0011S ', name:'SHORT BLANCON CON CINTO ', description:'CHICOBLANCA ', category_id:26, price_sale: 689, price_base: 275, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  874. {sku:'SHR-0011M ', name:'SHORT BLANCON CON CINTO ', description:'MEDIANOBLANCA ', category_id:26, price_sale: 689, price_base: 275, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:689 }] } ,
  875. {sku:'SHR-0011L ', name:'SHORT BLANCON CON CINTO ', description:'GRANDEBLANCA ', category_id:26, price_sale: 689, price_base: 275, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:689 }] } ,
  876. {sku:'PNT-0044S ', name:'PANTALON BEIGE Y NEGRO ', description:'CHICOBEIGE Y NEGRO ', category_id:26, price_sale: 699, price_base: 262, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  877. {sku:'PNT-0044M ', name:'PANTALON BEIGE Y NEGRO ', description:'MEDIANOBEIGE Y NEGRO ', category_id:26, price_sale: 699, price_base: 262, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  878. {sku:'PNT-0044L ', name:'PANTALON BEIGE Y NEGRO ', description:'GRANDEBEIGE Y NEGRO ', category_id:26, price_sale: 699, price_base: 262, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  879. {sku:'PNT-0045S ', name:'PANTALON NEGRO CON CINTON ', description:'CHICONegro ', category_id:26, price_sale: 879, price_base: 357, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:879 }] } ,
  880. {sku:'PNT-0045M ', name:'PANTALON NEGRO CON CINTON ', description:'MEDIANONegro ', category_id:26, price_sale: 879, price_base: 357, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:879 }] } ,
  881. {sku:'PNT-0045L ', name:'PANTALON NEGRO CON CINTON ', description:'GRANDENegro ', category_id:26, price_sale: 879, price_base: 357, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:879 }] } ,
  882. {sku:'BLS-0182S/M ', name:'CARDIGAN LILA Y NEGRO ', description:'CHICO/MEDIANOLILA Y NEGRO ', category_id:26, price_sale: 680, price_base: 273, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:680 }] } ,
  883. {sku:'BLS-0182M/L ', name:'CARDIGAN LILA Y NEGRO ', description:'MEDIANO/GRANDELILA Y NEGRO ', category_id:26, price_sale: 680, price_base: 273, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:680 }] } ,
  884. {sku:'SHORT-S-3 ', name:'SHORT DE MEZCLILLA ', description:'SAzul ', category_id:26, price_sale: 499, price_base: 144, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  885. {sku:'1BLCO20647AZU ', name:'BACK PACK ', description:' ', category_id:6, price_sale: 1999, price_base: 999.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1999 }] } ,
  886. {sku:'1BLCO20661OCT ', name:'BOLSO CROSSBODY CON LETRAS SALTADAS ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1699 }] } ,
  887. {sku:'1BLCI20109NEG ', name:'CROSS BODY CON PAÑUELO ROJO ', description:' ', category_id:6, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:5, price_sale:1399 }] } ,
  888. {sku:'1BLCI20109ROJ ', name:'CROSBODY CON PAÑUELO ROJO ', description:' ', category_id:6, price_sale: 1399, price_base: 699.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:5, price_sale:1399 }] } ,
  889. {sku:'1BLCV20312NEG ', name:'CROSS BODY CON CADENA PLATA Y EVILLA ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:3, price_sale:1699 }] } ,
  890. {sku:'1BLCV20312ELE ', name:'CROSS BODYCON CADENA PLATA Y EVILLA ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1699 }] } ,
  891. {sku:'1BLCO20646AZU ', name:'CROSS BODY CHAROL CON LETRAS ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:6, price_sale:1699 }] } ,
  892. {sku:'1BLCO20646NEG ', name:'CROSS BODY CHAROL CON LETRAS ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1699 }] } ,
  893. {sku:'1BLCO20647ROS ', name:'BACK PACK CHAROL CON LETRAS ', description:' ', category_id:6, price_sale: 1999, price_base: 999.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1999 }] } ,
  894. {sku:'1BLCO20647NEG ', name:'BACK PACK CHAROL CON LETRAS ', description:' ', category_id:6, price_sale: 1999, price_base: 999.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1999 }] } ,
  895. {sku:'1BLCV20312ROJ ', name:'CROSS BODYCON CADENA PLATA Y EVILLA ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:5, price_sale:1699 }] } ,
  896. {sku:'1BLCI20110ROJ ', name:'BOLSA MEDIANA CON PAÑUELO ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1699 }] } ,
  897. {sku:'1BLCI20110NEG ', name:'BOLSO MEDIANO CON PAÑUELO NEGRO ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1699 }] } ,
  898. {sku:'1BLCI20125AMA ', name:'BOLSO MEDIANO LETRAS ', description:' ', category_id:6, price_sale: 1899, price_base: 949.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1899 }] } ,
  899. {sku:'2BICO20978ROS ', name:'BILLETERA CHICA ROSA ', description:' ', category_id:4, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  900. {sku:'2BICO20974NEG ', name:'BILLETERA CHICA CON TARJETERO ENFRENTE ', description:' ', category_id:4, price_sale: 799, price_base: 399.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:799 }] } ,
  901. {sku:'4CSAO20851ROS ', name:'COSMETIQUERA DE 3 ROSA ', description:' ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  902. {sku:'4CSAO20850TUR ', name:'COSMETIQUERA CORAZON AGATA ', description:' ', category_id:4, price_sale: 699, price_base: 349.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  903. {sku:'4CSAO20851TUR ', name:'COSMETIQUERA DE 3 AGATA ', description:' ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  904. {sku:'4CSCO20855MUL ', name:'COSMETIQUERA COLORES GRANDE ', description:' ', category_id:4, price_sale: 599, price_base: 299.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:599 }] } ,
  905. {sku:'4CSCI20874PAT ', name:'COSMETIQUERA DE 3 PATHE ', description:' ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  906. {sku:'4CSCO20853MUL ', name:'COSMETIQUERA COLORES CHICO ', description:' ', category_id:4, price_sale: 399, price_base: 199.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:399 }] } ,
  907. {sku:'3BICV20406NEG ', name:'BILLETERA CON ANIMAL ', description:' ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  908. {sku:'4BICO20951NEG ', name:'BILLETERA NEGRA CON CUADROS Y LETRAS ', description:' ', category_id:4, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  909. {sku:'JUM-0010 ', name:'CONJUNTO AMARILLO PANTALON ', description:' ', category_id:26, price_sale: 999, price_base: 347, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  910. {sku:'JUM-0004M ', name:'JUMPER AQUA ', description:'MEDIANAAQUA ', category_id:26, price_sale: 799, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  911. {sku:'JUM-0011M ', name:'JUMPER VERDE ', description:'MEDIANAVerde ', category_id:26, price_sale: 799, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  912. {sku:'BLX-0021M ', name:'PLAYERA BLANCA ', description:'MEDIANABLANCA ', category_id:26, price_sale: 549, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  913. {sku:'BLX-0021L ', name:'PLAYERA BLANCA ', description:'GRANDEBLANCA ', category_id:26, price_sale: 549, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  914. {sku:'BLS-0031M ', name:'BLUSA ROSA ', description:'MEDIANAROSA ', category_id:26, price_sale: 869, price_base: 400, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  915. {sku:'BLS-0031L ', name:'BLUSA ROSA ', description:'GRANDEROSA ', category_id:26, price_sale: 869, price_base: 400, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:869 }] } ,
  916. {sku:'BLS-0138S ', name:'PANTIBLUSA FLOREADA ', description:'CHICABLANCA ', category_id:26, price_sale: 549, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  917. {sku:'BLS-0138M ', name:'PANTIBLUSA FLOREADA ', description:'MEDIANABLANCA ', category_id:26, price_sale: 549, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  918. {sku:'BLS-0138L ', name:'PANTIBLUSA FLOREADA ', description:'GRANDEBLANCA ', category_id:26, price_sale: 549, price_base: 250, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:549 }] } ,
  919. {sku:'CON-0004S ', name:'CONJUNTO DE FALDA ', description:'CHICAAZUL Y BLANCO ', category_id:26, price_sale: 1499, price_base: 700, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  920. {sku:'CON-0004M ', name:'CONJUNTO DE FALDA ', description:'MEDIANAAZUL Y BLANCO ', category_id:26, price_sale: 1499, price_base: 700, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  921. {sku:'CON-0004L ', name:'CONJUNTO DE FALDA ', description:'GRANDEAZUL Y BLANCO ', category_id:26, price_sale: 1499, price_base: 700, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1499 }] } ,
  922. {sku:'PLZ-0004 ', name:'CONJUNTO DE PANTALON ', description:'GRANDEBLANCA ', category_id:26, price_sale: 1049, price_base: 499, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1049 }] } ,
  923. {sku:'BLS-0038S ', name:'BLUSA DE ENCAJE ', description:'CHICAAMARILLA ', category_id:26, price_sale: 689, price_base: 299, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  924. {sku:'BLS-0038M ', name:'BLUSA DE ENCAJE ', description:'MEDIANAAMARILLA ', category_id:26, price_sale: 689, price_base: 299, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:689 }] } ,
  925. {sku:'VST-0112M ', name:'VESTIDO FLOREADO ', description:'MEDIANABEIGE ', category_id:26, price_sale: 899, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:899 }] } ,
  926. {sku:'JUM-0009S ', name:'CONJUNTO FLORES COLORES ', description:'CHICAFLORES COLORES ', category_id:26, price_sale: 999, price_base: 499, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  927. {sku:'PANX-0005S ', name:'CONJUNTO FLORES ROSAS ', description:'CHICAFLORES ROSAS ', category_id:26, price_sale: 969, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:969 }] } ,
  928. {sku:'BLX-0024S ', name:'BLUSA GAZA FLOREADA ', description:'CHICABLANCA FLOREADA ', category_id:26, price_sale: 579, price_base: 249, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:579 }] } ,
  929. {sku:'BLX-0024M ', name:'BLUSA GAZA FLOREADA ', description:'MEDIANABLANCA FLOREADA ', category_id:26, price_sale: 579, price_base: 249, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:579 }] } ,
  930. {sku:'BLX-0023M ', name:'KIMONO CON PERLAS ', description:'MEDIANANegro ', category_id:26, price_sale: 799, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  931. {sku:'BLX-0022L ', name:'KIMONO DE ENCAJE CON CINTO ', description:'GRANDENegro ', category_id:26, price_sale: 699, price_base: 349, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:699 }] } ,
  932. {sku:'VST-0007S ', name:'VESTIDO LARGO NARANJA ', description:'CHICANaranja ', category_id:26, price_sale: 899, price_base: 449, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  933. {sku:'VST-0007M ', name:'VESTIDO LARGO NARANJA ', description:'MEDIANANaranja ', category_id:26, price_sale: 899, price_base: 449, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  934. {sku:'VST-0021S ', name:'VESTIDO LARGO AZUL ', description:'CHICAAZUL ', category_id:26, price_sale: 1469, price_base: 1469, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1469 }] } ,
  935. {sku:'VE-0006S ', name:'VESTIDO ATIGRADO ', description:'CHICAROSA ', category_id:26, price_sale: 899, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  936. {sku:'VE-0006M ', name:'VESTIDO ATIGRADO ', description:'MEDIANAROSA ', category_id:26, price_sale: 899, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  937. {sku:'VE-0006L ', name:'VESTIDO ATIGRADO ', description:'GRANDEROSA ', category_id:26, price_sale: 899, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] } ,
  938. {sku:'PLZ-0005S ', name:'CONJUNTO DE FALDA ', description:'CHICAAQUA ', category_id:26, price_sale: 1199, price_base: 599, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  939. {sku:'PLZ-0005L ', name:'CONJUNTO DE FALDA ', description:'GRANDEAQUA ', category_id:26, price_sale: 1199, price_base: 599, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1199 }] } ,
  940. {sku:'BLX-0001M ', name:'BLUSA DE RALLAS CON COLA ', description:'MEDIANABLANCA RALLADA ', category_id:26, price_sale: 799, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  941. {sku:'BLX-0001L ', name:'BLUSA DE RALLAS CON COLA ', description:'GRANDEBLANCA RALLADA ', category_id:26, price_sale: 799, price_base: 399, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:799 }] } ,
  942. {sku:'PAL-0001S2 ', name:'PALAZZO FLOREADO ', description:'CHICABLACO FLOREADO ', category_id:26, price_sale: 999, price_base: 499, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:999 }] } ,
  943. {sku:'VST-0022S ', name:'VESTIDO FLORES ROJAS ', description:'CHICANUDE FLOREADO ', category_id:26, price_sale: 1599, price_base: 799, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1599 }] } ,
  944. {sku:'VST-0022M ', name:'VESTIDO FLORES ROJAS ', description:'MEDIANANUDE FLOREADO ', category_id:26, price_sale: 1599, price_base: 799, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1599 }] } ,
  945. {sku:'BLS-0058S ', name:'PLAYERA CON MANGA DE TUL ', description:'CHICABLANCA ', category_id:26, price_sale: 469, price_base: 229, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  946. {sku:'BLS-0058M ', name:'PLAYERA CON MANGA DE TUL ', description:'MEDIANABLANCA ', category_id:26, price_sale: 469, price_base: 229, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  947. {sku:'BLS-0058L ', name:'PLAYERA CON MANGA DE TUL ', description:'GRANDEBLANCA ', category_id:26, price_sale: 469, price_base: 229, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:469 }] } ,
  948. {sku:'VST-0147S ', name:'VESTIDO BLANCO ', description:'CHICABlanco ', category_id:26, price_sale: 1499, price_base: 699, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  949. {sku:'VST-0147M ', name:'VESTIDO BLANCO ', description:'MEDIANABlanco ', category_id:26, price_sale: 1499, price_base: 699, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  950. {sku:'VST-0147L ', name:'VESTIDO BLANCO ', description:'GRANDEBlanco ', category_id:26, price_sale: 1499, price_base: 699, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1499 }] } ,
  951. {sku:'VST-0148S ', name:'VESTIDO FLOREADO ', description:'CHICABLANCO FLOREADO ', category_id:26, price_sale: 1549, price_base: 739, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1549 }] } ,
  952. {sku:'VST-0148M ', name:'VESTIDO FLOREADO ', description:'MEDIANABLANCO FLOREADO ', category_id:26, price_sale: 1549, price_base: 739, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:1549 }] } ,
  953. {sku:'VST-0148L ', name:'VESTIDO FLOREADO ', description:'GRANDEBLANCO FLOREADO ', category_id:26, price_sale: 1549, price_base: 739, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1549 }] } ,
  954. {sku:'SHR-0012S ', name:'SHORT DE MEZCLILLA ', description:'CHICAAzul ', category_id:26, price_sale: 499, price_base: 144, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  955. {sku:'SHR-0012M ', name:'SHORT DE MEZCLILLA ', description:'MEDIANAAzul ', category_id:26, price_sale: 499, price_base: 144, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  956. {sku:'SHR-0012L ', name:'SHORT DE MEZCLILLA ', description:'GRANDEAzul ', category_id:26, price_sale: 499, price_base: 144, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:499 }] } ,
  957. {sku:'1BLCO20661MUL ', name:'CROSS BODY MULTICOLOR ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1699 }] } ,
  958. {sku:'1BLCV20312OCR ', name:'BOLSO CON EVILLA PLATA OCRE ', description:' ', category_id:6, price_sale: 1699, price_base: 849.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1699 }] } ,
  959. {sku:'BLS-0059 ', name:'BRALET ', description:' ', category_id:26, price_sale: 299, price_base: 129, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:4, price_sale:299 }] } ,
  960. {sku:'BIKINI ', name:'BIKINI ', description:' ', category_id:26, price_sale: 899, price_base: 400, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:6, price_sale:899 }] } ,
  961. {sku:'MADX5.5CORAL ', name:'MADX5.5CORAL ', description:' ', category_id:13, price_sale: 899, price_base: 449.5, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:899 }] } ,
  962. {sku:'BLS-0167M ', name:'BLUSA NEGRA CON DESTELLOS PLATA EN LAMANGA ', description:' ', category_id:26, price_sale: 699, price_base: 348, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:699 }] } ,
  963. {sku:'VST-0100 ', name:'VESTIDO LARGO DE FLORES MUY ', description:' ', category_id:26, price_sale: 1599, price_base: 732, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1599 }] } ,
  964. {sku:'SHO-0007 ', name:'SHORT MEZCLILLA CON FLORES EN BOLSAS ', description:' ', category_id:26, price_sale: 699, price_base: 348, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:4, price_sale:699 }] } ,
  965. {sku:'SHO-0004 ', name:'SHORT MEZCLILLA ROSA ', description:' ', category_id:26, price_sale: 689, price_base: 353, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:689 }] } ,
  966. {sku:'SHR-0007 ', name:'SHORT MEZCLILLA BLANCO ', description:' ', category_id:26, price_sale: 599, price_base: 249, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:599 }] } ,
  967. {sku:'CJT-0001 ', name:'CONJUNTO VERDE OLIVO PANTALÓN ', description:' ', category_id:26, price_sale: 1149, price_base: 349, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:2, price_sale:1149 }] } ,
  968. {sku:'BLX-0030 ', name:'BLUSA CRUZADA CON HOJAS ', description:' ', category_id:26, price_sale: 619, price_base: 269, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:619 }] } ,
  969. {sku:'FLD-0003 ', name:'FALDA COLORES LARGA ', description:' ', category_id:26, price_sale: 1149, price_base: 530, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:1149 }] } ,
  970. {sku:'V-0077 ', name:'VESTIDO FUSCIA CON ENCAJE ', description:' ', category_id:26, price_sale: 999, price_base: 469, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:1, price_sale:999 }] } ,
  971. {sku:'BLS-0049 ', name:'BLUSA CAMPESINA NARANJA ', description:' ', category_id:26, price_sale: 569, price_base: 269, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:569 }] } ,
  972. {sku:'BLS-0033 ', name:'CAMISA BLANCA CON FLOR ', description:' ', category_id:26, price_sale: 899, price_base: 429, unit_id:1, available_products_attributes: [{ pointsale_id: 1, stock_min:0, stock_max:0, stock:0, price_sale:899 }] }
  973. ])
  974. ActiveRecord::Base.connection.execute("ALTER SEQUENCE products_id_seq RESTART WITH 900")
  975. ActiveRecord::Base.connection.execute("ALTER SEQUENCE available_products_id_seq RESTART WITH 900")